/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    font-size: 14px; 
}

.header-section {
    background-image: url('../../images/slide1.jpg'); /* Arka plan resmi */
    background-size: cover; /* Resmi tamamen kaplar */
    background-position: center; /* Resmi ortalar */
    background-repeat: no-repeat; /* Resmin tekrar etmesini engeller */
    background-color: #333338; /* Yedek arka plan rengi */
    padding: 20px 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
   
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    margin: 20px auto;
    width: 85%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2), inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.header-section .logo {
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    
}

.header-section .logo img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffae00;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobil İçin Düzenlemeler */
@media screen and (max-width: 768px) {
  
    /* Header */
    .header-section {
        position: relative;
        padding: 60px 0;
    }

    .header {
        background-color: transparent; /* Beyaz arka planı kaldırıyoruz */
        box-shadow: none; /* Gölgeyi de kaldırıyoruz */
        padding: 0; /* Padding'i sıfırlıyoruz */
        margin: 0; /* Margin'i sıfırlıyoruz */
        border-radius: 0; /* Border-radius'u sıfırlıyoruz */
    }
    
    .header-section .logo {
        position: absolute;
        left: 50%;
        top: 45px; /* Logonun konteynırdan dışarı taşması için yukarı çıkartıyoruz */
        transform: translateX(-50%);
        z-index: 2; /* Logoyu beyaz konteynırın üstüne çıkartıyoruz */
    }

    .header-section .logo img {
        width: 130px; /* Logonun boyutunu ayarlıyoruz */
        height: auto;
        border-radius: 50%; /* Yuvarlak formu koruyoruz */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Hafif bir gölge ekleyerek logoyu belirgin yapıyoruz */
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}


/* General Footer Styles */
/* Footer Genel Ayarları */
.footer {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #123456, #091e42);
    color: #ffffff;
    padding: 20px 0;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative;
}

/* Footer container */
.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Öğeleri yatayda aralarında boşluk bırakır */
    align-items: center;
    width: 100%; /* Footer genişliğini tamamen kaplar */
    max-width: 1100px; /* Maksimum genişlik ayarlanır */
    margin: 0 auto; /* Ortalamak için margin ayarı */
}

/* Footer logo */
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.footer-logo img {
    width: 110px;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

/* Footer Links */
.footer-links,
.footer-contact {
    flex: 1;
    text-align: center; /* Metinlerin ortalanması */
}

/* Footer başlıkları */
.footer-links h3,
.footer-contact h3 {
    margin-bottom: 5px;
    font-size: 13px;
    text-transform: uppercase;
    color: #ffab00;
}

/* Footer linkler */
.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin: 4px 0;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: #f0f4f8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: #ffab00;
}

/* Footer alt kısmı */
.footer-bottom {
    padding-top: 20px;
    font-size: 12px;
    text-align: center;
    width: 100%;
}

/* Mobil görünüm ayarları */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Mobilde dikey hizalama */
    }
    .footer-links, .footer-contact {
        text-align: center; /* Mobilde ortalanmış metin */
    }
}


/* WhatsApp ve Mail Sabit İkonları */
.whatsapp-icon,
.mail-icon {
    position: fixed;
    width: 70px; /* İkon boyutunu dengede tuttum */
    height: 70px;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    animation: pulse 1.5s infinite;
    right: 20px;
  
}

.whatsapp-icon {
    bottom: 40px; /* Alttan daha fazla boşluk bırak */
}

.mail-icon {
    bottom: 120px; /* Mail ikonu WhatsApp'ın üstünde ve daha yukarıda */
}

.whatsapp-icon img,
.mail-icon img {
    width: 100%; /* Beyaz çemberi daha da daraltmak için genişliği %96 yaptım */
    height: auto;
    display: block;
    margin: 0%; /* Etrafındaki boşluğu daha ince yapmak için */
    border-radius: 50%;
    
}

.whatsapp-icon:hover,
.mail-icon:hover {
    transform: scale(1.1); /* Hover'da ikonlar hafif büyür */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Animasyon: İkonlar dikkat çekici bir şekilde büyüyüp küçülür */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15); /* Büyüme */
    }
    100% {
        transform: scale(1); /* Küçülme */
    }
}

/* Mobil görünüm için medya sorgusu */
@media screen and (max-width: 768px) {
    .whatsapp-icon,
    .mail-icon {
        width: 55px;
        height: 55px;
    }
    .mail-icon {
        bottom: 100px;
    }
    .whatsapp-icon {
        bottom: 30px; /* Mobilde de alttan biraz boşluk bırak */
    }
}





/* Mobil İçin Düzenlemeler */
@media screen and (max-width: 768px) {

    /* Hamburger Menu */
    .hamburger {
        position: absolute;
        right: 60px; /* Hamburger menüyü sağa daha yakın bir konuma taşır */
        top: 50%;
        transform: translateY(-50%); /* Ortalamak için translate kullanılır */
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 35px;
        height: 30px;
        cursor: pointer;
        z-index: 200;
        transition: transform 0.3s ease; /* Hover ve tıklamada şık bir geçiş */
    }

    
    .hamburger .bar {
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
   /* Çarpı işareti için */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px); /* Çarpının birinci çubuğunu döndürüyoruz */
    background-color: #fff;
    width: 30px; /* Çubuk genişliği sabit */
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0; /* Orta çubuğu gizliyoruz */
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px); /* Çarpının üçüncü çubuğunu döndürüyoruz */
    background-color: #fff;
    width: 30px; /* Çubuk genişliği sabit */
}

    /* Sağdan Kaydırmalı Mobil Menü */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;  /* Menüyü başlangıçta ekranın solundan gizle */
        width: 50%; /* Menünün genişliğini 50% yaptım */
        height: 100vh;
        background-color: rgba(51, 51, 51, 0.9);  /* Arka plan %90 opak (biraz transparan) */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease, background-color 0.3s ease; /* Menüyü açarken geçiş efekti */
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2); /* Sol kenar için gölge */
        z-index: 150;
        text-align: left;
    }
    /* Menü aktif olduğunda transparan arka plan */
    .nav-links.active {
        left: 0;
        background-color: rgba(51, 51, 51, 0.9);  /* %90 opaklık ile transparan arka plan */
    }

/* Menüdeki linkler ve yazılar */
.nav-links li {
    margin: 15px 0;
}

.nav-links a {
    color: #ffffff;  /* Yazılar beyaz */
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fcd00c;  /* Menüdeki linklerin hover rengi */
}

/* Sayfa kaymasını engelle */
body.nav-open {
    overflow: hidden;
}
}


/* Overlay ayarları */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7); /* Arka plan hafif opak */
    z-index: 100; /* Hamburger menünün altına yerleştirilecek */
    display: none; /* Başlangıçta gizli */
}

/* Menü açık olduğunda overlay'i göster */
#overlay.active {
    display: block;
}

/* Tablet ekranlar için düzenlemeler (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* Header Section */
    .header-section {
        padding: 30px 0;  /* Daha fazla dikey boşluk ekleyelim */
    }

    .header {
        padding: 15px 30px;  /* Tablet ekranında header padding’i küçültelim */
        margin: 15px auto;    /* Margin ayarını optimize edelim */
        width: 90%;  /* Header genişliğini biraz arttıralım */
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2), inset 0px 0px 8px rgba(0, 0, 0, 0.4);
    }

    /* Logo */
    .header-section .logo {
        left: 5%;  /* Logo biraz daha sola yaklaştırıldı */
        top: 50%;  
        transform: translateY(-50%);
    }

    .header-section .logo img {
        width: 100px;  /* Logo boyutunu biraz küçültelim */
    }

    /* Navigasyon linkleri */
    .nav-links {
        justify-content: flex-end;  /* Linkleri sağa hizalayalım */
        flex: 1;  /* Logo ve linkler arasında esneklik sağlayalım */
    }

    .nav-links li {
        margin-left: 10px;  /* Linkler arasındaki boşluğu azaltalım */
    }

    .nav-links a {
        font-size: 14px;  /* Link metin boyutunu küçültelim */
        padding-bottom: 3px;  /* Alt kısımda daha az boşluk bırakalım */
    }

    .nav-links a::after {
        height: 2px;  /* Hover efekti için çizgiyi daha ince yapalım */
    }

    /* Hamburger menü */
    .hamburger {
        right: 50px;  /* Hamburger menünün konumunu sağa yaklaştıralım */
        top: 50%;  
        transform: translateY(-50%);
    }

    /* Overlay ayarları */
    #overlay {
        background-color: rgba(0, 0, 0, 0.5); /* Tablet ekranlarda overlay daha şeffaf olsun */
    }
    .text-content{
        font-size: smaller;
    }

   
}











/* =======================
   SLIDER (Final Updated CSS)
   ======================= */

:root{
  --slider-h: clamp(280px, 55vh, 560px);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.15);
  --speed: 420ms;
}

/* Slider wrapper */
.slider{
  width: min(1100px, 95vw);
  margin: clamp(18px, 4vh, 40px) auto;
  position: relative;
}

/* Viewport */
.slider__viewport{
  height: var(--slider-h);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
  outline: none;
}

/* Track */
.slider__track{
  display: flex;
  height: 100%;
  transition: transform var(--speed) ease;
  will-change: transform;
}

/* Slide */
.slide{
  position: relative;
  min-width: 100%;
  height: 100%;
  isolation: isolate;
}
.slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
/* Overlay for readability */
.slide::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(0,0,0,.55), rgba(0,0,0,.15) 55%);
  z-index: 1;
}

/* Caption */
.slide__caption{
  position: absolute; inset: auto 0 0 0;
  padding: clamp(14px, 4vw, 28px);
  z-index: 2;
  color: #fff;
  display: grid; gap: 8px;
  max-width: min(640px, 85%);
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.slide__caption h2{
  margin: 0;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.1;
  letter-spacing: .2px;
}
.slide__caption p{
  margin: 0 0 6px 0;
  opacity: .95;
  font-size: clamp(14px, 1.7vw, 18px);
}

/* Caption button */
.btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(255,255,255,.15), inset 0 0 0 1px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); opacity:.9; }
.btn:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Arrows */
.slider__btn{
  position: absolute; top: 50%;
  transform: translateY(-50%);
  inline-size: 44px; block-size: 44px;
  border: none; border-radius: 999px;
  display: grid; place-items: center;
  font-size: 28px; line-height: 1;
  cursor: pointer;
  color: #111827;

  /* Daha transparan beyaz */
  background: rgba(255,255,255,.65);
  backdrop-filter: saturate(120%) blur(2px);

  box-shadow: var(--shadow);
  transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
  z-index: 3;
}
.slider__btn:hover{
  transform: translateY(-50%) scale(1.05);
  background: rgba(255,255,255,.75);
}
.slider__btn:active{
  transform: translateY(-50%) scale(.98);
  background: rgba(255,255,255,.55);
}
.slider__btn:focus-visible{
  outline: 2px solid rgba(255,255,255,.9);
  outline-offset: 2px;
}
.slider__btn.prev{ left: 10px; }
.slider__btn.next{ right: 10px; }

/* Dots */
.slider__dots{
  display: flex; gap: 10px;
  justify-content: center; align-items: center;
  padding: 14px 8px;
}
.slider__dot{
  inline-size: 10px; block-size: 10px;
  border-radius: 999px;
  background: #cbd5e1;
  border: none; padding: 0; cursor: pointer;
  transition: width .2s ease, background-color .2s ease, transform .2s ease;
}
.slider__dot:hover{ transform: scale(1.1); }
.slider__dot[aria-selected="true"]{
  inline-size: 26px;
  background: #111827;
}

/* Touch-only devices */
@media (hover: none){
  .slider__btn{ opacity: .9; }
}

/* Responsive */
@media (max-width: 480px){
  .slider{ width: 100%; }
  .slider__btn{
    inline-size: 40px; block-size: 40px;
    font-size: 26px;
  }
  .slide__caption{ max-width: 92%; }
}












/* =========================
   USEB Section – Text + Vertical Video
   ========================= */
.useb-section {
  padding: 70px 20px;
  background: radial-gradient(circle at top left, #b9b9b9 0, #ffffff 40%, #ffffff 100%);
}

.useb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.9fr);
  gap: 32px;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

/* Left: text */
.useb-text-block {
  position: relative;
}

.useb-tagline {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 10px;
}

.useb-text-block h2 {
  font-size: 30px;
  font-weight: 700;
  color: #123456;
  margin: 0 0 18px;
  font-family: 'Poppins', sans-serif;
}

.useb-text-block p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0 0 12px;
  text-align: justify;
}

.useb-highlight-note {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.9);
  border-left: 4px solid #123456;
  border-radius: 10px;
  padding: 10px 14px;
}

/* Right: vertical video card */
.useb-video-card {
  position: relative;
  justify-self: center;
  background: radial-gradient(circle at top, #123456 0, #0b1530 50%, #020617 100%);
  border-radius: 24px;
  padding: 16px 16px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
  max-width: 280px;
  color: #e5e7eb;
}

.useb-video-badge {
  position: absolute;
  top: 12px;
  left: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(248, 250, 252, 0.95);
  color: #111827;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.45);
}

.useb-video-frame {
  margin-top: 20px;
  border-radius: 18px;
  padding: 8px;
  background: radial-gradient(circle at top, #ffffff 0, #acacac 45%, #020617 100%);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
}

.useb-video-player {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.7);
  background-color: #000;
}

/* caption under video */
.useb-video-caption {
  margin: 10px 4px 2px;
  font-size: 13px;
  line-height: 1.6;
  color: #e5e7eb;
  opacity: 0.9;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .useb-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .useb-video-card {
    max-width: 260px;
  }

  .useb-text-block h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {
  .useb-section {
    padding: 45px 15px 40px;
  }

  .useb-inner {
    text-align: left;
  }

  .useb-text-block p {
    font-size: 14px;
  }

  .useb-highlight-note {
    font-size: 13px;
  }

  .useb-video-card {
    margin: 0 auto;
  }
}













.books-section {
  padding: 37.5px 15px;
  background-color: #2b2a2a;
  text-align: center;
}

.books-section h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 30px;
}

.books-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
}

.books-description {
  font-size: 16px;
  color: #333333;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.book {
  display: flex;
  background-color: #e3d8f1;
  width: 33.75%;
  max-width: 450px;
  margin-bottom: 22.5px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  padding: 15px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: left;
}

.book:hover {
  transform: translateY(-7.5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.918);
}

.book img {
  width: 30%;
  height: auto;
  border-radius: 7.5px;
  object-fit: contain;
  margin-right: 15px;
}

.book .book-details {
  flex: 1;
}

.book .book-details h3 {
  margin-top: 0;
  font-size: 18px;
  color: #ffffff;
}

.book .book-details p {
  font-size: 14px;
  color: #272626;
  margin: 7.5px 0;
}

.book .see-book-button {
  display: inline-block;
  padding: 7.5px 15px;
  background-color: #1a3b62;
  color: white;
  font-weight: bold;
  border-radius: 7.5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.book .see-book-button:hover {
  background-color: #f0a500;
}

.book .see-book-button.disabled {
  background-color: #888;
  cursor: not-allowed;
  pointer-events: none;
}

.book:nth-child(1),
.book:nth-child(2),
.book:nth-child(3),
.book:nth-child(4),
.book:nth-child(5),
.book:nth-child(6) {
  background-color: #ffffff;
}

.see-other-books-container {
  text-align: center;
  margin-top: 30px;
}

.see-other-books-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.see-other-books-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}




/* ===== USEB COURSES — Section Base ===== */
.courses-classic {
  background: #ffffff;
  border-top: 2px solid #e5e7eb;
  padding: 60px 20px;
}
.cc-wrap {
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.cc-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #123456;
  text-align: center;
  margin: 0 0 10px;
}
.cc-lead {
  max-width: 880px;
  margin: 0 auto 22px;
  text-align: center;
  color: #4b5563;
  line-height: 1.7;
  font-size: 16px;
}

/* ===== Feature bar (Private / Group Courses) ===== */
.cc-featurebar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 10px auto 26px;
}

.cc-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f9fafb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .06);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.cc-feature:hover {
  transform: translateY(-1px);
  border-color: #d8dee6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.cc-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 18px;
}

.cc-feature-text h3 {
  margin: 0 0 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #1a3b62;
  font-weight: 700;
}
.cc-feature-text p {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* mobile */
@media (max-width: 768px) {
  .cc-featurebar {
    grid-template-columns: 1fr;
  }
}

/* Subtitle */
.cc-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 8px 0 16px;
}

/* ===== Grid / Cards ===== */
.cc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cc-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.cc-card:hover {
  transform: translateY(-4px);
}

/* Dark card variant */
.cc-card.dark {
  background: #1a1a1a;
  color: #f9fafb;
  border: 1px solid #2d2d2d;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .5);
}
.cc-card.dark:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, .7);
}

.cc-media {
  padding: 1rem 2.5rem;
  aspect-ratio: 16/9;
  background: #000;
  position: relative; /* badge için */
}
.cc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-body {
  padding: 14px 16px 18px;
}
.cc-body h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 2px 0 10px;
  color: #ffffff;
}
.cc-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
  margin: 0 0 12px;
}

/* Meta pills */
.cc-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}
.cc-meta li {
  padding: 6px 10px;
  border: 1px dashed #3f3f3f;
  border-radius: 10px;
  background: #262626;
  color: #e5e7eb;
}

/* ===== Buttons ===== */
.cc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cc-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease,
    box-shadow .2s ease, border-color .2s ease;
}

/* Light (neutral) */
.cc-btn.light {
  background: #f9fafb;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}
.cc-btn.light:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

/* WhatsApp green */
.cc-btn.whatsapp {
  background: #178f43;
  color: #fff;
  border: 1px solid #178f43;
  box-shadow: 0 3px 10px rgba(37, 211, 102, .4);
}
.cc-btn.whatsapp:hover {
  background: #178f43;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, .5);
}

/* ===== Badges ===== */
.cc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  border-radius: 999px;
  background: #ffffffee;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
  user-select: none;
}

/* Different badge styles */
.cc-badge.new {
  background: #ff4d4f;
  color: #fff;
  border-color: #ff4d4f;
  box-shadow: 0 6px 16px rgba(255, 77, 79, .45);
  animation: badge-pop .8s ease-out;
}
.cc-badge.free {
  background: #10b981;
  color: #fff;
  border-color: #0ea371;
  box-shadow: 0 6px 16px rgba(16, 185, 129, .35);
}
.cc-badge.intensive {
  background: #ffab00;
  color: #111827;
  border-color: #ffab00;
  box-shadow: 0 6px 16px rgba(255, 171, 0, .35);
}

/* Badge pop animation */
@keyframes badge-pop {
  0% { transform: scale(.7); opacity: .0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .cc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .courses-classic {
    padding: 40px 16px;
  }
  .cc-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cc-head h2 {
    font-size: 24px;
  }
  .cc-lead {
    font-size: 14px;
  }
}









/* About Section */
.about-section {
    position: relative;
    width: auto;
    height: 375px;
    overflow: hidden;
    border: 3.75px solid orange;
    border-radius: 11.25px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.658);
}

.about-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Team Section */
.team-section-circle {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.team-section-circle h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.team-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.team-circle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-items: center;
    margin-bottom: 50px;
}

.team-circle-member-link {
    text-decoration: none;
    color: inherit;
    display: block;
    
}

.team-circle-member-link h3,
.team-circle-member-link h4,
.team-circle-member-link p {
    text-decoration: none;
}

.team-circle-member {
    background-color: #f1f1f1;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.274);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 250px;
    text-align: center;
    
}

.team-circle-member-large {
    grid-column: span 2;
    max-width: 400px;
}

.team-circle-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.671);
}

.team-circle-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-circle-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    display: block;
}

.team-circle-member:hover .team-circle-img img {
    transform: scale(1.1);
}

.team-circle-member h3 {
    margin: 10px 0 5px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.team-circle-member h4 {
    margin: 5px 0 15px;
    font-size: 16px;
    color: #df9711;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-circle-member p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Test Comprehension Section */
.test-comprehension-section {
    background-color: #0a0a0a;
    padding: 50px 0;
    color: #ffffff;
    position: relative;
}

.test-comprehension-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.test-comprehension-section .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.test-comprehension-section .text-content {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
}

.test-comprehension-section .text-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.test-comprehension-section .text-content h2::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #007bff;
    top: -10px;
    left: 0;
}

.test-comprehension-section .text-content p {
    font-size: 20px;
    line-height: 1.6;
}

.test-comprehension-section .image-content {
    flex: 1;
    max-width: 45%;
    text-align: right;
}

.test-comprehension-section .image-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Mobil İçin Özel Düzenleme */
@media screen and (max-width: 768px) {

    .test-comprehension-section .content {
        flex-direction: column;
    }

    .test-comprehension-section .text-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .test-comprehension-section .image-content {
        max-width: 100%;
        text-align: center;
    }
    .test-comprehension-section .text-content p {
        font-size: 16px;
        line-height: 1.6;
    }






    
/* Mobil İçin Düzenlemeler */
@media screen and (max-width: 768px) {
/* Video Section */
.video-section {
    padding: 30px 0;
   
}

.video-wrapper {
    max-width: 85%; /* Videonun genişliğini biraz azalt */
    margin: 0 auto; /* Videoyu ortalar */
    padding: 0 10px; /* Sağ ve sol taraflara boşluk ekler */
}

.video-description {
    max-width: 100%;
    text-align: center;
    padding: 0 10px;
}
.video-content {
    flex-direction: column-reverse; /* This will place the video first */
}



/* Announcements Section */
.announcements-section .container {
padding: 0 10px;
}

/* Ensure Flex Layout for the Announcement Slider Container */
.announcement-slider-container {
display: flex;
flex-direction: column; /* Vertical alignment */
align-items: center;
justify-content: center;
}

/* Style for the Announcement Image */
.announcement-slider .announcement-slide img {
width: 100%;
height: auto;
max-width: 400px; /* You can adjust this for larger screens */
object-fit: contain; /* Ensures the image scales properly */
border-radius: 10px;
margin-bottom: 20px; /* Add margin below the image */
}

/* Align Caption and Button Below the Image */
.announcement-info {
text-align: center; /* Centers the text */
padding: 0 15px; /* Slight padding for mobile */
margin-top: 20px; /* Space between image and text */
order: 2; /* Ensure it appears below the slider */
}

/* Adjust the Caption Font and Line Height for Readability */
.announcement-caption p {
font-size: 16px;
line-height: 1.6;
color: #333;
}

/* Style for the 'See Details' Button */
.see-details-button {
display: inline-block;
width: 200px; /* Adjust this size as needed */
margin: 0 auto; /* Center the button */
margin-top: 15px; /* Space between text and button */
padding: 12px 25px;
background-color: #007bff;
color: white;
font-weight: bold;
border-radius: 50px;
text-decoration: none;
transition: background-color 0.3s ease, transform 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Hover Effect for Button */
.see-details-button:hover {
background-color: #0056b3;
transform: translateY(-3px);
}

/* Flex Layout for the Slider */
.announcement-slider {
display: flex;
justify-content: center;
align-items: center;
width: 100%;  /* Ensure it takes the full width */
max-width: 100%; /* No restriction on width */
margin-bottom: 20px; /* Space below the slider */
height: auto;
overflow: hidden;
order: 1; /* Ensure slider appears first */
}

/* Each Slide Takes Full Width */
.announcement-slide {
flex: 0 0 100%;
width: 100%;
max-width: 400px;
height: auto;
display: block;
}

/* Align Caption Text */
.announcement-caption {
text-align: center;
padding: 0 10px; /* Padding for caption */
}

/* Navigation Buttons */
.announcement-navigation {
display: flex;
justify-content: center;
}

.announcement-nav-btn {
margin-top: 20px;
cursor: pointer;
}

/* Books Section */
.books-section {
padding: 30px 10px;
}

.books-container {
display: flex;
flex-direction: column; /* Stack books vertically on smaller screens */
align-items: center;
}

.book {
width: 90%; /* Responsive width for books on smaller screens */
}

/* Media Queries for Smaller Devices (Mobile) */
@media screen and (max-width: 768px) {

/* Announcement Slider Container */
.announcement-slider-container {
display: flex;
flex-direction: column; /* Dikey sıralama */
align-items: center; /* Ortalamak için */
justify-content: center;
padding: 0 15px; /* Yanlarda biraz boşluk */
}

/* Görsel için ayarlar */
.announcement-slider .announcement-slide img {
width: 95%;
height: auto;
max-width: 400px;
object-fit: contain;
border-radius: 10px;
margin-bottom: 20px;

/* Sağ ve üstten boşluk bırakmak için */
margin-left: 25px; /* Sağdan boşluk */
margin-top: 10px; /* Üstten boşluk */

/* Metin için ayarlar */
.announcement-info {
text-align: center; /* Metni ortalar */
padding: 10 15px;
margin-top: 20px; /* Görsel ile metin arasında boşluk */
}

.announcement-caption p {
font-size: 16px;
line-height: 1.6;
color: #333;
}

/* Buton için ayarlar */
.see-details-button {
display: inline-block;
width: 200px;
margin: 0 auto;
margin-top: 15px;
padding: 12px 25px;
background-color: #007bff;
color: white;
font-weight: bold;
border-radius: 50px;
text-decoration: none;
transition: background-color 0.3s ease, transform 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.see-details-button:hover {
background-color: #0056b3;
transform: translateY(-3px);
}

/* Slider Görünümü */
.announcement-slider {
width: 100%;
max-width: 100%; 
margin-bottom: 20px;
height: auto;
overflow: hidden;
}

.announcement-slide {
width: 100%;
height: auto;
display: block;
margin-bottom: 20px;
}

/* Navigasyon Düğmeleri */
.announcement-navigation {
display: flex;
justify-content: center;
margin-top: 20px;
}

.announcement-nav-btn {
margin: 0 5px;
cursor: pointer;
}

/* About Section */
.about-section {
    height: auto;
    padding: 20px;
    border: 2px solid orange;
    border-radius: 10px;
}

/* Team Section */
.team-section-circle {
    padding: 40px 10px;
}

.team-circle-grid {
    gap: 20px;
}

.team-circle-member {
    max-width: 90%;
}





}}}}




