.home-seo-text {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.home-seo-text summary {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #333;
}

.home-seo-text details p {
  margin-top: 10px;
  color: #666;
  line-height: 1.6;
}

a {
  text-decoration: none !important;
  border-bottom: none !important;
}
.mod-articles-item-content a::before {
    content: "→";    /* başına simge ekler */
    margin-right: 3px;
    color: #005BB5;   /* simge rengi */
}
/* Eğer Module Class Suffix olarak 'custom-blue' eklediyseniz */
.moduletable .module-title {
    background-color: #005BB5;
    color: #FFFFFF;
    padding: 5px 8px;  /* padding azaltıldı */
    border-radius: 4px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    word-wrap: break-word;  /* uzun kelimeler bile alt satıra geçer */
}



/*********************************************************************************************/


/* HERO DIŞ KAPSAYICI */
.hero-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;

  /* boxed layout kırma */
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}
/* ARKA PLAN – TAM GENİŞLİK */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/banner2.png");
  background-repeat: no-repeat;
  /* 'right top' yerine 'right 0' veya 'center 0' kullanarak dikeyde en tepeye sabitleriz */
  background-position: center 15%; /* center 40% */
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
  
}
html, body {
  overflow-x: hidden;
}

/* ASTROID CONTAINER İÇERİĞİ */
.hero-inner {
  position: relative;
  z-index: 2;

  max-width: 1140px;   /* ASTROID container genişliği */
  margin: 0 auto;      /* ORTALAR */
  padding: 120px 20px;

  color: #ffffff;
}

/* BAŞLIK */
.hero-inner h1 {
  font-size: 48px;
  margin-bottom: 20px;

}

/* METİN */
/*.hero-inner p {
  font-size: 18px;
  margin-bottom: 30px;
}*/
.hero-inner p {
  font-size: clamp(30px, 2vw, 44px); /* daha büyük ve okunaklı */
  margin-bottom: 30px;
  line-height: 1.6;      /* okunabilirliği artırır */
  max-width: 720px;       /* satır uzunluğunu kontrol eder */
}
/* BUTONLAR */
.hero-buttons {
  display: flex;
  gap: 16px;
  /*margin-top: 10px; /* eskiden yoktu, butonları aşağı itiyor */*/
}

/*.hero-buttons a {
  padding: 14px 28px;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
}*/
.hero-buttons a {
  padding: 18px 36px;   /* buton boyutu büyütüldü */
  border-radius: 18px;
  font-weight: 600;
  font-size: 18px;      /* yazı büyütüldü */
  letter-spacing: 0.3px; /* premium hissi için hafif boşluk */
  text-decoration: none;
}

.btn-primary {
  background: #ff7a18;
  color: #ffffff;
 /* border: 2px solid #ffffff; /* bu kod çerçeve yapar */
}

.btn-outline {
/*   border: 2px solid #ffffff;  /* bu kod çerçeve yapar */
  background: #1e3a8a; /* bu kodu kaldırırsan içi şeffaf olur */
  color: #ffffff;
}
/* HERO ÜST + ALT BOŞLUK SIFIRLAMA */
.hero-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* BUTON HOVER EFEKTİ */
.hero-buttons a {
  transition: all 0.3s ease;
}

/* Turuncu buton */
.hero-buttons .btn-primary:hover {
    background-color: #ffffff;
  color: #1e3a8a;
}

/* Çerçeveli buton */
.hero-buttons .btn-outline:hover {
  background-color: #ffffff;
  color: #1e3a8a; /* koyu mavi – akademik */
}
/* YAZI EFEKTİ VE PARILTI*/
.hero-inner {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

/* Başlık */
.hero-inner h1 {
  position: relative;
  font-size: 48px;
  margin-bottom: 20px;
  color: #1e3a8a;
  animation: fadeInUp 1.2s ease forwards;
}

/* Parıldama yıldızları */
.hero-inner h1::before,
.hero-inner h1::after {
  content: "✦";
  position: absolute;
  font-size: 18px;
  color: white;
  opacity: 0;
  animation: sparkle 2.5s infinite ease-in-out;
  pointer-events: none;
  z-index: 3;
}

/* 1. yıldız – Eğitimde kelimesindeki "e" üstü */
.hero-inner h1::before {
  top: 142%;
  left: 35%;
  animation-delay: 0s;
}

/* 2. yıldız – Geleceğe kelimesinin sonundaki "d" */
.hero-inner h1::after {
  top: -15px;
  left: 15%;
  animation-delay: 1.3s;
}

/* Parlama animasyonu */
@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.4) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.4) rotate(20deg);
  }
}

/* Metin */
.hero-inner p {
  font-size: 22px;
  margin-bottom: 30px;
  color: #ffffff;
  opacity: 0;
  animation: fadeInUp 1.6s ease forwards;

   /* ✅ Zemin rengi */
/*  display: inline-block; /* inline-block olmalı, animasyon için */
/*  background-color: #ff3366; /* turuncu yarı şeffaf zemin */
/*  padding: 4px 8px; /* zemin etrafında boşluk */
/*  border-radius: 4px; /* premium yumuşak köşeler */

  
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-inner p {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpPremium 1.2s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: 0.3s;
}
.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpPremium 1.2s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: 0.6s;
}
@keyframes fadeUpPremium {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







/* HERO ALTINDAN PROGRAM KARTLARINI YUKARI TAŞIR */
.programs3 {
  position: relative;
  z-index: 10;       /* hero-bg:1 / hero-inner:2 üstüne çıkar */
  margin-top: -260px; /* 🔥 ihtiyacına göre ayarla (-70 / -100px deneyebilirsin) */
}

/* PROGRAM KARTLARINI GÖRSEL OLARAK GÜÇLENDİR */
.programs3 > div {
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  padding: 0px;
  margin: 0px;
}
/*MODÜL BAŞLIĞINI YUKARI TAŞI*/
/* 1️⃣ Kapsayıcıyı relative yap */
/*#ct-381539181673929 .content-top-position {
  position: relative;
}*/

/* 2️⃣ Başlığı kartların üstüne taşı - absolute ile */
/*#ct-381539181673929 .module-title {
  position: absolute;
  top: -40px;           /* kartların üstüne çıkma mesafesi */
 /* left: 15%;
  transform: translateX(-50%);
  z-index: 15;
  text-align: left;
}*/

/* Responsive: mobilde taşmayı azalt */
@media (max-width: 768px) {
  .programs {
    margin-top: 0px;
  }

  .programs > div {
    margin: 10px auto;
    width: 90%; /* Mobilde kartlar full genişlik yerine biraz boşluk bırak */
  }
}
/* =========================
   📱 MOBİL HERO AYARLARI
   ========================= */
@media (max-width: 768px) {

  /* HERO YÜKSEKLİĞİ */
  .hero-section {
    min-height: 520px; /* telefonda çok uzun olmasın */
  }

  /* ARKA PLAN – MOBİLDE DAHA ORTALI */
  .hero-bg {
    background-position: center top;
    background-size: cover;
  }

  /* İÇERİĞİ YUKARI AL */
  .hero-inner {
    padding: 40px 20px 100px; /* üst az, alt biraz fazla */
    text-align: left;       /* mobilde ortala */
  }

  /* BAŞLIK */
  .hero-inner h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  /* METİN */
  .hero-inner p {
    font-size: 16px;
  }

  /* BUTONLAR ALT ALTA */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
 }
/* 📱 MOBİLDE HOVER RENKLERINI SABITLE */
@media (max-width: 768px) {

  /* Turuncu buton mobilde sabit kalsın */
  .hero-buttons .btn-primary {
    background-color: #ff7a18 !important;
    color: #ffffff !important;
  }

  /* Mavi buton mobilde sabit kalsın */
  .hero-buttons .btn-outline {
    background-color: #1e3a8a !important;
    color: #ffffff !important;
  }

  /* Mobilde hover efektini iptal et */
  .hero-buttons a:hover {
    background-color: inherit;
    color: inherit;
  }
}

/* 4 Sütunlu Yapı (Örn: Sınıf Seviyeleri) */
.programs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

/* 3 Sütunlu Yapı (Örn: Avantajlar/Özellikler) */
.programs2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Sütun ayarı */
  gap: 25px;
  margin-bottom: 40px;
}

/* Ortak Kart Tasarımı */
.programs div, .programs2 div {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform 0.3s ease;
}

.programs div:hover, .programs2 div:hover {
  transform: translateY(-5px);
}
/* DÖNERLİ KART***************************************************************************************************************/
/* programs3 – Responsive Grid */
.programs3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

/* Tablet */
@media (max-width: 1024px) {
  .programs3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobil */
@media (max-width: 600px) {
  .programs3 {
    grid-template-columns: 1fr;
  }
 /* HERO ALTINDAN PROGRAM KARTLARINI YUKARI TAŞIR */
.programs3 {
  position: relative;
  z-index: 10;       /* hero-bg:1 / hero-inner:2 üstüne çıkar */
  margin-top: -70px; /* 🔥 ihtiyacına göre ayarla (-70 / -100px deneyebilirsin) */
}

/* PROGRAM KARTLARINI GÖRSEL OLARAK GÜÇLENDİR */
.programs3 > div {
  background: transparent;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  padding: 20px;
  margin: 0px;
}
}
/********************************************************************************************************************/
/* Kart Konteyner */
.programs3 .card {
  perspective: 1200px;
}

/* Dönen Alan */
.programs3 .card-inner {
  position: relative;
  width: 100%;
  height: 300px ;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  cursor: pointer;
}

/* Tıklanınca */
.programs3 .card.active .card-inner {
  transform: rotateY(180deg);
}

/* Ön + Arka Ortak */
.programs3 .card-front,
.programs3 .card-back {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Arka Yüz */
.programs3 .card-back {
  transform: rotateY(180deg);
}

/* Sadece ön yüzde hover efekti */
.programs3 .card-front:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease; /* yumuşak hareket için */
}



/* --- MOBİL UYUMLULUK --- */

/* Tablet Görünümü (1024px altı) */
@media (max-width: 768px) {
  .programs {
    grid-template-columns: repeat(2, 1fr); /* 4'lü yapı 2+2 olur */
  }
  .programs2 {
    grid-template-columns: repeat(2, 1fr); /* 3'lü yapı 2+1 olur */
  }
}

/* Telefon Görünümü (768px altı) */
@media (max-width: 768px) {
  .programs, .programs2 {
    grid-template-columns: 1fr; /* Hepsi tek sütun alt alta iner */
   padding: 0 15px;
  }
}
/* =========================
   ÖĞRENCİ YORUMLARI
   ========================= */
/* Testimonials Section */
.testimonials-section {
  padding: 30px 20px;
  background-color: #f5f7fb;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

/* Slider Alanı */
.testimonial-slider {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

/* Kaydırılan Alan */
.testimonial-track {
  display: flex;
  gap: 30px;
  animation: slideTestimonials 40s infinite ease-in-out;
}

/* Kart */
.testimonial-card {
  min-width: 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
}

.testimonial-card strong {
  display: block;
  color: #1e3a8a;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}

/* SLIDE ANİMASYONU – 10 KART */
/*@keyframes slideTestimonials {
  0%   { transform: translateX(0); }
  10%  { transform: translateX(0); }

  20%  { transform: translateX(-330px); }
  30%  { transform: translateX(-660px); }

  40%  { transform: translateX(-990px); }
  50%  { transform: translateX(-1320px); }

  60%  { transform: translateX(-1650px); }
  70%  { transform: translateX(-1980px); }

  80%  { transform: translateX(-2310px); }
  100% { transform: translateX(-2640px); }
    
}*/@keyframes slideTestimonials {
  0%   { transform: translateX(0); }
  10%  { transform: translateX(-330px); }
  20%  { transform: translateX(-660px); }
  30%  { transform: translateX(-990px); }
  40%  { transform: translateX(-1320px); }
  50%  { transform: translateX(-1650px); }
  60%  { transform: translateX(-1980px); }
  70%  { transform: translateX(-2310px); }
  80%  { transform: translateX(-2640px); }
  90%  { transform: translateX(-2970px); } /* 10. kart için */
  100% { transform: translateX(0); }
/* MOBİL
@media (max-width: 768px) {
  .testimonial-track {
    animation: none;
    flex-direction: column;
  }

  .testimonial-card {
    margin-bottom: 20px;
  }
} */
/* =========================
   📱 MOBİL HERO – SON HAL
   ========================= */
@media (max-width: 768px) {

  .hero-section {
    min-height: 520px;
  }

  .hero-bg {
    background-position: center top;
    background-size: cover;
  }

  .hero-inner {
    padding: 30px 20px 100px;
    text-align: left;
  }

  .hero-inner h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero-inner p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: left;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  /* 🔒 MOBİLDE BUTON RENKLERİNİ KİLİTLE */
  .hero-buttons .btn-primary,
  .hero-buttons .btn-primary:hover,
  .hero-buttons .btn-primary:active,
  .hero-buttons .btn-primary:focus {
    background-color: #ff7a18;
    color: #ffffff;
  }

  .hero-buttons .btn-outline,
  .hero-buttons .btn-outline:hover,
  .hero-buttons .btn-outline:active,
  .hero-buttons .btn-outline:focus {
    background-color: #1e3a8a;
    color: #ffffff;
  }
}
/* =========================
   MOBİL – 10 KART (TEK TEK)
========================= */
/* Örnek: 10 kart, her biri 330px genişliğinde (gap dahil), container 330px genişliğinde */
@keyframes slideTestimonials {
  0%   { transform: translateX(0); }
  10%  { transform: translateX(-330px); }
  20%  { transform: translateX(-660px); }
  30%  { transform: translateX(-990px); }
  40%  { transform: translateX(-1320px); }
  50%  { transform: translateX(-1650px); }
  60%  { transform: translateX(-1980px); }
  70%  { transform: translateX(-2310px); }
  80%  { transform: translateX(-2640px); }
  90%  { transform: translateX(-2970px); } /* 10. kart için */
  100% { transform: translateX(0); }
}



/**********************************************************************************************************************************/
.hero-bg {
  position: relative;
  z-index: 1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background-image: url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
