html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,1) 20%,
        rgba(255,255,255,0) 100%
    );
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    overflow: visible;
}

/* Scroll sonrası header */
.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Header iç container */
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    overflow: visible;
}

/* Logo */
.logo img {
    height: 80px;
    transition: height 0.3s ease;
}
.site-header.scrolled .logo img {
    height: 80px;
}

/* Navigation */
.main-nav {
    position: relative;
    overflow: visible;
}

/* Navigation listesi */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

/* Her bir menü öğesi */
.nav-list li {
    position: relative;
    height: 100%;
}


/* Menü linkleri */
.nav-list a {
    text-decoration: none;
    color: #1c2230;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #2e7d68;
}

/* Dropdown ok simgesi */
.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.has-dropdown > a {
    display: inline-block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 500;
    color: #1c2230;
    line-height: 1.2;
    transition: color 0.3s ease;
    height: 100%;
    position: relative;
}

.has-dropdown > a::after {
    content: ' ▼';
    font-size: 0.6rem;
    margin-left: 4px;
    vertical-align: middle;
}

.has-dropdown > a:hover {
    color: #2e7d68;
}

/* Dropdown menü */
.dropdown {
    position: absolute; /* FIXED değil */
    top: 100vh;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    border-radius: 4px;
    display: none;
    min-width: 220px;
    z-index: 999;
    list-style: none;
    margin: 0;
}

/* Dropdown iç linkler */
.dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #1c2230;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.dropdown li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #2e7d68;
    transition: width 0.3s ease;
}

.dropdown li a:hover {
    color: #2e7d68;
}
.dropdown li a:hover::after {
    width: 100%;
}

/* Dropdown hover ile gösterilir */
.has-dropdown:hover .dropdown {
    display: block;
}



.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(0); /* yukarı kaymasını engeller */
  z-index: 9999; /* sayfa üzerindeki her şeyin üstünde */
}


/* Hamburger Menü (Mobil) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1c2230;
    transition: all 0.3s ease;
}

/* Mobil Logo */
/* Desktop'ta gizle */
.mobile-logo {
  display: none;
}

/* Mobilde görünür yap */
@media (max-width: 992px) {
  .mobile-logo {
    display: flex; /* flex veya block olabilir */
    justify-content: center;
    padding: 1.5rem 0 1rem 0;
    border-top: 1px solid #ddd; /* İstersen altına ince çizgi */

    /* Görsel ayarları */
  }

  .mobile-logo img {
    width: 80px; /* İstediğin genişlik */
    height: 80px; /* Kare yapısı */
    object-fit: contain;
    border-radius: 50%; /* Yuvarlak logo için */
    opacity: 0.95;
  }
}













.hero-slider {
    position: relative;
     overflow: hidden;
    width: 100%;
    height: 100vh;
    z-index: 1;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    overflow: visible;  /* DÜZENLENDİ — menü taşabilsin */
    z-index: 0;          /* DÜZENLENDİ — header menü üstte kalsın */
    width: 100%;
    height: 100vh;
    margin-top: 0;
}


.hero-slider .swiper-slide picture,
.hero-slider .swiper-slide img.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HERO TEXT - altta modern tasarım */
.hero-text {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    padding: 2rem 2.5rem;
    background-color: rgba(20, 20, 20, 0.55); /* sade koyu yarı saydam */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 880px;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}



.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f5f5f5;
    letter-spacing: 0.4px;
}

.hero-text p {
    font-size: 1.15rem;
    color: #dddddd;
    margin-bottom: 1.2rem;
}



.cta-button {
    background-color: #1e6e5c;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.cta-button:hover {
    background-color: #145447;
}




/* Swiper Bullets style - PROGRESSBAR GİBİ - Üste taşıyoruz */

.swiper-pagination {
    position: absolute;
    bottom: 20px; /* alt kısmına alıyoruz */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 20;
}


.swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6); /* beyaz, biraz transparan */
    opacity: 1;
    transition: background 0.3s ease;
    border-radius: 2px;
}

.swiper-pagination-bullet-active {
    background: #ffffff; /* aktif → tam beyaz */
}



.hero-slider .tower {
    position: absolute;
    bottom: -5px;
    right: 50px;
    height: 700px;
    width: 250px;
    background-image: url('../img/tower-neas-clean.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    z-index: 10;
    pointer-events: auto;
    opacity: 0.85;
}

.tower .floor {
    position: absolute;
    left: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    z-index: 20;
    filter: brightness(0.9) drop-shadow(0 0 0 transparent);
}

/* 1. Kat */
.tower .floor[data-slide="1"] {
    top: 0%;
    height: 20%;
    background-image: url('../img/tower-glow-1.png');
}

.tower .floor[data-slide="1"]:hover {
    filter: brightness(1.6) drop-shadow(0 0 12px rgba(49, 49, 49, 0.8));
}

/* 2. Kat */
.tower .floor[data-slide="2"] {
    top: 0%;
    height: 30%;
    background-image: url('../img/tower-glow-2.png');
}

.tower .floor[data-slide="2"]:hover {
    filter: brightness(1.6) drop-shadow(0 0 12px rgba(49, 49, 49, 0.8));
}

/* 3. Kat */
.tower .floor[data-slide="3"] {
    top: 0%;
    height: 40%;
    background-image: url('../img/tower-glow-3.png');
}

.tower .floor[data-slide="3"]:hover {
    filter: brightness(1.6) drop-shadow(0 0 12px rgba(49, 49, 49, 0.8));
}

/* 4. Kat */
.tower .floor[data-slide="4"] {
    top: 0%;
    height: 50%;
    background-image: url('../img/tower-glow-4.png');
}

.tower .floor[data-slide="4"]:hover {
    filter: brightness(1.6) drop-shadow(0 0 12px rgba(49, 49, 49, 0.8));
}

/* 5. Kat */
.tower .floor[data-slide="5"] {
    top: 0%;
    height: 60%;
    background-image: url('../img/tower-glow-5.png');
}



.tower .floor[data-slide="5"]:hover {
    filter: brightness(1.6) drop-shadow(0 0 15px rgba(49, 49, 49, 0.8));
}

/* 5. Kat */
.tower .floor[data-slide="6"] {
    top: 0%;
    height: 60%;
    background-image: url('../img/tower-glow-6.png');
}



.tower .floor[data-slide="6"]:hover {
    filter: brightness(1.6) drop-shadow(0 0 15px rgba(250, 250, 250, 0.8));
}




.tower .floor.active {
    filter: brightness(1.6) drop-shadow(0 0 12px rgba(49, 49, 49, 0.8));
}




















.about-cards-section {
    padding: 80px 20px;
    background-color: #f5f7fa; /* Açık gri-beyaz */
}

.about-cards-section .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f1f1f; /* Antrasit */
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
}

.about-cards-section .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #145447; /* Derin gri-mavi şerit */
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.card-wrapper {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: translateY(0);
}

.card-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.card:hover {
    border-color: #4a6580;
}

.card img.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(10%) brightness(1.05);
}

.card-wrapper:hover .card-icon {
    transform: scale(1.08);
}

.card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f1f1f;
}

.card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #5e5e5e;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card a.card-button {
    display: inline-block;
    padding: 10px 22px;
    background-color: #1e6e5c;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.card a.card-button:hover {
    background-color: #145447;
    transform: scale(1.05);
}










.process-section {
  background: linear-gradient(to bottom, #f5f7fa 0%, #ffffff 100%);
  padding: 60px 0;
}

.process-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 10px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1e6e5c; /* gri-mavi kurumsal çizgi */
  margin: 16px auto 0 auto;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.step-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color:  #145447;
}

.step-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px; /* Görsel yüksekliği kadar */
}

.step-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}


.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}




.google-testimonials {
  padding: 80px 20px;
  background: #ffffff;
}

.google-testimonials .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c3e50; /* NEAS koyu mavi tonu */
}

.google-testimonials .section-subtitle {
  color: #5c6770;
  font-size: 16px;
  margin-bottom: 5px;
}

.google-testimonials .section-line {
  width: 60px;
  height: 4px;
  background: #145447; /* NEAS vurgulu çizgi rengi */
  margin: 0 auto 40px;
}

.testimonial-box {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
  max-width: 860px;
  margin: auto;
  text-align: left;
  position: relative;
}

.quote-icon {
  font-size: 64px;
  color: #145447; /* NEAS ana tonu */
  font-weight: bold;
  position: absolute;
  top: 20px;
  left: 30px;
}

.testimonial-text {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  margin-bottom: 30px;
  padding-left: 60px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 60px;
}

.testimonial-author {
  font-size: 16px;
  color: #2c3e50;
}

.testimonial-stars span {
  margin-right: 8px;
  color: #555;
}

.testimonial-stars i {
  color: #f5b700; /* NEAS vurgulu altın ton */
  margin-right: 0px;
}

.google-logo {
  width: 80px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Özel Slider Butonları */
.custom-carousel-prev,
.custom-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #145447;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.custom-carousel-prev:hover,
.custom-carousel-next:hover {
  background: #145447;
}

.custom-carousel-prev {
  left: 70px;
}

.custom-carousel-next {
  right: 70px;
}

@media (max-width: 768px) {
  .custom-carousel-prev,
  .custom-carousel-next {
    display: none;
  }
}

@media (max-width: 991px) {
  .custom-carousel-prev {
    left: 25px;
  }

  .custom-carousel-next {
    right: 25px;
  }
}

@media (max-width: 576px) {
  .custom-carousel-prev,
  .custom-carousel-next {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .custom-carousel-prev {
    left: 15px;
  }

  .custom-carousel-next {
    right: 15px;
  }
}




































/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&display=swap');

.faq_7 * {
  font-family: 'Nunito', sans-serif;
  box-sizing: border-box;
}

/* GENEL YAPI */
.faq_7 .responsive-container-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 400px;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}

.faq_7 .responsive-cell-block {
  min-height: 75px;
}

/* SOL GÖRSEL ALAN */
.faq_7 .faq-head-bg {
  background-image: url('../img/faq-sss.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  min-height: 400px;
  flex: 1 1 40%;
  border-bottom-right-radius: 80px;
  border-top-right-radius: 80px;
  
  box-shadow: 40px 0 60px -40px rgba(0, 0, 0, 0.5);
}

.faq_7 .faq-head-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.faq_7 .faq-head-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.faq_7 .text-blk.faq-heading1 {
  position: relative;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 32px; /* daha fazla boşluk */
  color: #ffffff;
  text-align: center;
}

.faq_7 .text-blk.faq-heading1::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #145447;
  margin: 12px auto 0 auto; /* ortalar */
  border-radius: 2px;
}


.faq_7 .text-blk.faq-subheading {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 0;
  color: #f0f0f0;
}

/* SAĞ TARAF - SORU KUTULARI */
.faq_7 .faq-dropdown-bg {
  padding: 80px 60px;
  background: #ffffff;
  flex: 1 1 60%;
}

.faq_7 .container-block {
  max-width: 800px;
  margin: auto;
}

.faq_7 .faq {
  background: #ffffff;
  border-left: 4px solid #145447;
  border-radius: 10px;
  margin-bottom: 24px;
  padding: 24px 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq_7 .faq:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(29, 29, 29, 0.08);
}

.faq_7 .faq-question-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 4px;
}

.faq_7 .faq-question-container:hover {
  background-color: #f5f7fa;
}

.faq_7 .text-blk.faq-questions {
  font-size: 20px;
  color: #1f1f1f;
  font-weight: 600;
}

.faq_7 .openimg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq_7 .faq.active .openimg {
  transform: rotate(180deg);
}

.faq_7 .answer-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq_7 .faq.active .answer-box {
  max-height: 400px;
}

.faq_7 .text-blk.faq-answer {
  padding-left: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .faq_7 .faq-head-bg,
  .faq_7 .faq-dropdown-bg {
    flex: 1 1 100%;
    padding: 60px 40px;
  }
  .faq_7 .faq-head-content {
    text-align: center;
    margin: 0 auto;
  }
  .faq_7 .text-blk.faq-heading1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .faq_7 .faq-head-bg,
  .faq_7 .faq-dropdown-bg {
    padding: 40px 30px;
  }
  .faq_7 .text-blk.faq-heading1 {
    font-size: 28px;
  }
  .faq_7 .text-blk.faq-subheading {
    font-size: 15px;
  }
  .faq_7 .text-blk.faq-questions {
    font-size: 17px;
  }
  .faq_7 .text-blk.faq-answer {
    font-size: 15px;
  }
}

@media (max-width: 500px) {
  .faq_7 .faq-head-bg,
  .faq_7 .faq-dropdown-bg {
    padding: 30px 20px;
  }
  .faq_7 .text-blk.faq-heading1 {
    font-size: 24px;
  }
  .faq_7 .text-blk.faq-subheading {
    font-size: 14px;
  }
  .faq_7 .text-blk.faq-questions {
    font-size: 16px;
  }
  .faq_7 .text-blk.faq-answer {
    font-size: 14px;
  }
}
















/* NEAS Footer Özel */
.neas-footer {
  background: url('../img/footer-bg-2.png') no-repeat;
  background-size: cover;
background-position: center 70%;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  position: relative;
  overflow: hidden;
}

.neas-footer .footer-wave {
  display: block;
  height: 130px;
  width: 100%;
  fill: #ffffff;
}

.neas-footer .footer-container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 60px 15px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}


.neas-footer .footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.neas-footer h2 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fffff2;
}

.neas-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.neas-footer ul li {
  margin-bottom: 8px;
}

.neas-footer ul li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.neas-footer ul li a:hover {
  color: #145447;
}

.neas-footer .footer-bottom {
  background: linear-gradient(90deg, #1E1E1E 0%, #2A2A2A 100%);
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.neas-footer .footer-left {
  max-width: 900px;
  margin: 0 auto;
}

.kodem-link {
  color: #bbb;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  background: linear-gradient(90deg, #2ecc71, #a9f7cd);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: kodemParlama 12s ease-in-out infinite;
}

@keyframes kodemParlama {
  0%, 10% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.neas-footer .neas-text-wrapper {
  display: inline-block;
  font-weight: 600;
  color: #bbb;
  position: relative;
}

.neas-footer .neas-text-wrapper::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: #145447;
  animation: underlineSweep 10s ease-in-out infinite;
}

@keyframes underlineSweep {
  0%, 10%, 100% {
    width: 0;
    opacity: 0;
  }
  30%, 60% {
    width: 100%;
    opacity: 1;
  }
  80% {
    width: 0;
    opacity: 0;
  }
}

.neas-footer .neas-text-wrapper:hover {
  color: #145447;
}

@media (max-width: 768px) {
  .neas-footer .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}

.footer-left {
  position: relative;
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
  max-width: 100%;
  isolation: isolate;
  padding-bottom: 20px;
}

/* Modern çizgi efekti */
.footer-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%; /* çok uzamasın */
  height: 1px;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.5; /* biraz daha yumuşak */
  z-index: 1;
}








.neas-features {
  background-color:  #f5f7fa;
  padding: 80px 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 150px;
  flex-wrap: wrap;
  text-align: center;
}

.feature-transition {
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  transform-origin: center;
}

.feature-transition:hover {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.06));
}

.feature-circle {
  width: 70px;
  height: 70px;
  border-radius: 30%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e6f0ec;
}

.feature-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-transition:hover .feature-circle img {
  transform: scale(1.04) rotate(0.5deg);
}

.feature-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 12px;
  line-height: 1.4;
  max-width: 180px;
}



.feature-transition:hover .feature-label::after {
  transform: scaleX(1.1);
}

.feature-desc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
  max-width: 180px;
  margin-top: 4px;
}













.neas-slogan-block {
  position: relative;
  font-family: 'Inter', sans-serif;
  max-width: 800px;
  margin: 100px auto 60px;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 32px 90px 32px 90px; /* Köşeleri özel yaptık */
  border: 1px solid rgba(50, 50, 50, 0.1);
  text-align: center;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Kenar ışık geçiş efekti */
.neas-slogan-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
  130deg,
  rgba(45, 45, 45, 0) 0%,
  rgba(45, 45, 45, 0.6) 50%,
  rgba(45, 45, 45, 0) 100%
);

  background-size: 300% 300%;
  animation: lightPulse 5s ease-in-out infinite;
  z-index: -1;
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
}


/* İçten hafif ışık parlaması */
.neas-slogan-block::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.12), transparent 70%);
  z-index: 0;
  animation: softPulse 6s ease-in-out infinite;
  border-radius: inherit;
}

@keyframes softPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.03); }
}

/* NEAS watermark */
.neas-watermark {
  position: absolute;
  bottom: 14px;
  left: 24px;
  font-size: 3.6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.035);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Metinler */
.slogan-main {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  animation: fadeInDown 0.6s ease both;
  position: relative;
  z-index: 2;
}

.slogan-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: #555;
  animation: fadeInUp 0.8s ease both;
  position: relative;
  z-index: 2;
}

/* Fade animasyonlar */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Ortak Stil */
.floating-button {
  position: fixed;
  bottom: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.floating-button img {
  width: 28px;
  height: 28px;
}

.floating-button:hover {
  transform: scale(1.05);
}

/* Telefon Butonu */
.phone-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.phone {
  left: 20px;
  background-color: #1e6e5c;
}

.phone:hover {
  background-color: #145447;
}

/* Telefon Tooltip */
.phone-tooltip {
  position: absolute;
  bottom: 70px;
  left: 0;
  background: #1a1a1a;
  color: #ccc;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  display: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  min-width: 180px;
  max-width: 220px;
}

.phone-tooltip a {
  color: #1e6e5c;
  text-decoration: none;
  font-weight: 500;
}

.phone-wrapper:hover .phone-tooltip {
  display: block;
}

/* WhatsApp Butonu */
.whatsapp {
  right: 20px;
  background-color: #1e6e5c;
}

.whatsapp:hover {
  background-color: #145447;
}

@media (max-width: 768px) {
  .phone-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
  }

  .whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }

  .phone-tooltip {
    left: 0;
    right: auto;
    text-align: left;
  }
}

