html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    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: 70px;
    transition: height 0.3s ease;
}
.site-header.scrolled .logo img {
    height: 60px;
}

/* 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;
  }
}































.about-cards-section {
  padding: 60px 20px;
  max-width: 1300px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a1a;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #12394b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(18, 57, 75, 0.25);
}

/* Grid düzeni */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Kart sarmalayıcı */
.card-wrapper {
  background: transparent;
  border-radius: 20px;
  perspective: 1500px; /* 3D efekti için perspektif */
}

/* Kart ana gövdesi */
.card {
  background: linear-gradient(145deg, #e0f2f1, #a7c4c1);
  border-radius: 20px;
  box-shadow:
    6px 6px 15px rgba(0, 0, 0, 0.1),
    -6px -6px 15px rgba(255, 255, 255, 0.7);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

/* Hoverda 3D hafif yükselme ve gölge */
.card:hover {
  transform: translateY(-15px) rotateX(3deg) rotateY(3deg);
  box-shadow:
    12px 12px 25px rgba(0, 0, 0, 0.15),
    -12px -12px 25px rgba(255, 255, 255, 0.85);
}

/* Kart görseli */
.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0;
  box-shadow:
    inset 0 0 25px rgba(255, 255, 255, 0.25),
    inset 0 -10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  z-index: 1;
  position: relative;
}

.card:hover .card-image {
  transform: scale(1.07);
}

/* Kart içerik alanı */
.card-content {
  padding: 28px 24px 36px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
  box-shadow:
    inset 0 4px 15px rgba(255, 255, 255, 0.9),
    inset 0 -4px 10px rgba(255, 255, 255, 0.6);
  border-radius: 0 0 20px 20px;
  backdrop-filter: saturate(150%) blur(12px);
}

/* Başlık */
.card-content h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #0d4a55; /* Koyu deniz mavisi */
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* Alt başlık */
.card-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #3c6970; /* Hafif grimsim mavi */
  font-style: italic;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* Açıklama */
.card-content p {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5e5e; /* Orta gri-mavi */
  margin-bottom: 28px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Buton */
.card-button {
  align-self: flex-start;
  padding: 12px 36px;
  background-color: #0d6f7a;
  color: #e6f2f2;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(13, 111, 122, 0.7);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: 1.5px solid #127b89;
  letter-spacing: 0.03em;
}

.card-button:hover,
.card-button:focus {
  background-color: #0a565d;
  box-shadow: 0 8px 28px rgba(10, 86, 93, 0.9);
  border-color: #0a565d;
  outline: none;
}

/* Responsive */

/* Tablet */
@media (max-width: 991px) {
  .about-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Mobil */
@media (max-width: 480px) {
  .about-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



.kurumsal-stats.clean {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 100px 60px; /* dikey ve yatay boşluk ayrı tanımlandı */
  margin-top: 60px;
  margin-bottom: 30px;
  padding: 20px;
  text-align: center;
}

.kurumsal-stats.clean .stat {
  width: 160px;
  max-width: 90%;
}

.kurumsal-stats.clean .stat-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}

.kurumsal-stats.clean .stat-number {
  font-size: 34px;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}

.kurumsal-stats.clean .plus {
  font-size: 20px;
  font-weight: 600;
  color: #1d3557;
}

.kurumsal-stats.clean .label-stat {
  font-size: 15px;
  color: #6c757d;
  font-weight: 500;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .kurumsal-stats.clean {
    flex-direction: row;
    justify-content: center;
    gap: 40px 30px;
    padding: 10px 0;
  }

  .kurumsal-stats.clean .stat {
    width: 140px;
  }

  .kurumsal-stats.clean .stat-number {
    font-size: 28px;
  }

  .kurumsal-stats.clean .plus {
    font-size: 18px;
  }

  .kurumsal-stats.clean .label-stat {
    font-size: 14px;
  }
}










.process-section {
  background: linear-gradient(to bottom, #f2f4f7, #ffffff);
  padding: 90px 20px;
  text-align: center;
  color: #333;
  font-family: "Segoe UI", sans-serif;
}

.process-section .section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.process-section .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  max-width: 720px;
  margin: 0 auto 55px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.step-box {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #dee2e6;
  width: 290px;
  padding: 35px 22px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.step-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: none;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: #1d3557;
  margin-bottom: 14px;
  border-bottom: 2px solid #dee2e6;
  padding-bottom: 8px;
}

.step-desc {
  font-size: 15px;
  color: #495057;
  line-height: 1.6;
  padding: 0 2px;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
}






.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: #4a6580; /* 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: 100%;

  margin: auto;
  text-align: left;
  position: relative;
}

.quote-icon {
  font-size: 64px;
  color: #4a6580; /* 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: #4a6580;
  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: #36526b;
}

.custom-carousel-prev {
  left: 15px;
}

.custom-carousel-next {
  right: 0px;
}

@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;
  }
}








































@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'); /* güncel görsel */
  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;
  width: 1000px;
  background-color: #1c1c1c;
  box-shadow: 40px 0 60px -40px rgba(0, 0, 0, 0.5);
}

.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 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.faq_7 .text-blk.faq-heading1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #00b7b1; /* TURKUAZ çizgi */
  margin: 14px auto 0 auto;
  border-radius: 2px;
}

.faq_7 .text-blk.faq-subheading {
  font-size: 18px;
  line-height: 1.7;
  color: #f1f1f1;
}

/* SAĞ TARAF - SORULAR */
.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 #00b7b1;
  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: 19px;
  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: 16px;
  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;
  }
}
















.footer-left {
  position: relative;
  margin-top: 50px;
  padding: 30px 15px 20px;
  text-align: center;
  max-width: 100%;
  background: #1e1e1e; /* Gri arka plan */
  isolation: isolate;
  color: #bbb; /* Yazı rengi */
}

/* Modern çizgi efekti */
.footer-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  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;
  z-index: 1;
}

/* İç yazılar için */
.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin: 6px 0;
  z-index: 2;
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-left {
    padding: 25px 10px 15px;
  }

  .footer-left p {
    font-size: 13px;
  }
}

.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;
  }
}

.kodem-link:hover {
  opacity: 0.85;
}


.neas-text-wrapper {
  display: inline-block;
  font-weight: 600;
  color: #bbb;
  position: relative;
}

.neas-text-wrapper::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: #4a6580;
  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-text-wrapper:hover {
  color: #4a6580;
}









.neas-features {
  background-color: #f5f7fa;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 150px;
  flex-wrap: wrap;
  text-align: center;
}

.feature-transition {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
  transform-origin: center;
}

.feature-transition:hover {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.08));
}

.feature-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  
  transition: box-shadow 0.3s ease;
}

.feature-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-transition:hover .feature-circle img {
  transform: scale(1.06) rotate(1deg);
}

.feature-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.25px;
  margin-top: 16px;
  display: block;
  white-space: normal;
  max-width: 200px;
  position: relative;
  animation: fadeInDown 0.5s ease both;
}

.feature-label::after {
  content: "";
  display: block;
  width: 48px;
  height: 5px;
  margin: 10px auto 0;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.feature-transition:hover .feature-label::after {
  transform: scaleX(1.15);
}

.feature-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  max-width: 220px;
  text-align: center;
  animation: fadeIn 0.6s ease both;
}













.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); }
}






/* === HERO BÖLÜMÜ === */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1280px;
  background-image: url('../img/bg-full.png');
 background-size: cover;
background-position: center center;
  background-repeat: no-repeat;
  background-color: #EAE3DA;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 6%;
  box-sizing: border-box;
  scroll-snap-align: start;
}

/* === HERO YAZI BLOĞU === */
.hero-text {
  max-width: 580px;
  color: #FDFBF6; /* Açık krem yazı */
  z-index: 2;
  padding: 20px 30px;
  border-radius: 12px;
}

/* === BAŞLIK === */
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  white-space: nowrap; /* Tek satırda kalır */
  color: #FDFBF6;
}

/* === ALT METİN === */
.hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #E8E8E8;
}




@media (max-width: 768px) {
  .hero-text {
    max-width: 100%;
    padding: 15px 20px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
    white-space: normal; /* Mobilde taşmayı engeller */
  }

  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }
}


/* === BUTON === */
.cta-button {
  background-color: #2FB9BD; /* Soft turkuaz */
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #1C8F91;
}

/* === HEADER === */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  box-sizing: border-box;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FDFBF6;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #FDFBF6;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #FDFBF6;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}







/* Genel kutu modeli */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Body ayarları */
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  background-color: #f0f2f5;
  color: #333;
  overflow-x: hidden;
}

/* Fotoğraf kredisi */
.credit {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  user-select: none;
  z-index: 10;
}

/* Kartların container'ı */
.options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  width: 90vw;
  max-width: 900px;
  height: 400px;
  margin: 40px 0;
  gap: 10px;
}

/* Her bir kart */
.option {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  margin: 0;
  border-radius: 30px;
  background: var(--optionBackground, #E6E9ED);
  background-size: auto 120%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition:
    flex-grow 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95),
    margin 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95),
    border-radius 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  box-shadow:
    inset 0 -40px 40px -40px rgba(0, 0, 0, 0.4);
}

/* Aktif kart */
.option.active {
  flex-grow: 6;
  margin: 0 10px;
  border-radius: 40px;
  background-size: auto 100%;
  box-shadow:
    inset 0 -120px 120px -120px rgba(0, 0, 0, 1),
    inset 0 -120px 120px -100px rgba(0, 0, 0, 0.6);
}

/* Kart alt gölge */
.shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  box-shadow:
    inset 0 -120px 120px -120px rgba(0, 0, 0, 1),
    inset 0 -120px 120px -100px rgba(0, 0, 0, 0.6);
  transition: box-shadow 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  pointer-events: none;
}

/* Kart etiket alanı */
.label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  color: white;
  user-select: none;
  transition: bottom 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

/* Aktif olmayan kart etiket küçültme */
.option:not(.active) .label {
  bottom: 10px;
  left: 10px;
  opacity: 0.7;
}

/* İkon stili */
.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--optionBackground);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  user-select: none;
}

/* Bilgi kutusu */
.info {
  margin-left: 12px;
  overflow: hidden;
}

/* Bilgi metin geçişi */
.info > div {
  white-space: nowrap;
  position: relative;
  left: 20px;
  opacity: 0;
  transition:
    opacity 0.5s ease,
    left 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

/* Aktif kart bilgisi görünür */
.option.active .info > div {
  left: 0;
  opacity: 1;
}

/* Responsive - orta ekran */
@media (max-width: 800px) {
  .options {
    height: 300px;
  }
}

/* Responsive - küçük ekran */
@media (max-width: 600px) {
  .options {
    height: 240px;
  }
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: #2e7d68; /* TekSöz yeşil tonu */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  user-select: none;
  box-shadow: 0 2px 6px rgba(46, 125, 104, 0.7);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.option.active .icon {
  background-color: #2e7d68;
  color: white;
  box-shadow: 0 4px 12px rgba(46, 125, 104, 0.9);
}










.kapi-vitrini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-top: -90px;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Üst ve alt dekoratif mavi şerit */
.kapi-vitrini::before,
.kapi-vitrini::after {
  content: '';
  position: absolute;
  left: 0;
  margin-top: 260px;
  margin-bottom: 260px;
  width: 100%;
  height: 30px;
  background: linear-gradient(to right, #3a4a57);
  z-index: 1;
}

.kapi-vitrini::before {
  top: 0px;
}

.kapi-vitrini::after {
  bottom: 0;
}

.kapi-sol {
  flex: 0 0 auto;
  margin-left: 0;
  z-index: 2;
}

.kapi-sol img {
  width: 340px;
  height: 450px;
}

.kapi-sag {
  display: flex;
  margin-right: 0px;
  z-index: 2;
}

.kapi-sag img {
  width: 400px;
  height: 450px;
}

/* Geçiş görünümü: Dikey degrade */
.kapi-sag-divider {
  width: 18px;
  height: 450px;
  background-color: #3a4a57;
}

.divider-text {
  writing-mode: vertical-rl;
  top: 50%;
  left: 50%;
  transform: rotate(180deg);
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #ffffffa0;
  letter-spacing: 0.25rem;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 3px rgba(255,255,255,0.1);
  user-select: none;
}

.kapi-box-deco {
  position: relative;
  width: 100%;
  height: 650px;
  background: linear-gradient(145deg, #2e3944, #3a4a57); /* Antrasit geçişli */
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 2rem;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.2),
    0 6px 6px rgba(0, 0, 0, 0.25),
    inset 0 0 10px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  overflow: hidden;
  z-index: 2;
}

.kapi-box-deco::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 60%);
  animation: pulse-bg 10s infinite;
  z-index: 1;
}

@keyframes pulse-bg {
  0% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.4; }
  100% { transform: scale(1); opacity: 0.2; }
}

.kapi-box-deco h2 {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  margin-bottom: 1rem;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.kapi-box-deco p {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: #e4e4e4;
  font-family: 'Poppins', sans-serif;
  max-width: 700px;
  line-height: 1.6;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .kapi-vitrini {
    display: none !important;
  }
}

















.slider-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  font-family: 'Poppins', sans-serif;
  padding: -20px;
}

.slider {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.stack {
  position: relative;
  width: 300px;
  height: 400px;
}

.stack .card {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.6s ease, opacity 0.6s;
  opacity: 0.1;
  z-index: 0;
}

.stack .card.active {
  opacity: 1;
  z-index: 5;
  transform: rotate(0deg);
}

.stack .card:nth-child(2) {
  transform: rotate(5deg);
  z-index: 4;
}
.stack .card:nth-child(3) {
  transform: rotate(-5deg);
  z-index: 3;
}
.stack .card:nth-child(4) {
  transform: rotate(10deg);
  z-index: 2;
}
.stack .card:nth-child(5) {
  transform: rotate(-10deg);
  z-index: 1;
}
.stack .card:nth-child(6) {
  transform: rotate(15deg);
  z-index: 0;
}

.card-info {
  flex: 1;
  color: #7c99ce;
}

.card-info h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.card-info em {
  font-style: normal;
  color: #a1a1aa;
  display: block;
  margin-bottom: 1.5rem;
}

.counter {
  font-size: 0.9rem;
  color: #7c99ce;
  margin-bottom: 0.5rem;
  display: block;
}

.slider-nav {
  display: flex;
  gap: 1rem;
}

.slider-nav button {
  background: #e5e7eb;
  color: #111827;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-nav button:hover {
  background: #cbd5e1;
}


.section-intro {
  padding: 3rem 1rem 1rem;
  background-color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.intro-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1rem;
}

.intro-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.intro-title span {
  color: #017E90; /* TekSöz rengine uygun mavi ton */
  background: linear-gradient(120deg, #006290 0%, #00acc1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-divider {
  width: 60px;
  height: 4px;
  background: #00acc1;
  border-radius: 4px;
  margin: 0.6rem auto 1rem auto;
}

.intro-text {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  font-weight: 400;
  margin: 0 auto;
  max-width: max-content;
}










































:root {
  --theme-col: #017E90; /* TekSöz rengi */
}

/* Genel footer alanı */
footer {
  background-color: #111010;
  color: #e5e5e5;
  margin-top: 40px;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

.f-item-con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin: auto;
}

/* Başlık ve açıklama alanı */
footer .app-name {
  color: white;
  border-left: 4px solid var(--theme-col);
  padding-left: 1rem;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.app-name .app-initial {
  color: var(--theme-col);
}

footer .app-info {
  flex: 1 1 250px;
}

footer .app-info p {
  padding-left: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Sütun başlıkları */
.footer-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  border-left: 4px solid var(--theme-col);
  padding-left: 0.75rem;
  color: white;
}

/* Liste linkleri */
footer ul {
  list-style: none;
  padding-left: 0.75rem;
  margin-top: 0.5rem;
}

footer ul li {
  margin: 6px 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: #cfcfcf;
  transition: color 0.2s ease;
}

footer ul li:hover {
  color: white;
}

/* Form alanı */
.g-i-t {
  flex: 1 1 300px;
}

.g-i-t form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.5rem;
}

form .g-inp {
  background: #1e1e1e;
  border: none;
  padding: 10px;
  color: white;
  font-size: 0.9rem;
  border-radius: 4px;
}

form .g-inp::placeholder {
  color: #aaa;
}

.g-inp textarea {
  height: 120px;
  resize: none;
}

/* Gönder butonu */
.f-btn {
  padding: 10px;
  background-color: var(--theme-col);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.f-btn:hover {
  background-color: #016275;
}

/* Footer alt kısmı */
.footer-left {
  text-align: center;
  border-top: 1px solid #2c2c2c;
  padding: 20px 0 10px 0; /* üst 20px, alt 10px padding */
  margin: 0;
  margin-top:60px; 
  margin-bottom: 0;             /* margin yok */
  font-size: 0.85rem;
  color: #aaa;
}


.footer-kodem a {
  color: var(--theme-col);
  text-decoration: none;
}

.footer-kodem a:hover {
  text-decoration: underline;
}

/* Responsive yapı */
@media (max-width: 768px) {
  .f-item-con {
    flex-direction: column;
    gap: 30px;
  }

  .footer-title,
  footer .app-name {
    font-size: 1.3rem;
  }

  form .g-inp,
  .f-btn {
    font-size: 0.95rem;
  }
}











.news-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.news-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.news-header .see-all {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: black;
  text-decoration: none;
}

.news-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.news-card {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
}

.news-card img {
  width: 320px;
  height: 240px;
  display: block;
  margin-bottom: 20px;
}

.news-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.news-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.btn.btn-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #1ca9a9;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  margin-top: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.btn.btn-link::after {
  content: "→";
  display: inline-block;
  margin-left: 6px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn.btn-link:hover {
  color: #0d2a3f;
}

.btn.btn-link:hover::after {
  transform: translateX(4px);
}


@media (max-width: 992px) {
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .news-header h2 {
    font-size: 26px;
  }

  .news-card {
    max-width: 100%;
  }

  .news-card img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .news-cards {
    flex-direction: column;
    gap: 40px;
  }

  .news-header {
    align-items: center;
    text-align: center;
  }

  .news-header .see-all {
    font-size: 13px;
  }

  .news-header h2 {
    font-size: 24px;
  }

  .news-card h3 {
    font-size: 15px;
  }

  .news-card p {
    font-size: 13px;
  }
}








