@import url("components/about.css");
@import url("components/contact-section.css");
@import url("components/counter.css");
@import url("components/faq-section.css");
@import url("components/footer.css");
@import url("components/features.css");
@import url("components/results-partnerships.css");
@import url("components/hero-section.css");
@import url("components/menu-toggle.css");
@import url("components/navbar.css");
@import url("components/partner-logos.css");
@import url("components/responsive.css");
@import url("components/section-container.css");
@import url("components/team.css");
@import url("components/team-member.css");
@import url("components/testimonial.css");
@import url("components/timeline.css");
@import url("components/vision-mission.css");
@import url("components/whoweare.css");




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }

  :root {
    --yesil-color: #d5de23;

    --yesil2-color: #bdd630;
    --yesil3-color: #8b9e21;
  }

  .section-container{
    width: 77%;
    margin: 0 auto;
  }

  @media (max-width: 576px){
    .section-container{
      width: 100%;
    }
    .testimonials-section .section-container{
      width: 100%;
    }
  }

  @media (max-width: 576px) {
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: var(--yesil-color);
      color: white;
      border: none;
      padding: 1.2rem;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Görsel iyileştirme */
    }
    .prev-btn {
      left: -20px; 
    }
    .next-btn {
      right: -20px; 
    }
  }

  /* .vision-mission .section-container{
    width: 100%;
  } */
/* --- Modal Stilleri --- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 80px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: block;
  opacity: 1;
}

.modal-content {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  margin: 2% auto;
  padding: 40px 50px;
  width: 90%;
  max-width: 900px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: scale(0.9);
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal.active .modal-content {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.3s ease;
  border: none;
  outline: none;
}

.close-btn:hover {
  color: var(--yesil2-color);
}

#modalTitle {
  font-size: 2.2em;
  color: var(--yesil3-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--yesil-color);
  font-weight: 600;
  letter-spacing: -0.5px;
}

#modalText {
  font-size: 1.1em;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Soru-Cevap Stilleri */
.modal-qa {
  margin-bottom: 35px;
  padding: 25px;
  background: rgba(213, 222, 35, 0.03);
  border-radius: 15px;
  border-left: 4px solid var(--yesil2-color);
  position: relative;
}

.modal-qa:hover {
  background: rgba(213, 222, 35, 0.03);
  transform: none;
}

.modal-question {
  font-weight: 600;
  color: var(--yesil3-color);
  font-size: 1.3em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  letter-spacing: -0.5px;
}

.modal-answer {
  color: #444;
  line-height: 1.8;
  font-size: 1.05em;
}

.modal-highlight {
  color: var(--yesil3-color);
  font-weight: 500;
  background: linear-gradient(transparent 60%, rgba(213, 222, 35, 0.2) 40%);
  padding: 0 4px;
}

.modal-bullet-points {
  margin-top: 15px;
}

.modal-bullet-points li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.modal-bullet-points li::before {
  content: '•';
  color: var(--yesil2-color);
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .modal {
    padding-top: 60px;
  } 
  
  .modal-content {
    padding: 30px;
    margin: 5% 15px;
    width: auto;
  }

  #modalTitle {
    font-size: 1.5em;
  }

  #modalText {
    font-size: 0.95em;
    line-height: 1.6;
  }

  .modal-qa {
    padding: 15px;
    margin-bottom: 20px;
  }

  .modal-question {
    font-size: 1em;
  }

  .modal-answer {
    font-size: 0.9em;
    padding-left: 38px;
  }

  .modal-bullet-points {
    padding-left: 38px;
  }

  .section-header h2 {
    font-size: 1.8em;
  }

  .section-header span {
    font-size: 0.9em;
  }

  .timeline-header h2 {
    font-size: 1.6em;
  }

  .timeline-description {
    font-size: 0.9em;
  }

  .milestone-info h3 {
    font-size: 1.1em;
  }

  .milestone-info p {
    font-size: 0.85em;
  }

  .faq-title h3 {
    font-size: 1em;
  }

  .faq-answer p {
    font-size: 0.9em;
  }
}

@media (max-width: 576px){
  .faq-title h3 {
    font-size: 0.8rem;
  }

  .timeline-header{
    padding: 0;
  }

}


/* Timeline Section Yeni Tasarım */
.timeline-section {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.timeline-header {
  text-align: left;
  margin-bottom: 60px;
}

.timeline-header h2 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.timeline-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

.roadmap {
  position: relative;
  padding: 40px 0;
}

.roadmap-line {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.roadmap-line::before {
  content: '';
  position: absolute;
  width: 6px;
  background: linear-gradient(180deg, var(--yesil-color), var(--yesil3-color));
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.milestone {
  position: relative;
  margin-bottom: 60px;
  width: 50%;
  padding: 0 40px;
}

.milestone-left {
  left: 0;
  padding-right: 50px;
}

.milestone-right {
  left: 50%;
  padding-left: 50px;
}

.milestone-dot {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  border: 4px solid var(--yesil2-color);
  border-radius: 50%;
  top: 15px;
  right: -12.5px;
  z-index: 2;
  transition: all 0.3s ease;
}

.milestone-right .milestone-dot {
  left: -12.5px;
}

.milestone-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
}

/* Sol taraftaki kartlar için üçgen (normal görünüm) */
.milestone-content::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 20px;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #fff;
}

/* Sağ taraftaki kartlar için üçgen (normal görünüm) */
.milestone-right .milestone-content::before {
  right: auto;
  left: -15px;
  border-width: 10px 15px 10px 0;
  border-color: transparent #fff transparent transparent;
}

.milestone-year {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--yesil3-color);
  margin-bottom: 10px;
}

.milestone-info h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.milestone-info p {
  color: #666;
  line-height: 1.5;
}

.milestone:hover .milestone-dot {
  transform: scale(1.3);
  background: var(--yesil2-color);
  border-color: #fff;
  box-shadow: 0 0 15px rgba(189, 214, 48, 0.5);
}

.milestone:hover .milestone-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .roadmap-line::before {
    left: 30px;
  }
  
  .milestone {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
  }
  
  .milestone-left,
  .milestone-right {
    left: 0;
  }
  
  .milestone-dot {
    left: 18px !important;
    right: auto !important;
  }
  
  /* Mobil görünümde tüm kartlar için üçgen */
  .milestone-content::before,
  .milestone-right .milestone-content::before {
    left: -15px;
    right: auto;
    border-width: 10px 15px 10px 0;
    border-color: transparent #fff transparent transparent;
  }

  .milestone-content {
    margin-left: 0;
  }
}

/* === Ultra Modern Navbar Entegreli Dil Degistirici === */
.language-switcher {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 4px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.language-switcher:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  padding: 6px;
}

.lang-btn {
  position: relative;
  background: transparent;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  min-width: 42px;
  text-align: center;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  color: #fff;
  transform: scale(1.1);
  padding: 10px 18px;
}

.lang-btn.active {
  background: linear-gradient(135deg, #d5de23 0%, #bdd630 100%);
  color: #2d3436;
  box-shadow: 
    0 4px 15px rgba(213, 222, 35, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.lang-btn.active:hover {
  background: linear-gradient(135deg, #bdd630 0%, #d5de23 100%);
  box-shadow: 
    0 6px 20px rgba(213, 222, 35, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: scale(1.15);
}

/* Mobil Dil Degistirici */
.mobile-lang-switcher {
  margin: 20px 0;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-switcher .lang-btn {
  color: #fff;
  min-width: 50px;
  padding: 12px 20px;
}

.mobile-lang-switcher .lang-btn.active {
  background: linear-gradient(135deg, #d5de23 0%, #bdd630 100%);
  color: #2d3436;
}

/* Responsive Tasarim */
@media (max-width: 768px) {
  .navbar-right {
    display: none;
  }
  
  .language-switcher {
    display: flex;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px;
    border-radius: 20px;
  }

  .lang-btn {
    padding: 8px 14px;
    font-size: 13px;
    min-width: 38px;
  }

  .lang-btn:hover {
    padding: 9px 16px;
    transform: scale(1.08);
  }

  .lang-btn.active:hover {
    transform: scale(1.12);
  }
}

@media (max-width: 480px) {
  .mobile-lang-switcher {
    margin: 15px 0;
    padding: 2px;
    border-radius: 18px;
  }

  .mobile-lang-switcher .lang-btn {
    padding: 10px 16px;
    font-size: 12px;
    min-width: 44px;
  }

  .mobile-lang-switcher .lang-btn:hover {
    padding: 11px 18px;
    transform: scale(1.05);
  }
}

@media (max-width: 360px) {
  .mobile-lang-switcher {
    margin: 12px 0;
    padding: 2px;
    border-radius: 16px;
  }

  .mobile-lang-switcher .lang-btn {
    padding: 8px 14px;
    font-size: 11px;
    min-width: 40px;
  }

  .mobile-lang-switcher .lang-btn:hover {
    padding: 9px 16px;
    transform: scale(1.03);
  }
}
