/* ============================================================
   SAS CONVENT SCHOOL — ROYAL BLUE & GOLD THEME
   Version 2.0 | All pages unified
   ============================================================ */

/* --- CSS VARIABLES --- */
:root {
  --green-dark:    #002d5a;
  --green-main:    #00508c;
  --green-mid:     #0066b3;
  --green-light:   #4d94c7;
  --green-pale:    #c8e0f0;
  --green-bg:      #e8f2fa;
  --green-bg2:     #f0f6fc;
  --white:         #ffffff;
  --text-dark:     #001a36;
  --text-body:     #1a3050;
  --text-muted:    #4a6080;
  --border:        #b8d4ea;
  --gold:          #f0a51e;
  --gold-dark:     #c8880a;
  --gold-light:    #ffd166;
  --shadow-sm:     0 2px 12px rgba(0,80,140,.10);
  --shadow-md:     0 6px 28px rgba(0,80,140,.15);
  --shadow-lg:     0 12px 45px rgba(0,80,140,.20);
  --radius:        10px;
  --transition:    all .3s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--text-body);
  background: #fff;
  line-height: 1.75;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { color: var(--text-dark); line-height: 1.3; }

/* --- CONTAINER --- */
.sasc-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.sasc-topbar {
  background: var(--green-dark);
  padding: 9px 0;
  font-size: 14px;
  color: #b8d4ea;
}
.sasc-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.sasc-topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sasc-topbar-left strong { color: #fff; white-space: nowrap; font-size: 14px; }
.topbar-marquee {
  overflow: hidden;
  width: 280px;
  color: #c8e0f0;
  font-style: italic;
}
.sasc-topbar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sasc-topbar-socials a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.14);
  border-radius: 50%;
}
.sasc-topbar-socials a:hover { background: rgba(255,255,255,.30); }
.sasc-topbar-socials img { width:28px; height:28px;    border: 2px solid #FFF; border-radius: 100%; }
.sasc-topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.sasc-topbar-right a { color: #c8e0f0; font-size: 13px; font-weight: 500; }
.sasc-topbar-right a:hover { color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.sasc-header {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.sasc-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sasc-logo img { height: 85px; object-fit: contain; }
.sasc-header-contacts {
  display: flex;
  gap: 36px;
}
.sasc-header-contacts .ci {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sasc-header-contacts .ci-icon {
  width: 50px; height: 50px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}
.sasc-header-contacts .ci:hover .ci-icon { background: var(--green-dark); }
.sasc-header-contacts .ci-text h6 { font-size: 13px; color: var(--text-muted); margin-bottom: 3px; font-weight: 500; }
.sasc-header-contacts .ci-text p  { font-size: 15px; font-weight: 700; color: var(--text-dark); }

/* ============================================================
   NAVBAR — Desktop + Dropdown
   ============================================================ */
.sasc-navbar {
  background: var(--green-main);
  position: sticky; top: 0; z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.sasc-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Desktop menu */
.sasc-nav-menu {
  display: flex;
  align-items: center;
}
.sasc-nav-item { position: relative; }
.sasc-nav-item > a {
  display: block;
  padding: 18px 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  letter-spacing: .02em;
}
.sasc-nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 50%; right: 50%;
  height: 2px;
  background: var(--green-pale);
  transition: var(--transition);
}
.sasc-nav-item:hover > a::after,
.sasc-nav-item.active > a::after { left: 16px; right: 16px; }
.sasc-nav-item:hover > a { color: #e8f2fa; }

/* Dropdown */
.sasc-dropdown {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--green-main);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 9998;
  pointer-events: none;
}
.sasc-nav-item:hover .sasc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.sasc-dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  transition: var(--transition);
}
.sasc-dropdown li:last-child a { border-bottom: none; }
.sasc-dropdown li a:hover {
  background: var(--green-bg);
  color: var(--green-main);
  padding-left: 28px;
}

/* Contact btn */
.nav-cta-btn {
  background: #fff;
  color: var(--green-dark) !important;
  font-weight: 700 !important;
  padding: 10px 26px !important;
  border-radius: 6px;
  font-size: 14px !important;
  margin-left: 10px;
  letter-spacing: .03em;
  transition: var(--transition);
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: var(--green-pale) !important; }

/* Hamburger */
.sasc-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: transparent;
  border: none;
}
.sasc-hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
/* Mobile logo */
.sasc-mob-logo { display: none; }

/* Mobile nav panel */
.sasc-mobile-nav {
  display: none;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,.12);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.sasc-mobile-nav.open {
  display: block;
  max-height: 600px;
  overflow-y: auto;
}
.mob-link {
  display: block;
  padding: 13px 24px;
  color: #e8f2fa;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.mob-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.mob-sub-link {
  display: block;
  padding: 10px 40px;
  color: var(--green-pale);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mob-sub-link:hover { color: #fff; background: rgba(255,255,255,.07); }

/* ============================================================
   HERO / BANNER SLIDER
   ============================================================ */
.sasc-hero { position: relative; background: var(--green-bg); overflow: hidden; }
.hero-slide-wrap { position: relative; }
.hero-slide { display: none; position: relative; }
.hero-slide.active { display: block; }
.hero-slide img { width: 100%; max-height: 600px; object-fit: cover; }

/* Hero text overlay */
.hero-overlay-box {
  position: absolute;
  top: 50%; left: 8%;
  transform: translateY(-50%);
  background: rgba(27,94,32,.82);
  color: #fff;
  padding: 36px 44px;
  border-radius: 12px;
  max-width: 520px;
  backdrop-filter: blur(6px);
  animation: heroFadeIn .8s ease;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(calc(-50% + 30px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}
.hero-overlay-box h1 { font-size: 36px; font-weight: 800; margin-bottom: 14px; color: #fff; line-height: 1.25; }
.hero-overlay-box p  { font-size: 17px; color: #b8d4ea; margin-bottom: 24px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btns a {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}
.hero-btn-primary { background: #fff; color: var(--green-dark); }
.hero-btn-primary:hover { background: var(--green-pale); }
.hero-btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.hero-btn-outline:hover { background: #fff; color: var(--green-dark); }

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: 2px solid #fff;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--green-light); width: 28px; border-radius: 6px; }

/* ============================================================
   PAGE BREADCRUMB (inner pages)
   ============================================================ */
.page-breadcrumb {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-breadcrumb::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/counter_bg') center/cover;
  opacity: .08;
}
.page-breadcrumb h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}
.breadcrumb-trail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}
.breadcrumb-trail a { color: var(--green-pale); font-size: 15px; }
.breadcrumb-trail a:hover { color: #fff; }
.breadcrumb-trail span { color: rgba(255,255,255,.5); }
.breadcrumb-trail .current { color: #fff; font-weight: 600; font-size: 15px; }

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.sasc-section { padding: 90px 0; }
.sasc-section-alt { background: var(--green-bg); }
.sasc-section-alt2 { background: var(--green-bg2); }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--green-dark);
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 12px;
}
.section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 4px;
  background: var(--green-light);
  border-radius: 2px;
}
.section-head p { font-size: 17px; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-green {
  display: inline-block;
  background: var(--green-main);
  color: #fff !important;
  padding: 13px 34px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: var(--transition);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-green {
  display: inline-block;
  background: transparent;
  color: var(--green-main) !important;
  border: 2px solid var(--green-main);
  padding: 11px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-outline-green:hover { background: var(--green-main); color: #fff !important; }
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--green-dark) !important;
  padding: 13px 34px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); }

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.sasc-counter { background: var(--green-main); padding: 70px 0; }
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  text-align: center;
}
.counter-box { color: #fff; }
.counter-val-wrap { display: flex; align-items: flex-end; justify-content: center; gap: 3px; }
.counter-num { font-size: 56px; font-weight: 900; line-height: 1; color: #fff; }
.counter-suf { font-size: 36px; font-weight: 800; color: var(--green-pale); line-height: 1.2; }
.counter-label { font-size: 16px; color: #b8d4ea; margin-top: 10px; font-weight: 500; }

/* ============================================================
   ABOUT SECTION (homepage)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text-side h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text-side p { font-size: 18px; color: var(--text-body); margin-bottom: 18px; text-align: justify; }
.about-img-side { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-side img { width: 100%; height: 420px; object-fit: cover; }

/* ============================================================
   FACILITY CARDS
   ============================================================ */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.facility-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--green-light);
  transition: var(--transition);
}
.facility-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.fc-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.fc-icon {
  position: absolute;
  bottom: -22px; left: 22px;
  width: 48px; height: 48px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.fc-body { padding: 32px 22px 22px; }
.fc-body h3 { font-size: 18px; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.fc-body p  { font-size: 15px; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   PRINCIPAL MESSAGE
   ============================================================ */
.principal-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.principal-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.principal-img img { width: 100%; height: 480px; object-fit: cover; }
.principal-text h2 { font-size: 32px; font-weight: 800; color: var(--green-dark); margin-bottom: 22px; }
.principal-text p  { font-size: 16px; color: var(--text-body); margin-bottom: 1px; text-align: justify; }

/* ============================================================
   WORLD CLASS CARDS (3-col)
   ============================================================ */
.wc-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}
.wc-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--green-main);
  transition: var(--transition);
}
.wc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wc-card img { width: 100%; height: 210px; object-fit: cover; }
.wc-body { padding: 22px; }
.wc-body h3 { font-size: 18px; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.wc-body p  { font-size: 15px; color: var(--text-body); line-height: 1.7; }
.wc-more { display: inline-flex; align-items: center; gap: 6px; color: var(--green-mid); font-weight: 700; font-size: 14px; margin-top: 12px; }
.wc-more:hover { color: var(--green-dark); }

/* ============================================================
   GALLERY CARDS
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.gallery-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-card img { width: 100%; height: 230px; object-fit: cover; }
.gallery-card-body {
  padding: 18px 20px;
  border-top: 5px solid var(--green-light); border-radius: 10px;
}
.gallery-card-body a { font-size: 17px; font-weight: 700; color: var(--green-dark); display: block; margin-bottom: 5px; }
.gallery-card-body p  { font-size: 14px; color: var(--text-muted); }

/* ============================================================
   BIRTHDAY SECTION
   ============================================================ */
.birthday-wrap { background: var(--green-dark); padding: 80px 0; }
.birthday-wrap .section-head h2 { color: #fff; }
.birthday-wrap .section-head h2::after { background: var(--green-pale); }
.birthday-wrap .section-head p { color: #c8e0f0; }
.bday-flex { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 40px; }
.bday-card {
  background: #fffde7;
  border-radius: 18px;
  width: 220px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  transition: var(--transition);
}
.bday-card:hover { transform: scale(1.04); }
.bday-card img {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 4px solid #fff;
}
.bday-card h3 { font-size: 16px; font-weight: 700; color: #333; margin-bottom: 4px; }
.bday-card p  { font-size: 14px; color: #666; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.faq-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.faq-img img { width: 100%; }
.faq-side h2 { font-size: 30px; font-weight: 800; color: var(--green-dark); margin-bottom: 28px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 8px; margin-bottom: 14px; overflow: hidden; }
.faq-q {
  background: var(--green-main);
  color: #fff;
  padding: 15px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: var(--transition);
}
.faq-q:hover { background: var(--green-dark); }
.faq-q .faq-icon { font-size: 22px; font-weight: 400; transition: var(--transition); }
.faq-q.faq-open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  background: #f9fdf9;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a.faq-open { max-height: 200px; padding: 16px 22px; }
.faq-a p { font-size: 15px; color: var(--text-body); }

/* ============================================================
   NOTICE BOARD
   ============================================================ */
.notice-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; }
.notice-box { border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.notice-header {
  background: var(--green-main);
  color: #fff;
  padding: 15px 22px;
  font-size: 17px;
  font-weight: 700;
}
.notice-scroll-area { height: 280px; overflow-y: auto; padding: 18px 22px; }
.notice-empty { text-align: center; padding: 0px 0px; color: #000;font-size:20px; }
.notice-empty i { font-size: 40px; color: #4CAF50; display: block; margin-bottom: 14px; }
.latest-news-side h2 { font-size: 28px; font-weight: 800; color: var(--green-dark); margin-bottom: 16px; }
.latest-news-side p  { font-size: 16px; color: var(--text-body); text-align: justify; margin-bottom: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: var(--green-bg); padding: 90px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-light);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-quote { font-size: 44px; color: var(--green-pale); line-height: 1; margin-bottom: 10px; }
.testi-card p.testi-text { font-size: 15px; color: var(--text-body); font-style: italic; margin-bottom: 22px; line-height: 1.75; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 3px solid var(--green-pale); }
.testi-author h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.testi-author span { font-size: 13px; color: var(--text-muted); display: block; }
.testi-stars { color: #f9a825; font-size: 14px; margin-top: 3px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.why-text h2 { font-size: 32px; font-weight: 800; color: var(--green-dark); margin-bottom: 16px; }
.why-text > p { font-size: 16px; color: var(--text-body); margin-bottom: 24px; }
.why-items { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-item {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--green-main);
  background: var(--green-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--green-main);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  flex-shrink: 0;
}
.why-item h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.why-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--green-main) 0%, var(--green-dark) 100%);
  padding: 90px 0;
  text-align: center;
}
.cta-section h2 { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-section p  { font-size: 17px; color: #b8d4ea; margin-bottom: 34px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ============================================================
   INNER PAGE CONTENT AREA
   ============================================================ */
.page-content { padding: 70px 0 90px; }
.inner-content-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 50px;
  border-left: 5px solid var(--green-main);
}
.inner-content-card h2 { font-size: 30px; font-weight: 800; color: var(--green-dark); margin-bottom: 20px; }
.inner-content-card h3 { font-size: 22px; font-weight: 700; color: var(--green-mid); margin: 24px 0 12px; }
.inner-content-card p  { font-size: 16px; color: var(--text-body); margin-bottom: 16px; text-align: justify; line-height: 1.8; }
.inner-content-card ul { padding-left: 20px; margin-bottom: 16px; }
.inner-content-card ul li { font-size: 16px; color: var(--text-body); margin-bottom: 10px; list-style: disc; }
.inner-content-card img { border-radius: 8px; margin: 20px 0; max-width: 100%; }
.inner-content-card table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; }
.inner-content-card table th { background: var(--green-main); color: #fff; padding: 12px 16px; text-align: left; }
.inner-content-card table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.inner-content-card table tr:nth-child(even) td { background: var(--green-bg); }

/* Two-column layout for inner pages */
.inner-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.inner-img-side { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.inner-img-side img { width: 100%; object-fit: cover; }

/* Contact page */
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 50px; }
.contact-info-box {
  background: var(--green-bg);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1.5px solid var(--border);
}
.contact-icon-wrap {
  width: 52px; height: 52px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  flex-shrink: 0;
}
.contact-info-box h4 { font-size: 17px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.contact-info-box p  { font-size: 15px; color: var(--text-body); }
.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 44px;
  border-top: 4px solid var(--green-main);
}
.contact-form-card h2 { font-size: 28px; font-weight: 800; color: var(--green-dark); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  transition: var(--transition);
  background: #fafff7;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--green-main); background: #fff; box-shadow: 0 0 0 3px rgba(0,80,140,.1); }
.form-group textarea { height: 140px; resize: vertical; }

/* Gallery inner page */
.gallery-cats { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.gallery-cat-btn {
  padding: 10px 24px;
  border-radius: 30px;
  background: var(--green-bg);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.gallery-cat-btn:hover,
.gallery-cat-btn.active { background: var(--green-main); color: #fff; border-color: var(--green-main); }

/* Facilities page */
.facilities-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.fac-detail-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.fac-detail-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.fac-detail-item img { width: 100%; height: 230px; object-fit: cover; }
.fac-detail-body {
  padding: 22px;
  border-top: 4px solid var(--green-light);
}
.fac-detail-body h3 { font-size: 19px; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.fac-detail-body p  { font-size: 15px; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-banner-wrap {
  background: var(--green-bg2);
  padding: 60px 0 0;
}
.footer-cta-box {
  background: var(--green-pale);
  border-radius: 16px;
  padding: 52px 44px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0,80,140,.25);
}
.footer-cta-box h3 { font-size: 30px; font-weight: 800; color: var(--green-dark); margin-bottom: 12px; }
.footer-cta-box p  { font-size: 17px; color: var(--green-dark); margin-bottom: 26px; opacity: .85; }

.sasc-footer { background: var(--green-dark); padding: 100px 0 0; margin-top: -50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-col h4 {
  color: var(--green-pale);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,.1);
}
.footer-col p { color: #c8e0f0; font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: #c8e0f0; font-size: 15px; transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; padding-left: 6px; }
.footer-logo img { height: 80px; object-fit: contain; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--green-light); }
.footer-socials img { width: 20px; height: 20px; object-fit: contain; }
.footer-map iframe { width: 100%; border-radius: 8px; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #c8e0f0; font-size: 14px; }
.footer-bottom a { color: var(--green-pale); }

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 50px; height: 50px;
  background: var(--green-main);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
  transition: var(--transition);
  opacity: 0; visibility: hidden;
  z-index: 9000;
  border: none;
}
.scroll-top-btn.show { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--green-dark); transform: translateY(-4px); }

/* ============================================================
   SCROLL ANIMATIONS (Intersection Observer)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Delay helpers */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .facility-grid,
  .wc-grid,
  .gallery-grid,
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  html { font-size: 16px; }
  .about-grid,
  .principal-grid,
  .why-grid,
  .faq-grid,
  .inner-two-col,
  .facilities-detail-grid,
  .notice-grid,
  .contact-info-grid { grid-template-columns: 1fr; }
  .sasc-header-contacts { display: none; }
  .sasc-nav-menu { display: none; }
  .sasc-hamburger { display: flex; }
  .sasc-mob-logo { display: block; }
  .sasc-topbar { display: none; }
  .hero-overlay-box { left: 4%; right: 4%; max-width: 100%; padding: 24px 22px; }
  .hero-overlay-box h1 { font-size: 24px; }
  .page-breadcrumb h1 { font-size: 30px; }
  .section-head h2 { font-size: 28px; }
  .inner-content-card { padding: 28px; }
  .contact-form-card { padding: 26px; }
  .footer-cta-box { padding: 34px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .gallery-grid,
  .facility-grid,
  .wc-grid,
  .testi-grid,
  .why-items { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .footer-bottom { text-align: center; justify-content: center; }
  .sasc-footer { padding-top: 80px; }
  .sasc-section { padding: 60px 0; }
}

/* === Gallery Reveal Animation === */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOGO THEME: ROYAL BLUE & GOLD ===== */
/* Gold accent bar at very top */
body::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

/* Gold accent on section headings */
.section-title span {
  color: var(--gold-dark) !important;
}

/* Facility/feature cards - gold hover border */
.facility-card:hover {
  border-top: 3px solid var(--gold) !important;
}

/* Footer - keep deep blue but add gold heading underlines */
.sasc-footer-col h4::after {
  background: var(--gold) !important;
}

/* Active nav item gold */
.sasc-nav-menu .sasc-nav-item.active > a {
  color: var(--gold) !important;
}

/* Scroll to top button - gold */
.scroll-top {
  background: var(--gold) !important;
  color: #fff !important;
}
.scroll-top:hover {
  background: var(--gold-dark) !important;
}

/* Topbar social icon hover - gold */
.sasc-topbar-right a:hover {
  color: var(--gold) !important;
}

/* btn-green - add gold variant */
.btn-gold {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}
