/* =====================================================
   NAVYAM CONVENT SR. SEC. SCHOOL — MAIN STYLESHEET
   Author: Senior Developer | Version: 1.0
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Variables ── */
:root {
  --blue-dark:    #0d2b6e;
  --blue-main:    #1a4899;
  --blue-light:   #2563c8;
  --gold:         #e8a020;
  --gold-light:   #f5c842;
  --green:        #28a745;
  --white:        #ffffff;
  --off-white:    #f4f6fb;
  --gray-100:     #f0f2f8;
  --gray-200:     #e2e6ef;
  --gray-500:     #8896b3;
  --gray-700:     #4a5568;
  --text-dark:    #1a2540;
  --text-body:    #3d4a63;
  --shadow-sm:    0 2px 8px rgba(26,72,153,.10);
  --shadow-md:    0 6px 24px rgba(26,72,153,.14);
  --shadow-lg:    0 16px 48px rgba(26,72,153,.18);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:    'Nunito', sans-serif;
  --font-body:    'Lato', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--blue-light); }
.section-sub {
  font-size: .98rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}
.divider {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 12px 0 28px;
}
.divider.center { margin: 12px auto 28px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--blue-dark);
  box-shadow: 0 4px 16px rgba(232,160,32,.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-blue {
  background: var(--blue-main);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  padding: 7px 0;
  border-bottom: 2px solid var(--gold);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar a { color: rgba(255,255,255,.82); transition: color .2s; }
.top-bar a:hover { color: var(--gold); }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item i { color: var(--gold); font-size: .9rem; }
.top-bar .social-links { display: flex; gap: 10px; }
.top-bar .social-links a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  transition: var(--transition);
}
.top-bar .social-links a:hover { background: var(--gold); color: var(--blue-dark); }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,43,110,.12);
  transition: var(--transition);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.logo-text { line-height: 1.2; }
.logo-text .school-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.logo-text .school-tagline {
  font-size: .72rem;
  color: var(--gray-500);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 7px;
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--blue-main);
  background: var(--gray-100);
}
.nav-menu a.active::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=1400&q=80') center/cover no-repeat;
  filter: brightness(.38);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,43,110,.92) 45%, rgba(13,43,110,.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 80px 0;
  animation: heroFadeIn .9s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,.18);
  border: 1px solid rgba(232,160,32,.4);
  color: var(--gold-light);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 .highlight { color: var(--gold-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--gold-light); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .label {
  font-size: .78rem;
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 3px;
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(13,43,110,.08);
  border-bottom: 3px solid var(--blue-dark);
}
.features-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-right: 1px solid var(--gray-200);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text .ft { font-family: var(--font-head); font-weight: 800; font-size: .92rem; color: var(--blue-dark); }
.feature-text .fs { font-size: .76rem; color: var(--gray-500); }

/* ── INFO BAR ── */
.info-bar {
  background: var(--blue-main);
  color: rgba(255,255,255,.88);
  font-size: .85rem;
  padding: 11px 0;
}
.info-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.info-bar-item { display: flex; align-items: center; gap: 7px; }
.info-bar-item i { color: var(--gold-light); }
.info-bar a { color: rgba(255,255,255,.88); }
.info-bar a:hover { color: var(--gold-light); }

/* ── ABOUT SECTION ── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--blue-dark);
  color: white;
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .ab-num { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.about-badge .ab-text { font-size: .72rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }
.about-points { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.about-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-point .ap-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-dark);
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-point .ap-text .t { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--blue-dark); }
.about-point .ap-text .s { font-size: .83rem; color: var(--gray-500); margin-top: 1px; }

/* ── ACADEMICS CARDS ── */
.academics-section { background: var(--off-white); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.card.blue::before  { background: linear-gradient(90deg, var(--blue-main), var(--blue-light)); }
.card.gold::before  { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.card.green::before { background: linear-gradient(90deg, #28a745, #56cc74); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.card.blue .card-icon  { background: rgba(26,72,153,.1);  color: var(--blue-main);  }
.card.gold .card-icon  { background: rgba(232,160,32,.1); color: var(--gold);       }
.card.green .card-icon { background: rgba(40,167,69,.1);  color: var(--green);      }
.card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.card.gold h3 { color: var(--gold); }
.card p { font-size: .88rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 18px; }
.card-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.card-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--text-body);
}
.card-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── GALLERY SECTION ── */
.gallery-section { background: var(--white); }
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.gallery-slider-wrap { position: relative; }
.gallery-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  overflow: hidden;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,43,110,.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end; padding: 14px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: white;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
}
.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.gallery-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-main);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.gallery-btn:hover { background: var(--blue-dark); transform: scale(1.08); }

/* ── NOTICE BOARD ── */
.notice-section { background: var(--off-white); }
.notice-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.notice-board {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.notice-board-header {
  background: var(--blue-dark);
  color: white;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
}
.notice-board-header i { color: var(--gold); }
.notice-list { padding: 0; }
.notice-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-100);
  transition: background .2s;
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--gray-100); }
.notice-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.notice-dot.yellow { background: var(--gold); }
.notice-dot.orange { background: #e8622c; }
.notice-dot.blue   { background: var(--blue-light); }
.notice-text .nt { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--blue-dark); }
.notice-text .ns { font-size: .78rem; color: var(--gray-500); margin-top: 2px; }
.notice-date {
  margin-left: auto;
  font-size: .75rem;
  color: var(--gray-500);
  white-space: nowrap;
}
.qr-card {
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
  text-align: center;
  width: 190px;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.qr-card img { width: 130px; height: 130px; margin: 0 auto 14px; border-radius: 8px; background: white; padding: 8px; }
.qr-card .qr-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  color: var(--gold-light);
}
.qr-card .qr-sub { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 3px; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--blue-dark); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-sub { color: rgba(255,255,255,.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: var(--blue-main);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold-light);
}
.testi-info .name { font-family: var(--font-head); font-weight: 800; font-size: .9rem; color: white; }
.testi-info .role { font-size: .76rem; color: rgba(255,255,255,.5); margin-top: 1px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.cta-banner p { color: rgba(13,43,110,.72); margin-bottom: 28px; font-size: 1rem; }
.cta-banner .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-dark {
  background: var(--blue-dark);
  color: white;
  padding: 13px 32px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  transition: var(--transition);
}
.cta-banner .btn-dark:hover { background: var(--blue-main); transform: translateY(-2px); }
.cta-banner .btn-wa {
  background: #25d366;
  color: white;
  padding: 13px 32px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.cta-banner .btn-wa:hover { background: #1fb85a; transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.72);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold); }
.footer-logo .fn { font-family: var(--font-head); font-weight: 900; font-size: 1rem; color: white; text-transform: uppercase; }
.footer-about p { font-size: .86rem; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--blue-dark); }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  color: white;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 7px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-map { margin-top: 16px; border-radius: var(--radius); overflow: hidden; }
.footer-map iframe { width: 100%; height: 160px; border: none; filter: grayscale(.3); }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--gold); }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--off-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--blue-main); }
.breadcrumb a:hover { color: var(--blue-dark); }
.breadcrumb .sep { color: var(--gray-200); }
.breadcrumb .current { color: var(--text-dark); font-weight: 700; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-main) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,.7);
  margin-top: 10px;
  font-size: 1rem;
  position: relative;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--blue-main);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 80px; right: 24px;
  width: 50px; height: 50px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  z-index: 900;
  animation: waFloat 3s ease-in-out infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 36px; }
}
@media (max-width: 768px) {
  .top-bar-left .top-bar-item:not(:first-child) { display: none; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 16px; box-shadow: var(--shadow-md); border-top: 2px solid var(--gold); gap: 4px; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 10px 16px; border-radius: 8px; width: 100%; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 56px 0; }
  .hero-stats { gap: 20px; }
  .features-strip .container { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-badge { bottom: -12px; right: 12px; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-slider { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .notice-grid { grid-template-columns: 1fr; }
  .qr-card { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
  .features-strip .container { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .gallery-slider { grid-template-columns: 1fr 1fr; }
  .info-bar .container { gap: 14px; font-size: .78rem; }
}
/* =====================================================
   LEADERSHIP / MD & CHAIRMAN SECTION
   ===================================================== */

.leadership-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.leadership-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(26,72,153,.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(232,160,32,.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid: two cards stacked vertically */
.leadership-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.leader-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Colored left accent bar */
.leader-card-accent {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 5px;
  border-radius: 4px 0 0 4px;
}
.chairman-accent { background: linear-gradient(180deg, var(--blue-dark), var(--blue-light)); }
.md-accent        { background: linear-gradient(180deg, var(--gold), var(--gold-light)); }

/* ── Inner layout: photo + content ── */
.leader-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 40px 40px 48px;
}

/* Reverse layout for MD card (photo on right) */
.leader-card-inner--reverse {
  flex-direction: row-reverse;
  padding: 40px 48px 40px 40px;
}

/* ── Photo Wrap ── */
.leader-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.leader-photo-ring {
  width: 170px; height: 170px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-light) 100%);
  box-shadow: 0 8px 28px rgba(26,72,153,.25);
  position: relative;
}

.leader-photo-ring--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 8px 28px rgba(232,160,32,.3);
}

.leader-photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--white);
  display: block;
}

/* Fallback avatar (when no photo) */
.leader-avatar-fallback {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  border: 4px solid var(--white);
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,.4);
}
.leader-avatar-fallback--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: rgba(255,255,255,.5);
}

/* Role badge below photo */
.leader-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.chairman-badge {
  background: var(--blue-dark);
  color: var(--gold-light);
}
.md-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--blue-dark);
}
.leader-role-badge i { font-size: .75rem; }

/* ── Content ── */
.leader-content {
  flex: 1;
  position: relative;
  padding-top: 6px;
}

/* Opening quote icon */
.quote-icon {
  font-size: 2.4rem;
  color: var(--blue-light);
  opacity: .18;
  line-height: 1;
  margin-bottom: -8px;
}
.quote-icon--gold {
  color: var(--gold);
  opacity: .25;
}

/* Quote text */
.leader-quote {
  font-family: var(--font-body);
  font-size: .97rem;
  line-height: 1.85;
  color: var(--text-body);
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

/* Signature block */
.leader-signature {
  padding-top: 18px;
  border-top: 2px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.leader-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.12rem;
  color: var(--blue-dark);
}

.leader-title {
  font-size: .82rem;
  color: var(--gray-500);
  font-style: italic;
  letter-spacing: .02em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .leader-card-inner,
  .leader-card-inner--reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .leader-photo-ring { width: 140px; height: 140px; }

  .leader-signature { align-items: center; }

  .leader-card-accent {
    top: 0; left: 0; right: 0; bottom: auto;
    width: 100%; height: 5px;
    border-radius: 4px 4px 0 0;
  }

  .quote-icon { text-align: left; }
}

@media (max-width: 480px) {
  .leader-photo-ring { width: 120px; height: 120px; }
  .leader-quote { font-size: .9rem; }
  .leader-name  { font-size: 1rem; }
}
