:root {
  --primary-color: #2196f3;
  --primary-glow: rgba(33, 150, 243, 0.8);
  --secondary-color: #9c27b0;

  --text-color: #0a0a12;
  --bg-color: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.9);
  --dropdown-bg: rgba(240, 240, 255, 0.9);
  --hover-color: #3f51b5;

  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-color: rgba(0, 0, 0, 0.1);

  --neon-glow: 0 0 10px rgba(33, 150, 243, 0.3),
               0 0 20px rgba(33, 150, 243, 0.2),
               0 0 30px rgba(33, 150, 243, 0.1);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --gradient-bg: linear-gradient(135deg, #deeaff, #eff3ff);
  --glass-effect: saturate(180%) blur(10px);
  --border-radius: 12px;
  --text-description: rgba(0, 0, 0, 0.7);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}




body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f6fd;
  color: var(--text-color);
  line-height: 1.6;
  
  display: flex;
  flex-direction: column;
  min-height: 100%;

  
}

main{
    flex: 1;
}
/*----------------*********************************************************-----------------------*/

.call-buton .cc-calto-action-ripple {
	z-index: 9999;
  margin-right: 10px;
  
	position: fixed;
	right: 1rem;
	bottom: 8rem;
	background: #41b315;
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; 

  margin-bottom: -30px;
}
	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 2.2rem; }
	.call-buton .cc-calto-action-ripple:hover  {
	  scale: 1.1;
    transition: var(--transition-medium);
  
  }
  
  @-webkit-keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 0 rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow:         0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 0 rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow:         0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 20px rgba(37, 211, 102, 0);
  }
}

@keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 0 rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow:         0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 0 rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow:         0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 20px rgba(37, 211, 102, 0);
  }
}
/*************************-------------------------------***********************/

/* HEADER AND NAVBAR */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.navbar {
    position:fixed;
    width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  
  background: var(--nav-bg);
  backdrop-filter: var(--glass-effect);
  -webkit-backdrop-filter: var(--glass-effect);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px var(--shadow-color);
  transition: var(--transition-medium);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 1001;
  
}
.navbar{z-index: 99999;}

.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-medium);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: var(--neon-glow);
}

/* Icons */
.icon {
  transition: var(--transition-medium);
  vertical-align: middle;
}


/*LOGO*/
.logo {
  
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  
  letter-spacing: 0px;
  text-shadow: #646464;
  position: relative;
  display: flex;
  transition: var(--transition-medium);
  gap:10px;
}



.logo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgb(1, 82, 163);
  bottom: -4px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
  box-shadow: var(--neon-glow);
}

.logo:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}



/*ANİMATİON*/
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
/*menu-dropdown..*/
.chevron-icon {
  transition: transform var(--transition-medium);
}

.has-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.hidden {
  display: none;
}

/* Dropdown Menus */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--dropdown-bg);
  backdrop-filter: var(--glass-effect);
  -webkit-backdrop-filter: var(--glass-effect);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all var(--transition-medium);
  box-shadow: 0 10px 30px var(--shadow-color);
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--dropdown-bg);
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  transform: rotate(45deg);
  backdrop-filter: var(--glass-effect);
  -webkit-backdrop-filter: var(--glass-effect);
}

.dropdown li {
  list-style: none;
}

.dropdown a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.7rem 1rem;
  display: block;
  border-radius: var(--border-radius);
  transition: all var(--transition-medium);
  margin-bottom: 2px;
}

.dropdown a:hover {
  background: rgba(33, 150, 243, 0.15);
  color: var(--primary-color);
  transform: translateX(5px);
}


/* Hamburger Menu */
.nav-toggle {
  display: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.6rem;
  transition: var(--transition-medium);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-color);
  position: absolute;
  transition: all var(--transition-medium);
  border-radius: 10px;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
  width: 70%;
}

.hamburger span:last-child {
  top: 18px;
}

/* Mobile Menu Active State */
.nav-active .hamburger span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-active .hamburger span:last-child {
  transform: rotate(-45deg);
  top: 9px;
}

.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}

/*İİNFOOO*/
/*info*/
/*infov2*/
.infov2container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  margin-top: 200px;
  margin-bottom: 150px;
  margin-right: 60px;
  margin-left: 60px;
  
}

.infov2card {
  background-color: #ffffff;
  padding: 25px 50px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(10, 56, 117, 0.178);
  transition: transform 0.2s ease;
}

.infov2card:hover {
  transform: translateY(-5px);
}

.iconinfo2 {
  font-size: 30px;
  color: #ef4444;
  margin-bottom: 10px;
}

.infov2 .infov2h3{
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  color: #1e293b;
}

 .infov2 .infov2p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
}























  /*İNFO CARD*/
  .infocontainer {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    margin-bottom: 150px;
    margin-top: 320px;
  }
  
  .icontainer {
    max-width: 1200px;
    width: 100%;
  }
  
  .infowrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .infoimage {
    flex: 1;
    min-width: 300px;
    text-align: left;
    
  }
  .icontainer img{
    box-shadow: #030e315d 0px 25px 20px ;
  }
  
  .infologo {
    max-width: 100%;
    margin-left: -10px;
    height: auto;
    border-radius: 8px;
  }
  
  .infotext {
    flex: 1;
    min-width: 300px;
  }
  
  .infotext h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .infotext p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .infoul {
    list-style: disc;
    padding-left: 20px;
    font-weight: 600;
  }
  


/*avatan*/


#başlıkh2{

    width: 100%;
    float: left;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    
    

}

.section-bio {
  
  position: relative;
  padding: 80px 20px;
  background:linear-gradient(0deg, rgba(255, 255, 255, 0),rgb(5, 60, 133), rgb(7, 68, 146),rgb(1, 52, 119));
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  height: 950px;
  margin-bottom: -300px;
}

/* Arka plan SVG */

/* İçerik konteyneri */
.bio-container {

  
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: row; /* Görsel sağda kalır */
  margin-top: 70px;

}

/* Yazı sola */
.bio-text {
  text-shadow: 0 0 3px rgb(185, 185, 185);
  flex: 1 1 50%;
  
  
}

.bio-text h1 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 10px;
}

.bio-text h2 {
  font-size: 25px;
  margin-bottom: 16px;
  color: #ffffff;
}

.bio-text p {
  font-size: 21px;
  font-weight: 350;
  line-height: 1.6;
  color: #ffffff;
}
.infoico{
  color: #0a2270;
  font-size: 35px;
}
/* Görsel sağda */
.bio-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  
 
  border-radius: 15px;
  box-shadow: 0 0 150px rgb(255, 255, 255);
}

.bio-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Mobil görünüm */
@media (max-width:1024px){
  .bio-text h1 {
    font-size: 32px;
  }

  .bio-text h2 {
    font-size: 27px;
  }

  .bio-text p {
    font-size:17px;
  }
}
@media (max-width: 768px) {
  .section-bio{
    margin-top: 10px;
    background-color: #a4c3fd;
    margin-bottom: 100px;
  }
  .bio-container {
    box-shadow: 0 0 20px black;
    margin-top: -20px;
    flex-direction: column;
    text-align: center;
    padding:20px 10px 10px ;
    background: linear-gradient(0deg, white ,rgb(4, 38, 131), rgb(4, 38, 131));
    border-radius: 10px;
  }
  .background-wave {
  display: none;
}

  .bio-text h1 {
    font-size: 24px;
  }

  .bio-text h2 {
    font-size: 18px;
  }

  .bio-text p {
    font-size: 14px;
  }

  .bio-image {
    margin-bottom: 30px;
  }

  
}

/* Galeri Alanı */
#gallery {
  padding: 40px 20px;
  background: #eff6ff;
  margin-top: 20px;
  margin-bottom: 190px;
  box-shadow: 0 0 10px #011e7c4f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease-in-out;
  padding: 20px; /* Küçük ekranlarda kenarlardan boşluk */
  box-sizing: border-box;
  overflow: auto; /* Taşma durumunda scroll çıkması için */
}

.lightbox img {
  max-width: 90vw;   /* Genişlik %90 viewport genişliği */
  max-height: 80vh;  /* Yükseklik %80 viewport yüksekliği */
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  margin: auto;
  display: block;
  margin-top: 100px;
}

.lightbox-close {
  position: fixed; /* fixed yaparak scrollda sabit kalmasını sağla */
  top: 120px;       /* üstten 20px boşluk */
  right: 190px;     /* sağdan 20px boşluk */
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10000;  /* diğer her şeyin üstünde */
}

.lightbox-close:hover {
  opacity: 0.6;
}

/* Mobil için özel ayarlar */
@media (max-width: 600px) {
  .lightbox img {
    max-width: 95vw;
    max-height: 70vh;
  }
  .lightbox-close {
    font-size: 2rem;
    top: 10px;
    right: 10px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%; /* Resmin yarısı kadar */
  background: rgba(237, 243, 252, 0.8); /* Yarı saydam beyaz */
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 10px;
  box-sizing: border-box;
  pointer-events: none; /* Üzerine tıklanabilirliği engeller */
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.img-wrapper:hover .caption {
  opacity: 1; /* Hoverda görünür */
}




/*social-link-menu*/
.social-links-menu{
  margin:auto;
  display: none  !important;

}
.menuikonswp, .menuikonsgm, .menuikonslc{
  margin: 30px;
  font-size:22px ;

  color: #ffffff;
  
  padding: 15px 17px;
  border-radius: 15px;
}
.menuikonswp{
  background-color: #29af30;
}
.menuikonsgm{
  background-color: #ce4b47;
}
.menuikonslc{
  background-color: #103368;
}
/*-------------------NAVBAR-END--------------------*/

/*go up botton*/

.go-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 16px;
  font-size: 20px;
  background-color: #335ba5;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}













.altbaslikh3 {
  width: 100%;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  color: #07244e;
  
  margin-bottom: 30px;
  font-family: 'Open Sans', sans-serif;
}
/*----------------------PRODUCT-END--------------------------*/

.fotter-alt {
  
	width:100%;
	height:40px;
	border-top: 1px solid #4f4f50;
  border-bottom: 1px solid rgb(121, 110, 110);
	position: absolute;
	bottom: 1px;
	line-height: 40px;
	text-align:center;
	color:#ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
  
}


.footerlogoss{
  margin-top: 10px;
  margin-left: -90px;
  width: 340px;
}

/*wp ve goup devamı*/
.btnikon , .wbtnikon{
    font-size: 18px;
    margin: auto;
    text-shadow: 0px 0px 20px #030e31;
}
.whatsapbutton{
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 16px;
  font-size: 20px;
  background-color: #4cff15;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  margin-bottom: 60px;
  z-index: 9999;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.473);
  
  
  

}
.wbtnikon{
    font-size: 40px;
    
}







/*Refence slider*/

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider {
  position: relative;
  bottom: 0px; /* footer yüksekliğine göre ayarlayın (footer 70-100px arasıysa uygun) */
  left: 0;
  width: 100%;
  z-index: 9998;
  background: #fff;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 60px;
  overflow: hidden;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, white -110%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 60px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14); /* 7 slaytın iki katı, loop etkisi için */
}

.slide {
  height: 60px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*-----------------reference-slider-end-------------------------*/






/*FOOTER*/
.footer {
  position: relative; /* artık fixed değil */
  
  background: linear-gradient(0deg, #030e31, rgb(30, 64, 99));
  padding: 20px 0;
  width: 100%;
  z-index: 100;

  margin-top: auto;
  margin-left:0 ;
  
  background: linear-gradient(0deg, #030e31, rgb(30, 64, 99));
  
}
.footer-col{
  margin-bottom: 30px;
   width: 25%;
   padding: 0 15px;
   
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #207acf;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*------------------------------FOOTER-END--------------------------*/




/* Responsive adjustments for .yazıdiv and its children */
@media (max-width: 1024px) {
  .yazıdiv {
    margin: 40px 30px 70px 30px; /* Daha dar marginler */
    width: auto; /* Genişliği otomatik yap */
    float: none; /* Float kaldır */
    margin-top: 190px;
  }

  .yazıdiv p {
    color: #ffffff;
    width: 100%; /* Paragraf genişliği tam yap */
    font-size: 1rem; /* Okunabilir font boyutu */
  }

  .yazıdiv img {
    float: none; /* Float kaldır */
    display: block;
    margin: 30px auto 0 auto; /* Ortala ve üstten boşluk bırak */
    width: 90%; /* Yüzde bazlı genişlik */
    height: auto; /* Oran koru */
    box-shadow: #030e315d 0px 15px 15px;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  .yazıdiv {
    margin: 20px 15px 50px 15px; /* Daha küçük cihazlar için daha dar margin */
  }

  .yazıdiv p {
    font-size: 0.9rem; /* Daha küçük font */
    line-height: 1.4;
  }

  .yazıdiv img {
    width: 100%; /* Tam genişlik */
    margin-top: 20px;
  }
}




/*RESPONSİVE*/


@media (min-width:1850px) {

    
.call-buton .cc-calto-action-ripple{
    margin-bottom: -300px;
  }
    
}




@media (max-width:1024px){



    
    .go-up{
        margin-right: 75%;
        opacity: 0;
    }





    /*navbar*/
    .social-links-menu{
  display: block;
  }



  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    animation: slideUp 0.3s forwards; /* Kapanma animasyonu */
    position: fixed;
    z-index: 9999;
    top: 70px;
    right: -100%;
    display: none;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto; /* BURASI ÖNEMLİ */
    flex-direction: column;
    align-items: flex-start;
    background: var(--nav-bg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);

    width: 80%;
    height: calc(100vh - 70px);
    padding: 2rem;
    transition: right var(--transition-slow);
    box-shadow: -10px 0 30px var(--shadow-color);
    border-left: 1px solid var(--border-color);
    
  }

  .nav-active .nav-menu {
    right: 0;
    animation: slideDown 0.3s forwards; /* Açılma animasyonu */

    display: flex;
    visibility: visible;
    opacity: 1;
    transition: right var(--transition-slow, visibility 0s linear 0s, opacity 0.3s ease);
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-top: 30px;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    background: rgba(33, 150, 243, 0.15);
  }

  .dropdown {
    position: static;
    width: 100%;
    background: rgba(160, 160, 160, 0.2);
    border: none;
    padding: 0;
    padding-left: 1rem;
    margin-left: 1rem;
    display: none;
    box-shadow: none;
    border-left: 1px solid var(--border-color);
    transform: none;
    transition: all var(--transition-medium);
  }

  .dropdown::before {
    display: none;
  }

  .has-dropdown.active .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown a {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-brand {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    }

  .logo {
    justify-content: center;
    text-align: center;
    }
    /*---------------NAVBAR-END------------------*/
    
    



    /*FOOTER*/
    .footer-col{
    width: 50%;
    margin-bottom: 30px;
    }
    
    .footer{
        
        z-index: 0;
    }


    .anasayfablogitem {
      
    width: 100%;
    height: 250px; /* Daha kare görünüm için */
  }
    /*---------------FOOTER-END------------------*/
  .call-buton .cc-calto-action-ripple{
    margin-bottom: -100px;
  }
    

}
@media (max-width:769px){
  .footerlogoss{
    scale: 0.9;
    margin-left: 5px;
  }
}

@media (max-width:500px) {

  .call-buton .cc-calto-action-ripple{
    margin-bottom: -100px;
  }
  .infov2card{
    width: 330px;
    
  }
  .iconinfo2{
    
    text-align: center;
  }
  .yazı{
    background: linear-gradient(180deg, #20427e,#20427e,#f4f6fd);
  }
  
  .yazıdiv{
    
    text-align: center;
  }
  .yazıdiv img{
    scale: 1.1;
    
  }
  .anasayfablogitem {
    width: 300px;
    height: auto;
    padding: 10px 5px;
  }

  .blogitem-info h3 {
    font-size: 30px;
  }

  .anasayfablogitem .item-arrow {
    font-size: 30px;
  }

  .lightbox-close{
    
    margin: auto;
    margin-top:230px ;
    font-size: 50px;
  }  
  #lightbox-img{
    margin-top: 270px;
    
  }
    
  /* NAVBAR */

  .nav-toggle {
    display: flex;
    z-index: 10001;
    margin-right: 5px;
  }
 
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: var(--nav-bg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    background: rgba(245, 245, 245, 0.986); 

    box-shadow: none;
    border: none;
    z-index: 9999;

    /* Menü kapalıyken */
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.3s ease;

    
  }

  .nav-active .nav-menu {
    /* Menü açıkken */
    transform: translateX(0);
    opacity: 1;
    visibility: visible;

  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
    gap: 1rem;
  }

  .navbar{
    padding:0px;
    height: 70px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 0.3rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
  }

  .nav-link.active {
    background: rgba(33, 150, 243, 0.15);
  }

  .nav-link.active::after {
    display: none;
  }

  /* Dropdown */
  .dropdown {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-left: 1rem;
    margin-top: 0.5rem;
    border: 1px solid var(--border-color);
    background: rgba(160, 160, 160, 0.08);
    transition: all 0.3s ease;
  }

  .has-dropdown.active .dropdown {
    display: flex;
  }

  .dropdown a {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-brand {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo {
    height: 30px;
    text-align: center;
  }

  .logo span{
    display: flex;
    flex-direction: column;
  }

  .social-links-menu {
    display: block;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
  }
  #başlıkh2{
    margin-top: 10px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.603);
  }

  .yazıdiv{
    width: 250px;
    position: inherit;
    margin: auto;
    margin-top: 19px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    
  }
  .yazı p{
    font-size: 22px;
  }
  .infocontainer{
    margin-top: 100px;
    width: 290px;
    margin-left: 11%;
  } 
  .infotext{

    margin: auto;
    text-align: left;
  }
  .infoul{
    text-align: left;
    margin: auto;
    font-size: 19px;
    
  }
  .infoimage{
    scale: 1.1;
    
  }
  .footerlogoss{
    scale: 0.8;
  }
  .footerlogoss{
    width: 250px;
    margin: -20px;
    

   }

  .yazıdiv img{
    margin-bottom: 150px;
  }
}
@media (max-width:375px){
    
    #menuikon{

    margin: 14px;

  }
  .footerlogoss{
    width: 180px;
    margin: -20px;
    

   }
   .infov2card{
    width: 300px;
    
    margin-left: -20px;
    overflow: hidden;
   }

   .infocontainer{
    margin: 0;
   }
   .infoimage{
    scale: 0.9;
   }
   

}
@media (max-width:350px) {

    
   .footer-col ul li a{
    font-size: 11px;
   }
   .footerlogoss{
    width: 180px;
    margin: -20px;
    

   }

   .infov2card{
    width: 280px;
    margin-left:-40px;
    overflow: hidden;
   }
   .infov2h3{
    text-align: center;
   }

   .infocontainer{
    margin: 0;
   }
   .infoimage{
    scale: 0.9;
   }
   
   
   

    

}
























/*anasayfa-blog*/
.anasayfablog {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start; /* hizalama sabit */
  gap: 30px;
  padding: 20px;
}
.anasayfablog a{
  text-decoration: none;
  color:#001344;
}
.anasayfablogitem {
  
  margin-bottom: 30px;
  width: 400px;
  height: 440px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: white;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.479);
}
.anasayfablogitem img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(2, 63, 112, 0.308);
}
.blogitem-info{
  padding: 10px 10px 10px;
  font-size: 18px;
  text-align: center;
  color: #030e31;
}
.anasayfablogitem p{

  font-size: 20px;
  color: #000000;
  

}
.anasayfablogitem:hover{
  cursor: pointer;
}
.anasayfablogitem:hover p{
  
  
  transition: var(--transition-medium);
  
  
}

.anasayfablogitem:hover a{
  color: #063283;
  
}

.yazis{
  margin-top: 350px;
  margin-left: 150px;
  max-width: 1300px;
 
}
.yazis h2{
  font-size: 40px;
  color:#001344;
}
@media (max-width:1400px){
  .yazis{
    margin-left: 20px;
  }
}
@media (max-width:1024px){
  .yazis{
    margin-left: 20px;
  }
  .lightbox-close{
    margin-right: -133px;
  }
}
@media (max-width:768px) {
  .lightbox-close{
    margin-right: -3px;
  }
  .yazis{
    margin-left: 10px;
    margin-top: 10px;
    max-width: 600px;
  }
  .yazis h2{
    text-align: center;
  }
  .yazis h3{
    font-size: 18px
    
  }
}







.about-us {
  background:linear-gradient(0deg,white,#0e4ead,#032d6b  );
  padding: 60px 20px;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 20px black;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 250px;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #ffffff;
  font-weight: bold;
}
.about p{
  color: #030e31;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  
}

.about-box {
  background-color: transparent;
  max-width: 300px;
  padding: 20px;
  
  
}
.about-box:hover .iconhakkımızda {
  transform: rotate(360deg) scale(1.05);
  border-color: #c6e3fc;
  background-color: #7eafdd;
}

.iconhakkımızda {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border: 3px solid #02203b;
  background-color: #2c6192;
  border-radius: 50%;
  font-size: 40px;
  color: #ffffff;
  margin: 0 auto 10px;
  transition: all 0.5s ease;
}


.about-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.about-box p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    align-items: center;
  }
  .about-us{
    margin-bottom: 70px;
    background:linear-gradient(0deg,white,#0e4ead,#0e4ead,#032d6b,#032d6b,#032d6b   );
  }
  
}


/* Kapsayıcı */
.containerhakv2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 10px auto;
  margin-top: -200px;
  
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

/* Görsel Alanı */
.img-sag {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.img-sag img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.507);
  display: block;
  margin-top: 50px;
}

/* Yazı Alanı */
.yazı-sol {
  flex: 1;
  min-width: 280px;
}

.yazı-sol ul {
  padding-left: 1.2rem;
}

.yazı-sol ul li {
  margin-bottom: 8px;
  list-style: disc;
  font-size: 1.1rem;
  color: #000000;
  font-weight: 500;
}
@media (max-width: 767px) {
  .containerhakv2 {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    margin-bottom: 80px;
  }

  .img-sag img {
    margin-top: 0;
  }

  
}

@media (max-width: 480px) {
  .containerhakv2 {
    padding: 0.5rem;
    gap: 1rem;
  }

  .yazı-sol {
    max-width: 330px;
    font-size: 0.95rem;
  }
  .img-sag{
    scale: 0.8;
    
  }
  
  
}


.referanskard {
  padding: 4rem 1rem;
  background-color: #f8f9fa;
  text-align: center;
  margin-bottom: 50px;
  box-sizing: border-box;
}

.referansh3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
}

.referans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  padding: 0 1rem;
  box-sizing: border-box;
}

.kare {
  width: 130px; /* Bunu senin eski boyutuna göre artırıp azaltabilirsin */
  height: 130px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kare img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  transition: opacity 0.3s ease;
  object-fit: contain; /* cover yerine contain kullanmalıyız */
}


.kare:hover {
  transform: scale(1.05);
}
/* Hover yazısı */
.kare-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 123, 255, 0.85);
  color: #fff;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.kare:hover .kare-hover {
  opacity: 1;
  transform: translateY(0);
}

/* Teklif Başlığı */
.teklifal {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #3d8007;
  margin-bottom: 30px;
  font-family: 'Open Sans', sans-serif;
}

/* Tablet ve altı */
@media (max-width: 768px) {

  

  .referansh3 {
    font-size: 1.7rem;
  }

  .teklifal {
    font-size: 2.5rem;
  }

  .kare-hover {
    font-size: 0.85rem;
  }
}

/* Küçük cihazlar */
@media (max-width: 480px) {
  .referans-grid {
    gap: 1rem;
  }

  .referansh3 {
    font-size: 1.4rem;
  }

  .teklifal {
    font-size: 2rem;
  }

  .kare-hover {
    font-size: 0.8rem;
  }
}

/* En küçük cihazlar */
@media (max-width: 360px) {
  .teklifal {
    font-size: 1.8rem;
  }

  .kare-hover {
    font-size: 0.75rem;
    padding: 0.4rem;
  }
}











@media (max-width:768px) {
  
  .iletisimbuton{
    scale: 0.9;
  }


  .teklifal {
  
  font-size: 22px;
  
}


}



.iletisimbuton-container {
  display: flex;
  justify-content: center;
  
}


.iletisimbuton{
    padding: 10px 20px 10px;
    width: 300px;
    height: 60px;
    background-color: #07b807;
    font-size: 30px;
    color: #ffffff;
    text-shadow: 0 0 20px #f5f5f5;
    border: none;
    border-radius: 15px;
    margin: auto;
    
    margin-bottom: 200px;
    
    
}

.iletisimbuton:hover{
    cursor: pointer;
    background-color: #046d04;
    transition: var(--transition-medium);
    border: 2px solid rgb(16, 73, 2);
}

.contacttitle {
  color: #030e31;
  margin: auto;
  position: relative;
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.iletişim{
  margin-top: 100px;
  margin-bottom: 150px;

}

.contact-grid {
  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.contact-card {
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.562);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.699);
}

.contact-card i {
  font-size: 36px;
  margin-bottom: 15px;
  color: #ffffff;
  padding: 15px;
  border-radius: 50%;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #444;
}
.ibaslikh3{
  color: #b80707;
  font-size: 40px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
  margin-top: -30px;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.192);
}

.contact-card a {
  text-decoration: none;
  color: #cc0808;
  font-weight: 500;
}

.arka-svg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:700px;
  
  z-index: -2;
  object-fit: cover;
  filter: invert(15%) sepia(19%) saturate(9876%) hue-rotate(202deg) opacity(0.5);
}



.contact-card.email i {
  background-color: #ff6f00;
  
}

.contact-card.whatsapp i {
  background-color: #25d366;
  padding: 17px 20px 15px;
  
}

.contact-card.location i {
  background-color: #3f51b5;
  padding: 13px 19px 13px;
}


.blogitem-info a{text-decoration: none;
color: #030e31;}



/* Başlık Alanı */
.yazipro {
  margin-top: 120px;
  text-align: center;
  padding: 0 1rem;
}

.yazipro h1 {
  color: #030e31;
  font-size: 2.2rem;
}

.yazipro h2 {
  color: #303030;
  font-size: 1.4rem;
}

.yazipro h3 {
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

/* Grid Konteyner */
.projecontainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Kart */
.projeitem {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.projeitem:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.projeitem img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.projeitem h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
  color: #333;
}

.projeitem p {
  font-size: 0.9rem;
  padding: 0 1rem 1.5rem;
  color: #666;
}

/* En küçük ekranlar için özel uyarlama */
@media (max-width: 400px) {
  .projecontainer {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .projeitem img {
    height: 150px;
  }

  .projeitem h3 {
    font-size: 1rem;
  }

  .projeitem p {
    font-size: 0.85rem;
  }

  .yazipro h1 {
    font-size: 1.7rem;
  }

  .yazipro h2 {
    font-size: 1.1rem;
  }

  .yazipro h3 {
    font-size: 1rem;
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

.blog-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.blog-title {
  margin-top: 30px;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #030e31;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width:375px){

  .altbaslikh3{
    margin-top: 50px;
    font-size: 22px;
  }


}

.blog-card {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card h3 {

  padding: 1rem;
  font-size: 1.2rem;
  color: #333;
  flex-grow: 1;
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff0000;
  color: white;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.date-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #e0e0e0;
  color: #333;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 1;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 400px) {
  .blog-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .blog-card img {
    height: 160px;
  }

  .blog-card h3 {
    font-size: 1rem;
    padding: 0.75rem;
    min-height: 3rem;
  }

  .badge,
  .date-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  .projecontainer {
    padding: 1rem 0.5rem;
  }

  .projeitem img {
    height: 150px;
  }

  .projeitem h3 {
    font-size: 1rem;
  }

  .projeitem p {
    font-size: 0.85rem;
  }

  .yazipro h1 {
    font-size: 1.6rem;
  }

  .yazipro h2 {
    font-size: 1rem;
  }

  .yazipro h3 {
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 35px;
  }
}


.bloggg-section {
  padding: 4rem 1rem;
  background-color: #fff;
  margin-top: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Yapısı */
.bloggg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Metin Kutuları ve Geniş Alan */
.bloggg-text,
.bloggg-wide {
  background-color: #f5f5f5;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.459);
  padding: 1.25rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}


.bloggg-text h3,
.bloggg-wide h3 {
  margin-bottom: 0.5rem;
  color: #030e31;
  font-size: 1.25rem;
}

.bloggg-text p,
.bloggg-wide p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

/* Görsel Kutusu */
.bloggg-image {
  background-color: #eee;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.555);
  border-radius: 12px;
  overflow: hidden;
}

.bloggg-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Geniş Kart (2 sütun kaplayan) */
.bloggg-wide {
  grid-column: span 2;
}

/* Tablet ve altı */
@media (max-width: 768px) {


  .contact-card{
    margin-left: 30px;
    margin-right: 30px;
    gap: none;
  }
  .yazıdiv {
    margin: 40px 30px 70px 30px; /* Daha dar marginler */
    width: auto; /* Genişliği otomatik yap */
    float: none; /* Float kaldır */
    margin-top: 60px;
    width: 280px;
  }

  .bloggg-grid {
    grid-template-columns: 1fr;
  }

  .bloggg-wide {
    grid-column: span 1;
  }

  .bloggg-text h3,
  .bloggg-wide h3 {
    font-size: 1.1rem;
  }

  .bloggg-text p,
  .bloggg-wide p {
    font-size: 0.95rem;
  }
  .anasayfablogitem h3{
    font-size: 18px;

  }
  .anasayfablogitem p{
    font-size: 16px;
  }
}

/* Mobil 480px ve altı */
@media (max-width: 480px) {
  .bloggg-section {
    padding: 2rem 1rem;
  }

  .bloggg-text,
  .bloggg-wide {
    padding: 1rem;
  }

  .bloggg-text h3,
  .bloggg-wide h3 {
    font-size: 1rem;
  }

  .bloggg-text p,
  .bloggg-wide p {
    font-size: 0.9rem;
  }

  .bloggg-image img {
    height: auto;
    max-height: 240px;
  }
}

/* Ekstra küçük cihazlar (320px ve altı) */
@media (max-width: 360px) {
  .bloggg-section {
    padding: 1.5rem 0.75rem;
  }

  .bloggg-text p,
  .bloggg-wide p {
    font-size: 0.85rem;
  }

  .bloggg-text h3,
  .bloggg-wide h3 {
    font-size: 0.95rem;
  }
  .fotter-alt{
    width: 100%;
  }
}

.social-links-menu{
  display: none;
  color: #001344;
}