/* Genel yapı */
body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background-color: #0A2342; /* koyu yeşil ton */
  color: #fff;
}

/* Navbar */
.navbar {
  height: 90px;
  background-color: #0A2342; /* sabit koyu lacivert */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* derinlik için gölge */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* İç konteyner */
.nav-container {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Sol bölüm: logo */
.nav-left .logo {
  height: 70px;
  cursor: pointer;
}

/* Orta bölüm: Menü */
.nav-center .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-center .nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-center .nav-links a:hover {
  color: #FFD700; /* altın hover */
}

/* Sağ bölüm: Dil düğmesi */
.nav-right #lang-btn {
  background-color: #FFD700;
  color: #0A2342;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-right #lang-btn:hover {
  background-color: #fff;
  color: #0A2342;
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 15px; /* buton ile hamburger arasında boşluk */
}







/* SLİDER BÖLÜMÜ KAYAN RESİMLER */

/* HERO SLIDER */

.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-top: 90px; /* navbar yüksekliği kadar */
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* HERO CONTENT */
.hero-content {
  position: absolute;
  top: 40%;
  left: 10%;              /* sağa dayalı */
  transform: translateY(-40%);
  text-align: left;       /* metin sola hizalı */
  color: var(--white);
  z-index: 2000;
  max-width: 40%;          /* metin kutusu genişliği */
}

.hero-content h1 {
  font-size: 48px;
  color: #d4af37;
  margin: 0 0 10px;
}

.hero-content p {
  font-size: 20px;
  margin: 0 0 20px;
}

.hero-btn {
  display: inline-block;
  background: #d4af37;
  color: #0A2342;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  
  
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-btn:hover {
  background-color: #fff;
  color: #0A2342;
}




/* DOTS sabit */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 9999; /* her zaman en üstte */
}

.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 6px;
  background: #FFD700; /* altın sarısı */
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.dot.active {
  opacity: 1;
  transform: scale(1.2);
}





/*MOBİLDE HERO RESİMLERİ*/
@media (max-width: 768px) {
  .hero-content {
    top: 1%;              /* mobilde üstte */
    left: 45%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
  }

  .hero-btn {
    display: block;
    margin: 15px auto 0;
  }
}



/*MOBİLDE YAZILAR ÜSTTE*/

@media (max-width: 768px) {
  .slide-text {
    top: 10%;              /* en üst kısma taşı */
    left: 50%;             /* ortala */
    transform: translateX(-50%); 
    text-align: center;    /* yazıyı ortala */
    width: 90%;            /* mobilde taşma olmasın */
  }

  .slide-text h1 {
    font-size: 20px;       /* mobil için daha küçük başlık */
  }

  .slide-text p {
    font-size: 12px;       /* mobil için daha küçük slogan */
  }
}







/* Ürünlerimiz Bölümü */
.products {
  padding: 60px 10%;
  background-color: #0A2342;
  color: #fff;
  text-align: center;
}

.products h2 {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 10px;
}

.products p {
  font-size: 18px;
  margin-bottom: 40px;
}

.product-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: stretch; /* tüm kartları aynı yükseklikte hizala */
}

.product-card {
  flex: 1; /* her kart eşit genişlikte olsun KART İÇ RENGİ*/
  min-height: 250px; /* sabit minimum yükseklik */
  background: linear-gradient(145deg, rgba(0, 60, 114, 0.8), rgba(10, 35, 66));
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* içerik dikeyde dengelenir */
}


/* ÜRÜNLER SAYFASINDA BÖLÜMÜ LİSTE FORMU*/


.white-list {
  list-style-position: inside;   /* Nokta cümleyle birleşik */
  padding: 0;
  margin: 0;
  color: rgb(255, 255, 255);
  display: inline-block;         /* Ortada blok gibi durur */
  text-align: left;              /* Maddeler sola hizalanır */
  font-size: 18px;               /* Tüm satırlar aynı boyutta */
}















/* Alt kısımdaki kalın gold çizgi (çerçeve ile bütün) */
.product-card::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #d4af37, #b8860b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.product-card:hover {
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-card:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    width: 100%;
    max-width: 350px;
    min-height: 220px; /* mobilde de eşit yükseklik */
  }
}




/* Teknolojimiz Bölümü */


.technology {
  padding: 60px 10%;
  background-color: #0A2342;
  color: #fff;
  display: flex;
  justify-content: center;
}

.tech-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: #003c72;
  border: 3px solid #d4af37; /* sabit altın çerçeve */
  border-radius: 12px;
  padding: 30px;
  max-width: 1200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tech-text {
  flex: 1;
}

.tech-text h2 {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 15px;
}

.tech-text p {
  font-size: 18px;
  line-height: 1.5;
}

.tech-image {
  flex: 1;
}

.tech-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}



@media (max-width: 768px) {
  .tech-box {
    flex-direction: column;   /* alt alta diz */
    text-align: center;
  }
  .tech-image img {
    width: 100%;
    max-width: 400px;         /* mobilde sınırlı genişlik */
    margin-top: 20px;
  }
}




/* Footer */

.footer {
  background: linear-gradient(145deg, #0A2342, #003c72);
  border-top: 4px solid #d4af37; /* gold çizgi */
  color: #fff;
  padding: 40px 10%;
}

.footer-top {
  text-align: center;
  margin-bottom: 30px;
}

.footer-top h2 {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 15px;
}

.footer-top p {
  font-size: 16px;
  color: #ddd;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-button .cta {
  display: inline-block;
  background-color: #d4af37;
  color: #0A2342;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-button .cta:hover {
  background-color: #fff;
  color: #0A2342;
}



@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;   /* alt alta diz */
    align-items: center;      /* ortala */
    text-align: center;
  }

  .footer-button {
    margin-top: 20px;         /* üstten boşluk */
    text-align: center;       /* butonu ortala */
  }

  .footer-button .cta {
    display: inline-block;
    margin: 0 auto;           /* ortalama */
  }
}




/* Footer */
.footer {
  background: linear-gradient(145deg, #033460, #0A2342);
  border-top: 4px solid #d4af37;
  color: #fff;
  padding: 40px 10%; 
  position: relative; /* gradient ve gölge için gerekli */
}




/* Üst kısımda gölge efekti */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  box-shadow: 0 -10px 20px rgba(0,0,0,0.6); /* yukarı doğru gölge */
}


/* Footer altın şerit */
.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #d4af37; /* altın renk */
  box-shadow: 0 -10px 20px rgba(0,0,0,0.6); /* yukarı doğru gölge */
  z-index: 0; /* arkada kalacak */





  
}

/* Altın şerit üzerindeki yazı */
.footer-gold-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 30px;
  line-height: 30px;
  font-size: 16px; /* bu etki etmiyor */
  font-weight: bold;
  color: #0A2342; /* yeşil ton */
  z-index: 1; /* öne çıkar */
}

/* Hamburger menü */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
}



/* Hamburger menü */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .nav-center {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: rgba(10, 35, 66, 0.95); /* koyu lacivert + transparan */
    backdrop-filter: blur(6px); /* blur efekti */
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    z-index: 999;
  }
  .nav-center.active {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    gap: 20px;
  }
  .hamburger {
    display: flex;
  }
}

/*FOOTER*/
.footer-info a {
  color: #d4af37;   /* altın tonunda link */
  text-decoration: none;
  font-weight: 500;
  margin: 0 5px;
}

.footer-info a:hover {
  color: #fff;      /* hover’da beyaz */
}

.footer-info i {
  margin-right: 6px;
}

.footer-social {
  margin-top: 15px;         /* butonun altına boşluk */
  text-align: center;       /* ortala */
}

.footer-social a {
  color: #d4af37;           /* altın tonunda link */
  text-decoration: none;
  font-weight: 500;
  margin: 0 8px;
}

.footer-social a:hover {
  color: #fff;              /* hover’da beyaz */
}

.footer-social i {
  margin-right: 6px;
}



/* AVIGALL sayfasonu premium metin*/
.premium-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 900;
  /*color: #d4af37; /* altın */
  color: #0A2342; /* altın */
  
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7); /* gölge */
  -webkit-text-stroke: 1px #000; /* siyah stroke */


/*PRODUCT CARD İÇİNE RESİM EKLEME*/

.product-card img.product-image {
  width: 100%;
  height: 180px; /* isteğe göre ayarlanabilir */
  object-fit: cover; /* taşmadan kırpma */
  border-radius: 8px 8px 0 0; /* üst köşeleri yuvarla */
  margin-bottom: 15px;
}
}





/*İLETİŞİM FORMU BÖLÜMÜ*/
.contact-container {
  display: flex;
  justify-content: flex-start; /* sola hizala */
  gap: 20px;                   /* sütunlar arası boşluğu azalt */
  padding: 20 20px;              /* sağdan ve soldan 20px boşluk */
  flex-wrap: wrap; /* mobilde alt alta */
}

.contact-info, .contact-form {
  flex: 1;          /* her iki sütun eşit genişlik */
  min-width: 300px; /* daralmayı önle */
}

/* Form elemanları alt alta */
.contact-container {
  display: flex;
  justify-content: flex-start; /* sola hizala */
  gap: 20px;                   /* sütunlar arası boşluk */
  padding: 0 20px;              /* sağdan ve soldan 20px boşluk */
  flex-wrap: wrap;
  max-width: 1200px;            /* sayfa taşmasını önle */
  margin: 0 auto;               /* ortala */
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;             /* daralmayı önle */
}

/* Form elemanları alt alta */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;              /* taşmayı engelle */
  padding: 12px;
  border: 2px solid #d4af37;
  border-radius: 6px;
  background: #033460;
  color: #fff;
  box-sizing: border-box;       /* padding dahil */
}

.contact-form .cta {
  width: auto;
  margin: 10px auto 0;
  display: inline-block;
}

/* Mobilde alt alta diz */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


.contact-social {
  margin-top: 15px;
  text-align: left; /* firma bilgileri ile hizalı */
}

.contact-social a {
  color: #d4af37;           /* altın tonunda link */
  text-decoration: none;
  font-weight: 500;
  margin: 0 8px;
}

.contact-social a:hover {
  color: #fff;              /* hover’da beyaz */
}

.contact-social i {
  margin-right: 6px;
}



/* GÖNDER DÜĞMESİ*/

.contact-form .cta {
  display: inline-block;
  background-color: #d4af37; /* altın ton */
  color: #0A2342;            /* koyu yeşil yazı */
  padding: 10px 20px;        /* aynı ölçüler */
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 10px auto 0;       /* ortalanmış */
}

.contact-form .cta:hover {
  background-color: #fff;    /* hover’da beyaz */
  color: #0A2342;
}




/*MAPS SAYFA AYARI*/
.footer-map {
  width: 100%;        /* tam genişlik */
  margin: 0;          /* container boşluklarını kaldır */
  padding: 0;
}

.footer-map iframe {
  width: 100%;        /* sayfa genişliği */
  height: 400px;
  border: none;
  display: block;
}






/* HAKKIMIZDA Bölümü */



.about-box {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* Masaüstünde yazı ve görsel yan yana */
  align-items: start;               /* Üstten hizala */
  gap: 40px;
  background-color: #0A2342;
  border: 3px solid #d4af37;
  border-radius: 12px;
  padding: 30px;
  max-width: 1200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin: 0 auto;   /* kutuyu yatayda ortalar */
}

.about-text {
  min-width: 300px;                 /* Yazı daralmadan sağa doğru uzar */
}

.about-text h2 {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.5;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Mobil uyum */
@media (max-width: 768px) {
  .about-box {
    grid-template-columns: 1fr;     /* Mobilde alt alta */
    text-align: center;
  }
  .about-image img {
    max-width: 400px;
    margin: 20px auto 0;            /* Ortalanmış görsel */
  }
}



/* PLAY BUTONU*/


.video-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
 /* background-image: url("img/video.jpg"); /* Arka plan resmi */
  background-size: cover;       /* Resmi container’a tam oturtur */
  background-position: center;  /* Ortalar */
  border-radius: 8px;
  overflow: hidden;
}



.video-container iframe {
  width: 98%;
  height: 315px;
  border-radius: 8px;
  border: 5px solid #d4af37; /* Altın vurgulu çerçeve */
}

/* Radar efektli Play Tuşu */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #ffd700, #d4af37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
  animation: pulse 2s infinite;
}

.play-button span {
  font-size: 2rem;
  color: #111;
  margin-left: 5px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(212,175,55,0.6); }
  50% { box-shadow: 0 0 30px rgba(212,175,55,1); }
  100% { box-shadow: 0 0 10px rgba(212,175,55,0.6); }
}


/*PLAY BUTONU SONU*/


/* SWIPER BÖLÜMÜ İNDEX SAYFASIDA*/

/* Masaüstü için varsayılan ayar */
.swiper-slide {
  flex: 0 0 auto;
  width: auto;
}

/* Mobilde tek görsel */
@media (max-width: 768px) {
  .swiper-slide {
    width: 100% !important;   /* her slide tam genişlik */
    max-width: 100%;          /* taşmayı engelle */
  }

  .img-box {
    max-width: 100%;          /* görsel kutusu tam genişlik */
    aspect-ratio: auto;       /* kare zorlamasını kaldır */
  }
}







/* whatsapp bölümü*/


.wa-widget{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;
    font-family:Arial,sans-serif;
}

.wa-float{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    transition:.3s;
    animation:pulse 2s infinite;
}

.wa-float:hover{
    transform:scale(1.08);
}

.wa-float img{
    width:36px;
}

.wa-popup{
    width:320px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 40px rgba(0,0,0,.2);
    margin-bottom:15px;
    overflow:hidden;
    display:none;
}

.wa-header{
    background:#25D366;
    color:#fff;
    padding:15px;
    display:flex;
    align-items:center;
    gap:12px;
}

.wa-avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
}

.wa-avatar img{
    width:30px;
}

.wa-header h4{
    margin:0;
    font-size:16px;
}

.wa-header span{
    font-size:12px;
}

.wa-body{
    padding:18px;
    color:#444;
    line-height:1.6;
    font-size:15px;
}

.wa-button{
    display:block;
    background:#25D366;
    color:#fff;
    text-align:center;
    text-decoration:none;
    padding:15px;
    font-weight:bold;
}

.wa-button:hover{
    background:#1fb85a;
}

.wa-close{
    position:absolute;
    right:12px;
    top:10px;
    background:none;
    border:none;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.5);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

@media(max-width:480px){

.wa-popup{
width:290px;
}

.wa-widget{
right:15px;
bottom:15px;
}

}


.wa-popup{
    width:320px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 40px rgba(0,0,0,.2);
    margin-bottom:15px;
    overflow:hidden;
    display:none;

    animation:popupShow .4s ease;
}

@keyframes popupShow{

    from{
        opacity:0;
        transform:translateY(30px) scale(.9);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}









/* whatsapp bölümü sonu*/