/* =====================================================
   NGBB Site İyileştirmeleri
   Mevcut style.css üzerine eklenen katman.
   Geri almak için bu dosyayı include'dan kaldır.
   ===================================================== */

/* ---- Genel ---- */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

img {
  transition: opacity 0.3s ease;
}

/* "fix bar" metnini gizle */
.color-bar .col-sm-1,
.color-bar .col-xs-2 {
  font-size: 0;
  color: transparent;
  overflow: hidden;
}


/* ---- Kartlar (thumbnailContent) ---- */
.thumbnailContent {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
  border: none !important;
}

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

.thumbnailContent img {
  transition: transform 0.4s ease;
}

.thumbnailContent:hover img {
  transform: scale(1.04);
}

.thumbnailContent .caption {
  padding: 14px 16px 16px;
  border-top-width: 4px !important;
}

.thumbnailContent .caption h4 {
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 8px;
}

.thumbnailContent .caption p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
}


/* ---- Hızlı bağlantı butonları (Galeri, Eğitim vb.) ---- */
.sectionLink {
  border-radius: 10px !important;
  margin: 4px 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.sectionLink:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18) !important;
  filter: brightness(1.05);
  text-decoration: none;
}

.sectionLink .linkText {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}


/* ---- Feature ikonları ---- */
.featuresContent {
  padding: 14px 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
  margin-bottom: 20px;
}

.featuresContent:hover {
  background: #f9f9f9;
}

.featuresContent .media-left {
  border-radius: 50% !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.featuresContent:hover .media-left {
  transform: scale(1.12) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2) !important;
}

.featuresContent .media-body h4 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;
}

.featuresContent .media-body p {
  font-size: 13px;
  color: #777;
  line-height: 1.55;
}


/* ---- Butonlar ---- */
.btn-primary {
  border-radius: 8px !important;
  letter-spacing: 0.3px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease !important;
}

.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(234, 112, 102, 0.4) !important;
}

.btn-primary:active {
  transform: translateY(0) !important;
}


/* ---- Ziyaretçi sayaçları (countUp) ---- */
.countUpSection .counter {
  border: 3px solid rgba(255,255,255,0.7) !important;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.12), 0 4px 20px rgba(0,0,0,0.2);
  font-weight: 700;
  letter-spacing: -1px;
  transition: transform 0.3s ease;
}

.countUpSection .counter:hover {
  transform: scale(1.06);
}

.countUpSection .counterInfo {
  border-radius: 8px !important;
  font-size: 12px !important;
  height: auto !important;
  padding: 7px 8px !important;
  line-height: 1.4 !important;
  display: block !important;
  width: 100% !important;
  max-width: 145px;
  margin: 0 auto;
  text-align: center;
}

.countUpSection .sectionTitleSmall h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}


/* ---- Bölüm başlıkları ---- */
.sectionTitle h2 span:not(.shape) {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.sectionTitle .shape {
  height: 3px;
  border-radius: 2px;
}


/* ---- Tanıtım bandı (Gönüllü bölümü) ---- */
.promotionWrapper .promotionInfo h2 {
  font-size: 26px;
  font-weight: 800;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.promotionWrapper .btn-primary {
  background-color: #fff !important;
  color: #ea7066 !important;
  font-weight: 700;
}

.promotionWrapper .btn-primary:hover {
  background-color: #f0c24b !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2) !important;
}


/* ---- Duyuru popup ---- */
#overlay {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

#notification {
  border-radius: 14px !important;
  border: none !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25) !important;
  padding: 28px !important;
  animation: slideUp 0.35s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

#notification h4 {
  font-size: 17px;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 14px !important;
}

#notification p {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
}

#close-btn {
  width: 30px;
  height: 30px;
  border-radius: 50% !important;
  background: #f0f0f0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px !important;
  transition: background 0.2s ease;
  top: 14px !important;
  right: 14px !important;
}

#close-btn:hover {
  background: #e0e0e0 !important;
}


/* ---- Mobil iyileştirmeler ---- */
@media (max-width: 767px) {

  .sectionLink {
    margin-bottom: 8px;
    border-radius: 8px !important;
  }

  .thumbnailContent {
    margin-bottom: 20px;
  }

  .thumbnailContent:hover {
    transform: none;
  }

  .countUpSection {
    padding: 50px 0 !important;
  }

  .countUpSection .counter {
    width: 120px !important;
    height: 120px !important;
    line-height: 120px !important;
    font-size: 26px !important;
  }

  .countUpSection .counterInfo {
    max-width: 120px;
    font-size: 11px !important;
  }

  .promotionWrapper .promotionInfo h2 {
    font-size: 20px;
  }

  .featuresContent {
    padding: 10px 6px;
  }

  section.mainContent,
  section.whiteSection {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

@media (max-width: 480px) {
  .thumbnailContent .caption h4 {
    font-size: 14px;
  }

  .sectionLink .linkText {
    font-size: 13px;
  }
}


/* ---- Lazy image fade-in ---- */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}


/* ===================================================================
   MODERN TASARIM GÜNCELLEMESİ — Haziran 2026
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ngbb-1: #f0c24b;
  --ngbb-2: #b5d56a;
  --ngbb-3: #ea7066;
  --ngbb-4: #84bed6;
  --ngbb-5: #a597e7;
  --ngbb-6: #ea77ad;
  --ngbb-dark: #2f3c43;
}

h1, h2, h3, h4, h5, h6,
.navbar-default .navbar-nav > li > a,
.sectionTitle h2,
.footerTitle h4 {
  font-family: 'Inter', 'Open Sans', sans-serif;
}

/* ---- Renk bandı: ince şerit ---- */
.color-bar.top-fixed {
  height: 5px !important;
  overflow: hidden;
}
.color-bar.top-fixed .row { height: 5px; }
.color-bar.top-fixed .col-sm-1,
.color-bar.top-fixed .col-xs-2 {
  height: 5px !important;
  padding: 0 !important;
}

/* ---- Üst bilgi barı ---- */
.top-info-bar {
  padding: 9px 0 !important;
  font-size: 13px !important;
  background-color: #003244 !important;
}
.top-info-bar .fa {
  font-size: 11px !important;
  margin-right: 4px !important;
}
.top-info-bar .row {
  display: flex !important;
  align-items: center !important;
}
.top-info-bar .topList,
.top-info-bar .functionList {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}
.top-info-bar .topList li,
.top-info-bar .topList li a,
.top-info-bar .functionList > li,
.top-info-bar .functionList > li a {
  color: rgba(255, 255, 255, 0.8) !important;
}
/* Üst bar ikonları: içi boş (outline) — eskiden yalnızca anasayfada (body.home-page)
   böyleydi, artık tüm sayfalarda. Sarı daireli dolgu KALDIRILDI. */
.top-info-bar .topList li i,
.top-info-bar .functionList > li i {
  background-color: transparent !important;
  color: #f0c24b !important;
  font-size: 15px !important;
}
.top-info-bar .topList li i.ti-outline {
  color: transparent !important;
  -webkit-text-stroke: 1.4px #f0c24b;
  text-stroke: 1.4px #f0c24b;
}

/* ---- Navbar ---- */
#menuBar {
  border: none !important;
  border-top: none !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  background: #fff !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
}
/* style.css .navbar-default.lightHeader'a "position:relative; top:3px" ve sert
   "box-shadow: 0 4px 0" bir çizgi veriyor → navbar'ın üstünde 3px'lik bir arka
   plan şeridi + altında keskin gri bir çizgi kalıyordu. Sıfırlıyoruz. */
#menuBar.lightHeader {
  top: 0 !important;
  transition: none !important;
}
#menuBar .navbar-collapse {
  box-shadow: none !important;
  border: 0 !important;
}
#menuBar.bb-fixed-header {
  box-shadow: 0 4px 20px rgba(0,0,0,0.14) !important;
}
@media (min-width: 768px) {
  #menuBar.bb-fixed-header .navbar-default .navbar-nav > li > a,
  #menuBar.bb-fixed-header .navbar-nav > li > a {
    height: 70px !important;
  }
}

/* İkon dairelerini kaldır */
.navbar-default .navbar-nav > li > a > i {
  width: auto !important;
  height: auto !important;
  line-height: inherit !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: 13px !important;
  display: inline !important;
  margin: 0 5px 0 0 !important;
  vertical-align: middle;
  color: inherit !important;
}

/* Menü linkleri — yatay (ikon + metin yan yana) */
@media (min-width: 768px) {
  .navbar-default .navbar-nav > li > a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 15px !important;
    height: 110px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.9px !important;
    text-transform: uppercase !important;
    position: relative;
    transition: color 0.18s ease !important;
  }
  .navbar-default .navbar-nav > li > a > span {
    width: auto !important;
    padding: 0 !important;
    display: inline !important;
    line-height: inherit !important;
  }
}

/* Metin rengi: koyu gri */
.navbar-default .navbar-nav > li > a {
  color: #3a3a3a !important;
}

/* Hover alt çizgi — tek marka rengi (yeşil), rainbow yerine */
@media (min-width: 768px) {
  .navbar-default .navbar-nav > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 6px;
    right: 6px;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: #40916c;
    transform: scaleX(0);
    transition: transform 0.2s ease;
  }

  .navbar-default .navbar-nav > li:hover > a::before,
  .navbar-default .navbar-nav > li.open > a::before,
  .navbar-default .navbar-nav > li.active > a::before {
    transform: scaleX(1);
  }
  .navbar-default .navbar-nav > li:hover > a,
  .navbar-default .navbar-nav > li.open > a {
    color: #40916c !important;
  }
}

/* Dropdown: üstten tek marka rengi çizgi + yumuşak gölge (rainbow yerine) */
.navbar-nav > li > .dropdown-menu {
  border-top: 3px solid #40916c !important;
  border-radius: 0 0 14px 14px !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
}

.navbar-nav > li > .dropdown-menu li a {
  padding: 8px 18px !important;
  font-size: 13.5px !important;
  font-family: 'Inter', 'Open Sans', sans-serif !important;
  transition: background 0.15s ease !important;
}

/* Mega dropdown eski first-child başlıkları (geriye dönük uyumluluk) */
.navbar-nav > li.megaDropMenu .dropdown-menu .list-unstyled > li:first-child:not([class]) {
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #1b4332 !important;
  padding: 4px 0 8px !important;
  border-bottom: 2px solid #74c69d !important;
  margin-bottom: 8px !important;
}

/* ---- Testimonial / bölüm kartları ---- */
.testimonialContent {
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.testimonialContent:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 36px rgba(0,0,0,0.18) !important;
}
.testimonialContent .caption h4 {
  font-weight: 700 !important;
  font-size: 15px !important;
  font-family: 'Inter', 'Open Sans', sans-serif !important;
}
.testimonialContent .caption p {
  font-size: 13px !important;
  line-height: 1.65 !important;
  opacity: 0.92 !important;
}

/* ---- Footer ---- */
.footerInfoArea {
  padding: 52px 0 40px !important;
}
.footerTitle h4 {
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid rgba(255,255,255,0.18) !important;
  margin-bottom: 18px !important;
}
.footerList li { margin-bottom: 9px !important; }
.footerList li a {
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.75) !important;
  transition: color 0.18s ease, padding-left 0.18s ease !important;
}
.footerList li a:hover {
  color: #fff !important;
  padding-left: 5px !important;
  text-decoration: none !important;
}
.footerList li a i {
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,0.5) !important;
  margin-right: 6px !important;
  font-size: 11px !important;
}
.footerInfo p {
  color: rgba(255,255,255,0.78) !important;
  font-size: 13.5px !important;
  line-height: 1.65 !important;
  margin-bottom: 16px !important;
}

/* Copyright + sosyal medya */
.copyRight {
  background: rgba(0,0,0,0.28) !important;
  padding: 14px 0 !important;
}
.copyRightText p {
  font-size: 13px !important;
  line-height: 40px !important;
  color: rgba(255,255,255,0.65) !important;
  margin: 0 !important;
}
.copyRightText p a {
  color: rgba(255,255,255,0.85) !important;
}
.copyRight .list-inline { margin: 0 !important; }
.copyRight .list-inline li { padding: 0 3px !important; }
.copyRight .list-inline li a {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  color: #fff !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.copyRight .list-inline li a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3) !important;
  text-decoration: none !important;
}

/* ---- Mobil: navbar icon ayarları ---- */
@media (max-width: 767px) {
  .navbar-default .navbar-nav > li > a > i {
    margin-right: 8px !important;
  }
  .color-bar.top-fixed { height: 4px !important; }
  .color-bar.top-fixed .col-xs-2 { height: 4px !important; }
}

/* ============================================================
   Modern Page Title Section (tüm iç sayfalar)
   ============================================================ */
.pageTitleSection {
  background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.25)), url("../img/page-title/page-title-bg.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  padding: 70px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}
.pageTitleSection::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.pageTitleSection::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 20%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  pointer-events: none;
}
.pageTitleInfo {
  position: relative;
  z-index: 1;
}
.pageTitleSection h2 {
  font-family: 'Playfair Display', 'Dosis', serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 10px !important;
  letter-spacing: -0.3px !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.18) !important;
}
.pageTitleSection .breadcrumb {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.pageTitleSection .breadcrumb li {
  font-size: 13px !important;
  color: rgba(255,255,255,.6) !important;
}
.pageTitleSection .breadcrumb li a {
  color: rgba(255,255,255,.75) !important;
  text-decoration: none !important;
  transition: color .18s ease !important;
}
.pageTitleSection .breadcrumb li a:hover { color: #fff !important; }
.pageTitleSection .breadcrumb > li + li::before {
  color: rgba(255,255,255,.4) !important;
  content: "›  " !important;
}
.pageTitleSection .breadcrumb > .active {
  color: rgba(255,255,255,.85) !important;
}

/* İçerik sayfaları genel font */
body {
  font-family: 'Inter', 'Open Sans', sans-serif !important;
  /* Tema tabanı 14px'ti; miras alan tüm gövde metnini (footer, listeler, kartlar,
     form yardım metinleri vb.) bir tık büyütmek için 15.5px'e çekiyoruz. */
  font-size: 15.5px;
}
p { font-size: 15.5px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Open Sans', sans-serif !important;
}

/* Section başlıkları modernize */
.sectionTitle h2,
.section-title h2,
.homeTitle h2 {
  font-family: 'Playfair Display', serif !important;
  color: #1b4332 !important;
}
.sectionTitle .colorTxt,
.homeTitle .colorTxt {
  color: #40916c !important;
}

/* ============================================================
   İÇ SAYFA — Genel Modern İçerik Stilleri
   ============================================================ */

/* İçerik bölümü */
.ngbb-section {
  padding: 60px 0;
  background: #fff;
}
.ngbb-section-alt {
  padding: 60px 0;
  background: #f8faf8;
}

/* Modern metin bloğu */
.ngbb-prose {
  max-width: 780px;
}
.ngbb-prose p {
  font-size: 16.5px;
  line-height: 1.85;
  color: #3a3a3a;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.ngbb-prose h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 22px;
  color: #1b4332;
  margin: 36px 0 14px;
  font-weight: 700;
}

/* Çocuk eğitimleri detay sayfaları (bahcivanco, faydali, yazkamp) — büyük yazı */
.ge-detail-page .ngbb-prose p {
  font-size: 19px;
  line-height: 1.75;
}
.ge-detail-page .ngbb-prose h3 {
  font-size: 26px;
}
.ge-detail-page .ngbb-inner-title h2 {
  font-size: 34px !important;
}

/* Zaman çizelgesi tarzı metin satırları */
.ngbb-timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.ngbb-timeline-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b4332, #40916c);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 15px;
}
.ngbb-timeline-body p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.8;
  color: #3a3a3a;
}

/* Shared text size for small info/list boxes (institution lists, check-item boxes, etc.)
   so they read at the same size as the rest of the site instead of ad-hoc 0.9rem values. */
.ngbb-box-text {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ================================================================
   NGBB içerik utility sınıfları
   Onlarca sayfada elle tekrarlanan inline stil bloklarının tek kaynağı.
   Buradan değiştirince tüm iç sayfalar güncellenir.
   ================================================================ */

/* Playfair başlık, marka yeşili (margin'i sayfada ayarla ya da .ngbb-h + inline margin) */
.ngbb-h { font-family: 'Playfair Display', serif; color: #1b4332; }

/* Beyaz kart — yuvarlak köşe + yumuşak gölge */
.ngbb-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

/* Yuvarlak köşeli görsel + belirgin gölge (tam genişlik) */
.ngbb-img-shadow {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

/* Sol yeşil çizgili bilgi satırı (ikon + metin yan yana) */
.ngbb-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f8faf8;
  border-radius: 8px;
  border-left: 3px solid #40916c;
}

/* Sol yeşil çizgili not/uyarı kutusu */
.ngbb-note {
  background: #f8faf8;
  border-radius: 8px;
  padding: 10px 14px;
  border-left: 3px solid #40916c;
  color: #4a5568;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Küçük koyu yeşil etiket/rozet (genelde <a>) */
.ngbb-badge {
  display: inline-block;
  background: #1b4332;
  color: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.ngbb-badge:hover { color: #fff; opacity: .92; }

/* İnce alt çizgili liste öğesi */
.ngbb-li-line {
  padding: 8px 0;
  border-bottom: 1px solid #e8f0eb;
}

/* Modern fotoğraf grid */
.ngbb-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.ngbb-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: #e8f0eb;
}
.ngbb-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ngbb-photo-card:hover img { transform: scale(1.06); }
.ngbb-photo-card .ngbb-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,67,50,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
}
.ngbb-photo-card:hover .ngbb-photo-overlay {
  background: rgba(27,67,50,.45);
}
.ngbb-photo-card .ngbb-photo-overlay a {
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}
.ngbb-photo-card:hover .ngbb-photo-overlay a {
  opacity: 1;
  transform: scale(1);
}

/* Stat / bilgi kartları */
.ngbb-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.ngbb-info-card {
  background: #f0f7f0;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  border-left: 4px solid #40916c;
}
.ngbb-info-card .nic-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #1b4332;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.ngbb-info-card .nic-label {
  font-size: 13px;
  color: #5a7a68;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Bölüm başlığı (iç sayfalar) */
.ngbb-inner-title {
  margin-bottom: 36px;
}
.ngbb-inner-title h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 30px !important;
  color: #1b4332 !important;
  font-weight: 700 !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
}
.ngbb-inner-title p {
  font-size: 15px;
  color: #6b8f78;
  margin: 0;
  line-height: 1.6;
}
.ngbb-inner-title .ngbb-divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, #40916c, #74c69d);
  border-radius: 2px;
  margin: 12px 0 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ngbb-photo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .ngbb-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ngbb-section, .ngbb-section-alt { padding: 40px 0; }
  .ngbb-inner-title h2 { font-size: 24px !important; }
}

/* ---- Alt alta sıralanan resim+yazı satırları (tüm Ada sayfalarının alt alanları) ---- */
.ngbb-row-cards { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.ngbb-row-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  overflow: hidden;
  padding: 20px;
}
.ngbb-row-card img {
  width: 280px;
  min-width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.ngbb-row-card-body { padding: 0; }
.ngbb-row-card-body h4 {
  font-family: 'Playfair Display', serif !important;
  font-size: 18px;
  font-weight: 700;
  color: #a97c0f;
  margin: 0 0 10px;
}
.ngbb-row-card-body p {
  font-size: 14.5px;
  color: #5a6a5f;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .ngbb-row-card { flex-direction: column; }
  .ngbb-row-card img { width: 100%; min-width: 100%; height: 200px; }
  .ngbb-row-card-body { padding: 16px 20px 20px; }
}

/* ---- Bölümler renkli kartlar ---- */
.bolum-col {
  padding-top: 48px;
  margin-bottom: 24px;
}
.bolum-card {
  border-radius: 18px;
  padding: 64px 28px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 28px rgba(0,0,0,.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bolum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.bolum-card-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.14);
  border: 4px solid transparent;
}
.bolum-card-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.45rem;
  font-weight: 700;
  color: #c0392b;
  margin: 0 0 14px;
  line-height: 1.3;
}
.bolum-card-text {
  color: rgba(0,0,0,.5);
  font-size: 0.92rem;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Bölüm detay satırları (ikon + metin) */
.bolum-detail-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.bolum-detail-icon-col {
  text-align: center;
}
.bolum-detail-icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---- Çalışanlarımız eşit yükseklik grid ---- */
.staff-grid {
  display: flex;
  flex-wrap: wrap;
}
.staff-grid > .col-sm-3 {
  display: flex;
  flex-direction: column;
}
.staff-grid > .col-sm-3 > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.staff-grid > .col-sm-3 > div > div:last-child {
  flex: 1;
}

/* ================================================================
   NAVBAR DROPDOWN — Modern Tasarım (tüm menüler için ortak)
   ================================================================ */

/* Dropdown ikonları */
.dropdown-menu li a i.fa {
  width: 18px;
  color: #40916c;
  text-align: center;
  flex-shrink: 0;
}

/* Submenu ok ikonu */
.submenu-arrow {
  font-size: 9px !important;
  color: #aaa !important;
  width: auto !important;
}

/* Dropdown-submenu-down hover */
.dropdown-submenu-down { position: relative; }
.dropdown-submenu-down > .custom-menu { display: none; }
.dropdown-submenu-down:hover > .custom-menu { display: block !important; }

/* Mega menü bölüm başlığı */
.mega-section-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #1b4332 !important;
  padding: 2px 0 8px !important;
  border-bottom: 2px solid #74c69d !important;
  margin-bottom: 8px !important;
  display: block;
}

/* Mega menü kategori ayırıcısı (tıklanamaz) */
.mega-section-head {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #40916c;
  padding: 10px 0 3px;
  margin-top: 6px;
  border-top: 1px solid #e8f5ec;
  display: block;
}


@media (min-width: 768px) {

  /* ---- singleDrop (Bahçemiz, Hakkımızda, Bize Katılın, İletişim) ---- */
  .navbar-nav > li.dropdown.singleDrop > .dropdown-menu {
    min-width: 240px;
    padding: 8px 0;
    border: none !important;
    border-top: 3px solid #40916c !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(27,67,50,.18) !important;
    background: #fff;
    margin-top: 0;
  }

  .navbar-nav > li.dropdown.singleDrop > .dropdown-menu > li > a {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px !important;
    font-weight: 500;
    color: #2d3a32 !important;
    padding: 10px 20px !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    transition: background 0.18s, color 0.18s, padding-left 0.18s;
  }

  .navbar-nav > li.dropdown.singleDrop > .dropdown-menu > li > a:hover,
  .navbar-nav > li.dropdown.singleDrop > .dropdown-menu > li > a:focus {
    background: #f0f7f2 !important;
    color: #1b4332 !important;
    padding-left: 26px !important;
    text-decoration: none;
  }

  /* Submenu tetikleyici (Bölümler ve Çalışanlarımız) */
  .navbar-nav > li.dropdown.singleDrop > .dropdown-menu > li.dropdown-submenu-down > a {
    font-weight: 600 !important;
    color: #1b4332 !important;
    justify-content: space-between !important;
    background: #f7fbf8 !important;
    border-top: 1px solid #e8f0eb;
    margin-top: 4px;
  }
  .navbar-nav > li.dropdown.singleDrop > .dropdown-menu > li.dropdown-submenu-down:hover > a {
    background: #e8f5ec !important;
  }

  /* ---- megaDropMenu (Bilim, Eğitim, Yayınlar) ---- */
  .navbar-nav > li.dropdown.megaDropMenu > .dropdown-menu {
    padding: 20px 8px !important;
    border-radius: 0 0 14px 14px !important;
    box-shadow: 0 12px 40px rgba(27,67,50,.15) !important;
    background: #fff !important;
  }

  .navbar-nav > li.dropdown.megaDropMenu > .dropdown-menu > li[class*="col-"] {
    border-right: 1px solid #edf3ef;
    padding: 0 18px !important;
  }
  .navbar-nav > li.dropdown.megaDropMenu > .dropdown-menu > li[class*="col-"]:last-child {
    border-right: none;
  }

  /* Mega menü genel link */
  .navbar-nav > li.dropdown.megaDropMenu > .dropdown-menu li > a {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #3d4d42 !important;
    padding: 5px 0 !important;
    line-height: 1.5;
    transition: color 0.15s, padding-left 0.15s !important;
  }
  .navbar-nav > li.dropdown.megaDropMenu > .dropdown-menu li > a:hover {
    color: #1b4332 !important;
    padding-left: 6px !important;
    text-decoration: none !important;
    background: transparent !important;
  }

  /* Mega menü dropdown-submenu-down tetikleyici */
  .navbar-nav > li.dropdown.megaDropMenu .dropdown-submenu-down > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-weight: 500 !important;
    color: #2d5a3d !important;
  }
  .navbar-nav > li.dropdown.megaDropMenu .dropdown-submenu-down > a:hover {
    color: #1b4332 !important;
    padding-left: 6px !important;
    background: transparent !important;
  }

  /* Flyout paneli (custom-menu) */
  .dropdown-submenu-down .custom-menu {
    position: absolute;
    border: none !important;
    border-left: 3px solid #40916c !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 28px rgba(27,67,50,.18) !important;
    padding: 8px 0 !important;
    min-width: 210px !important;
    top: -8px !important;
    left: calc(100% + 4px) !important;
    z-index: 9999;
    background: #fff;
  }

  .dropdown-submenu-down .custom-menu li > a {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #3d4d42 !important;
    padding: 8px 16px !important;
    display: block !important;
    transition: background 0.15s, color 0.15s, padding-left 0.15s !important;
  }
  .dropdown-submenu-down .custom-menu li > a:hover {
    background: #f0f7f2 !important;
    color: #1b4332 !important;
    padding-left: 22px !important;
    text-decoration: none !important;
  }

  /* Flyout içi bölüm başlığı */
  .dropdown-submenu-down .custom-menu li.custom-menu-section {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #40916c;
    padding: 10px 16px 4px;
    border-top: 1px solid #edf3ef;
    margin-top: 4px;
    pointer-events: none;
    cursor: default;
  }
  .dropdown-submenu-down .custom-menu li.custom-menu-section:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 6px;
  }

  /* Flyout içi alt başlık (Günlük / Uzun Süreli) */
  .dropdown-submenu-down .custom-menu li.custom-menu-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    color: #d4a017;
    padding: 6px 16px 3px 20px;
    pointer-events: none;
    cursor: default;
  }

}

/* ============================================================
   GİRİŞ / KAYIT / ŞİFRE SIFIRLAMA — Auth Sayfaları
   ============================================================ */
.ngbb-auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(27,67,50,.12);
  border-top: 4px solid #40916c;
}
.ngbb-auth-card .form-group,
.ngbb-account-page .form-group { margin-bottom: 18px; }
.ngbb-auth-card label,
.ngbb-account-page label {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #1b4332;
  margin-bottom: 6px;
}
.ngbb-auth-card .form-control,
.ngbb-account-page .form-control {
  height: 44px;
  border-radius: 8px;
  border: 1px solid #d7e4da;
  box-shadow: none;
  font-size: 14.5px;
}
.ngbb-auth-card .form-control:focus,
.ngbb-account-page .form-control:focus {
  border-color: #40916c;
  box-shadow: 0 0 0 3px rgba(64,145,108,.15);
}
.ngbb-auth-card .btn-ngbb-primary,
.ngbb-account-page .btn-ngbb-primary {
  width: 100%;
  height: 46px;
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  transition: opacity .2s ease;
}
.ngbb-auth-card .btn-ngbb-primary:hover,
.ngbb-auth-card .btn-ngbb-primary:focus,
.ngbb-account-page .btn-ngbb-primary:hover,
.ngbb-account-page .btn-ngbb-primary:focus {
  opacity: .9;
  color: #fff;
}
.ngbb-auth-card .ngbb-auth-links {
  margin-top: 20px;
  text-align: center;
  font-size: 13.5px;
}
.ngbb-auth-card .ngbb-auth-links a { color: #2d6a4f; font-weight: 600; }
.ngbb-auth-alert {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ngbb-auth-alert-error {
  background: #fdecea;
  color: #a03030;
  border-left: 4px solid #c0392b;
}
.ngbb-auth-alert-success {
  background: #eaf6ee;
  color: #1b4332;
  border-left: 4px solid #40916c;
}
.ngbb-auth-alert .ngbb-alert-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* ---- Giriş / Kayıt / Şifremi Unuttum: sağdan açılan tek drawer (navbar.html + js/custom.js) ---- */
.ngbb-login-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,15,.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.ngbb-login-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease, visibility 0s linear 0s;
}
.ngbb-login-drawer {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 440px;
  max-width: 90vw;
  background: #fff;
  box-shadow: -16px 0 48px rgba(0,0,0,.22);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,.9,.32,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.ngbb-login-drawer-overlay.is-open .ngbb-login-drawer {
  transform: translateX(0);
}
.ngbb-login-drawer-header {
  position: relative;
  flex-shrink: 0;
  padding: 34px 36px 30px;
  background: #f6f7f5;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ngbb-login-drawer-logo {
  height: 56px;
  width: auto;
}
.ngbb-login-drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
  color: #2d3a33;
  font-size: 14px;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.ngbb-login-drawer-close:hover { background: rgba(0,0,0,.08); transform: rotate(90deg); }
.ngbb-google-btn-wrap {
  display: flex;
  justify-content: center;
  transform: scale(1.25);
  transform-origin: center;
  margin: 10px 0 20px;
}
.ngbb-login-drawer-body {
  position: relative;
  padding: 40px 36px 44px;
  flex: 1;
}

.ngbb-auth-view { display: none; animation: ngbbAuthViewIn .3s ease; }
.ngbb-auth-view.is-active { display: block; }
@keyframes ngbbAuthViewIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ngbb-auth-view h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 23px;
  color: #1b4332;
  margin: 0 0 8px;
}
.ngbb-login-drawer-hint {
  font-size: 13.5px;
  color: #6a7a70;
  line-height: 1.6;
  margin: 0 0 24px;
}
.ngbb-auth-view h3 + .ngbb-auth-alert,
.ngbb-auth-view h3 + form { margin-top: 24px; }

.ngbb-login-drawer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
.ngbb-login-drawer-body .form-group { margin-bottom: 18px; }
.ngbb-login-drawer-body label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1b4332;
  margin-bottom: 7px;
}
.ngbb-login-drawer-body label .fa {
  color: #6b9b37;
  margin-right: 5px;
  font-size: 12px;
  width: 14px;
  text-align: center;
}
.ngbb-login-drawer-body .form-control {
  height: 46px;
  border-radius: 9px;
  border: 1.5px solid #e2ebe4;
  background: #fafcfa;
  box-shadow: none;
  font-size: 14.5px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.ngbb-login-drawer-body .form-control:focus {
  border-color: #40916c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(64,145,108,.12);
}
.ngbb-login-drawer-body .btn-ngbb-primary {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  border: none;
  border-radius: 9px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  box-shadow: 0 8px 20px rgba(27,67,50,.22);
  transition: opacity .2s ease, transform .18s ease, box-shadow .18s ease;
}
.ngbb-login-drawer-body .btn-ngbb-primary:hover,
.ngbb-login-drawer-body .btn-ngbb-primary:focus {
  opacity: .95;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(27,67,50,.28);
}
.ngbb-login-drawer-body .btn-ngbb-primary:disabled {
  opacity: .6;
  cursor: default;
  transform: none;
}
.ngbb-login-drawer-body .ngbb-auth-links {
  margin-top: 22px;
  text-align: center;
  font-size: 13.5px;
  color: #6a7a70;
}
.ngbb-login-drawer-body .ngbb-auth-links a { color: #2d6a4f; font-weight: 700; cursor: pointer; }
.ngbb-login-drawer-body .ngbb-auth-links a:hover { text-decoration: underline; }
.ngbb-login-drawer-body [data-auth-error] { margin-bottom: 22px; }

.ngbb-auth-view-kvkk { font-size: 13.5px; line-height: 1.7; color: #444; }
.ngbb-auth-view-kvkk h3 { margin-bottom: 18px; }
.ngbb-auth-view-kvkk h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: #1b4332;
  margin: 20px 0 8px;
}
.ngbb-auth-view-kvkk p { margin: 0 0 10px; }
.ngbb-auth-view-kvkk ul { margin: 6px 0 12px; padding-left: 20px; }
.ngbb-auth-view-kvkk li { margin-bottom: 6px; }

@media (max-width: 480px) {
  .ngbb-login-drawer-header { padding: 26px 30px 22px; }
  .ngbb-login-drawer-body { padding: 32px 24px 36px; }
  .ngbb-login-drawer-row { grid-template-columns: 1fr; gap: 0; }
}

/* Hesabım sayfası — checkoutInfo panel (staj.html deseni) ile tutarlı yardımcı sınıflar */
.ngbb-account-page {
  max-width: 1080px;
}

/* ---- İki kolonlu düzen: sol hızlı gezinme + sağ hesap içeriği ---- */
.ngbb-account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.ngbb-account-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid #e2e4e7;
  border-radius: 12px;
  padding: 16px;
}
.ngbb-account-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.ngbb-account-nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
  transition: background .15s ease, color .15s ease;
}
.ngbb-account-nav-item i { width: 16px; text-align: center; color: #9aa0a6; font-size: 14px; }
.ngbb-account-nav-item:hover {
  background: #f5f6f7;
  color: #1f2937;
  text-decoration: none;
}
.ngbb-account-nav-item.is-active {
  background: #eef6f0;
  color: #1b4332;
}
.ngbb-account-nav-item.is-active i { color: #2d6a4f; }
.ngbb-account-nav-item.ngbb-account-nav-danger { color: #a03030; }
.ngbb-account-nav-item.ngbb-account-nav-danger i { color: #a03030; }
.ngbb-account-nav-item.ngbb-account-nav-danger:hover { background: #fdecea; color: #a03030; }

.ngbb-account-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4f8f5;
  border: 1px solid #e2ebe4;
  border-radius: 10px;
  padding: 14px;
  color: #1b4332;
  text-decoration: none;
}
.ngbb-account-cta:hover { background: #eef6f0; text-decoration: none; color: #1b4332; }
.ngbb-account-cta > i:first-child { font-size: 18px; color: #2d6a4f; flex-shrink: 0; }
.ngbb-account-cta > i:last-child { font-size: 12px; color: #6b8f79; flex-shrink: 0; }
.ngbb-account-cta-text { flex: 1; font-size: 12.5px; line-height: 1.5; color: #4b5f52; }
.ngbb-account-cta-text strong { display: block; font-size: 13.5px; color: #1b4332; margin-bottom: 2px; }

/* ---- Profil kartı ---- */
.ngbb-account-profile-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #e2e4e7;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.ngbb-account-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2d6a4f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.ngbb-account-profile-info { flex: 1; min-width: 0; }
.ngbb-account-profile-info h3 {
  font-size: 19px;
  color: #1f2937;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ngbb-account-profile-info h3 i { color: #2d6a4f; font-size: 15px; }
.ngbb-account-profile-info p { margin: 0 0 4px; font-size: 13.5px; color: #4b5563; }
.ngbb-account-profile-info .ngbb-account-hint { color: #6b7280; }
.ngbb-account-edit-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: background .15s ease;
}
.ngbb-account-edit-btn:hover { background: #f5f6f7; }

/* ---- Akordeon başlıkları: ikon + başlık/açıklama + chevron ---- */
.ngbb-account-row-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f5f6f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 15px;
  margin-right: 14px;
}
.ngbb-account-row-text { flex: 1; min-width: 0; }
.ngbb-account-row-desc {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: #6b7280;
  margin-top: 2px;
}
.ngbb-account-panel-danger .panel-title { color: #a03030; }
.ngbb-account-panel-danger .ngbb-account-row-icon { background: #fdecea; color: #a03030; }
.ngbb-account-panel-danger .ngbb-account-row-desc { color: #b06060; }

.ngbb-account-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e4e7;
  border-radius: 10px;
  padding: 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 8px;
  margin-bottom: 40px;
  transition: background .15s ease;
}
.ngbb-account-logout:hover { background: #f5f6f7; text-decoration: none; color: #1f2937; }

@media (max-width: 900px) {
  .ngbb-account-layout { grid-template-columns: 1fr; }
  .ngbb-account-sidebar { position: static; }
  .ngbb-account-profile-card { flex-wrap: wrap; }
  .ngbb-account-edit-btn { width: 100%; justify-content: center; }
}
.ngbb-account-page .checkoutInfo.panel {
  margin-bottom: 14px;
  border-radius: 8px;
}
.ngbb-account-page .checkoutInfo .panel-heading {
  height: auto;
  min-height: 0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-radius: 8px 8px 0 0;
  background: #fff;
  border: 1px solid #e2e4e7;
  transition: background .18s ease;
}
/* Düz kurumsal tema: renkli dolgular yok, tehlikeli "Hesabı Sil" paneli hariç
   (o kırmızı kalır — geri alınamaz bir işlem için bilinçli uyarı rengi). */
.ngbb-account-page .checkoutInfo .panel-heading.ngbb-account-toggle:hover {
  background: #f5f6f7;
}
.ngbb-account-page .checkoutInfo .panel-heading.ngbb-account-toggle.open {
  background: #f5f6f7;
  border-bottom-color: #e2e4e7;
}
.ngbb-account-page .checkoutInfo .panel-title {
  font-size: 15.5px;
  line-height: 1.3;
  margin: 0;
  color: #1f2937;
  font-weight: 600;
}
.ngbb-account-page .checkoutInfo .panel-body {
  padding: 20px;
  border-radius: 0 0 8px 8px;
  border: 1px solid #e2e4e7;
  border-top: none;
}
.ngbb-account-page .checkoutInfo .form-group .form-control {
  height: 44px;
  border-width: 1.5px;
  border-color: #e2e4e7;
  background: #fafafb;
  border-radius: 8px;
  font-size: 14.5px;
  margin-bottom: 8px;
  box-shadow: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.ngbb-account-page .checkoutInfo .form-group .form-control:focus {
  border-color: #9aa0a6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(60,64,67,.08);
}
.ngbb-account-page .checkoutInfo .form-group label {
  font-size: 13.5px;
  color: #374151;
  font-weight: 600;
}
.ngbb-account-page .checkoutInfo .btn {
  height: auto;
  line-height: 1.4;
  padding: 10px 20px;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Tema varsayılanındaki sert 4px'lik düz gölge (box-shadow: 0 4px 0 ...) bu panel
   içinde hayalet/kopya buton gibi göründüğü için düz, nötr bir gölgeyle
   değiştiriyoruz. */
.ngbb-account-page .checkoutInfo .btn-primary {
  background-color: #1f2937;
  border-color: #1f2937;
  box-shadow: none;
  transition: background-color .18s ease;
}
.ngbb-account-page .checkoutInfo .btn-primary:hover,
.ngbb-account-page .checkoutInfo .btn-primary:focus {
  background-color: #374151;
  border-color: #374151;
  box-shadow: none;
}
.ngbb-account-page .checkoutInfo .btn-primary:active {
  background-color: #111827;
  border-color: #111827;
}
.checkoutInfo .panel-heading.ngbb-account-toggle {
  cursor: pointer;
}
.ngbb-settings-chevron {
  transition: transform .2s ease;
  flex-shrink: 0;
  font-size: 14px;
  color: #6b7280;
}
.ngbb-account-toggle.open .ngbb-settings-chevron {
  transform: rotate(180deg);
}

/* Mobil uyumluluk */
@media (max-width: 767px) {
  .ngbb-account-page .checkoutInfo .panel-heading {
    padding: 10px 16px;
  }
  .ngbb-account-page .checkoutInfo .panel-title {
    font-size: 14px;
  }
  .ngbb-account-page .checkoutInfo .panel-body {
    padding: 16px;
  }
  .ngbb-account-page .form-group .col-sm-6 {
    margin-bottom: 10px;
  }
}

.ngbb-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ngbb-faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px 16px;
}
.ngbb-faq-q {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #1b4332;
  font-size: 13.5px;
}
.ngbb-faq-a {
  margin-top: 10px;
  color: #4a5568;
  font-size: 13.5px;
  line-height: 1.6;
}

/* Günlük Eğitimler — seviye/mevsim sekmeleri */
.ge-level-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.ge-level-btn {
  border: none;
  background: #f1f5f2;
  color: #1b4332;
  border-radius: 12px;
  padding: 20px 40px;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.ge-level-btn:hover {
  background: #dcece1;
  transform: translateY(-2px);
}
.ge-level-btn.active {
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: #fff;
  box-shadow: 0 6px 18px rgba(27,67,50,.3);
}
.ge-season-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.ge-season-btn {
  border: 2px solid #d4a017;
  background: #fff;
  color: #8a6600;
  border-radius: 30px;
  padding: 14px 34px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.ge-season-btn:hover {
  background: #fdf6e5;
}
.ge-season-btn.active {
  background: #d4a017;
  border-color: #d4a017;
  color: #fff;
}

.ge-cards-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.ge-cards-row > div {
  display: flex;
  padding: 0 12px;
  margin-bottom: 28px;
}
.ge-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}
.ge-card-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  flex-shrink: 0;
}
.ge-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.ge-card-title {
  font-family: 'Playfair Display', serif !important;
  color: #1b4332;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 18px 0;
}
.ge-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}
.ge-chip {
  display: inline-block;
  background: #eaf3ec;
  color: #2d6a4f;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 1.25rem;
  font-weight: 600;
}
.ge-desc {
  color: #374151;
  font-size: 1.35rem;
  line-height: 1.65;
  margin: 20px 0 0;
}
.ge-outcomes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.ge-outcomes strong {
  color: #1b4332;
  font-size: 1.35rem;
}
.ge-outcomes ul {
  margin: 14px 0 0;
  padding-left: 24px;
  color: #374151;
  font-size: 1.25rem;
  line-height: 1.65;
}
.ge-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.ge-gallery img {
  width: calc(33.333% - 6px);
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity .15s ease;
}
.ge-gallery img:hover {
  opacity: 0.82;
}
.ge-card-footer {
  margin-top: auto;
  padding-top: 20px;
  color: #2d6a4f;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Site geneli fotoğraf galerisi lightbox'ı — js/lightbox.js ile birlikte kullanılır */
.site-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 30px;
}
.site-lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0,0,0,.5);
  transition: transform .2s ease;
  cursor: grab;
}
.site-lightbox-close {
  position: absolute;
  top: 18px;
  right: 28px;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 300;
}
.site-lightbox-zoom {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 1;
}
.site-lightbox-zoom button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease;
}
.site-lightbox-zoom button:hover { background: rgba(255,255,255,.25); }
.site-lightbox-zoom button:disabled { opacity: .35; cursor: default; }
.site-lightbox-zoom button:disabled:hover { background: rgba(255,255,255,.1); }


/* Mobile navbar toggle — matches the login drawer header's brand green instead
   of the shared color-3 red used by many unrelated components (buttons, tabs,
   progress steps), so only this button changes. */
.navbar-default .navbar-toggle,
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: #2d6a4f;
  border-color: #2d6a4f;
}

/* Mobile-only profile/login icon next to the hamburger toggle — desktop already
   has "Giriş Yap" / "Hesabım" as text in the nav, so this stays hidden there.
   Size/margin mirror .navbar-toggle so the two sit at the same height next to
   each other, but this one stays icon-only (no filled box behind it). */
.navbar-mobile-account {
  display: none;
}
@media (max-width: 767px) {
  .navbar-mobile-account {
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    box-sizing: border-box;
    width: 40px;
    height: 34px;
    margin: 20px 4px 8px 0;
    color: #2d6a4f;
    font-size: 25px;
    transition: color .18s ease;
  }
  .navbar-mobile-account:hover,
  .navbar-mobile-account:focus {
    color: #1b4332;
    text-decoration: none;
  }
}

/* ================================================================
   Anasayfa "Kütüphanemiz" bandı — TAM GENİŞLİK (sağlı sollu boşluk yok),
   otomatik kayan fotoğraf şeridi + krem panel. Kart/kenarlık yok.
   ================================================================ */
.lib-band {
  display: flex;
  align-items: stretch;
  min-height: 340px;
  background: #f6faf7;
  border-top: 1px solid #e5ebe6;
  border-bottom: 1px solid #e5ebe6;
  overflow: hidden;
}
.lib-band-carousel {
  flex: 1 1 56%;
  min-width: 0;
  overflow: hidden;
  display: flex;
}
.lib-band-track {
  display: flex;
  gap: 12px;
  padding: 12px;
  width: max-content;
  animation: libScroll 34s linear infinite;
}
.lib-band-carousel:hover .lib-band-track { animation-play-state: paused; }
.lib-band-track img {
  width: 340px;
  height: 316px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
}
@keyframes libScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 6px)); }
}
.lib-band-body {
  flex: 1 1 44%;
  min-width: 300px;
  padding: 44px 6% 44px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lib-band-body h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 27px;
  font-weight: 700;
  color: #1b4332;
  margin: 8px 0 12px;
}
.lib-band-body p {
  font-size: 15.5px;
  color: #5a6a5f;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 520px;
}
@media (max-width: 900px) {
  .lib-band { flex-direction: column; min-height: 0; }
  .lib-band-carousel { height: 220px; flex: none; }
  .lib-band-track img { width: 260px; height: 196px; }
  .lib-band-body { padding: 26px 22px 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .lib-band-track { animation: none; }
}

/* Ters band: yazı solda, fotoğraflar sağda (Eğitimlerimiz için) */
.lib-band.rev { flex-direction: row-reverse; }
.lib-band.rev .lib-band-body { text-align: left; }
.lib-band--edu { background: #fbf9f1; border-color: #ece5d4; }
.lib-band--edu .lib-band-track img { border-radius: 12px; }
@media (max-width: 900px) {
  .lib-band.rev { flex-direction: column; }
}

/* Son Haberler fotoğrafları — yuvarlak (daire) */
.news-row-img {
  width: 150px !important;
  height: 150px !important;
  border-radius: 50% !important;
}
@media (max-width: 767px) {
  .news-row-img { width: 120px !important; height: 120px !important; }
}

/* ================================================================
   Bağımsız otomatik kayan fotoğraf şeridi (galeri bölümleri).
   Anasayfa kütüphane bandındaki marquee ile aynı his — ama metin
   paneli yok, sadece kayan görseller.
   ================================================================ */
.ngbb-marquee {
  overflow: hidden;
  border-radius: 16px;
  background: #f6faf7;
  border: 1px solid #e5ebe6;
  padding: 18px 0;
}
.ngbb-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 18px;
  animation: libScroll 40s linear infinite;
}
.ngbb-marquee:hover .ngbb-marquee-track { animation-play-state: paused; }
.ngbb-marquee-track img {
  height: 340px;
  width: auto;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  background: #fff;
}
@media (max-width: 767px) {
  .ngbb-marquee-track img { height: 240px; }
}
@media (prefers-reduced-motion: reduce) {
  .ngbb-marquee-track { animation: none; overflow-x: auto; }
}
