/* =========================================================
   Bernard Mizeki College — Main Stylesheet
   ========================================================= */

:root {
  --primary: #800000;
  --primary-light: #810302;
  --accent: #ffcc33;
  --accent-dark: #7a0019;
  --dark: #E1AE02;
  --text: #2c3e50;
  --text-light: #810302;
  --white: #ffffff;
  --bg-light: #ffcc33;
  --bg-section: #ffffff;
  --red: #6b7a8d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ── TOP BAR ─────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: #ffffff;
  font-size: 12.5px;
  padding: 6px 0;
}
.topbar-inner {
  max-width: 1200px; margin: auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: #fff; margin-left: 14px; }
.topbar a:hover { color: var(--accent); }
.topbar-left { display: flex; gap: 18px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }

/* ── TICKER ──────────────────────────────────────────── */
.ticker {
  background: var(--primary);
  color: #fff;
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
}
.ticker-inner { display: flex; align-items: center; }
.ticker-label {
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
  padding: 2px 14px;
  margin-right: 0;
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: .5px;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 35s linear infinite;
  padding-left: 30px;
}
.ticker-track span { margin-right: 50px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── NAVBAR ──────────────────────────────────────────── */
nav {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky; top: 0; z-index: 999;
}
.nav-inner {
  max-width: 1200px; margin: auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  height: 72px;
}
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 90px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #90ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(255,255,255,.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.logo img { height: 52px; }
.logo-text { font-family: 'Playfair Display', serif; }
.logo-text strong { display: block; font-size: 22px; color: var(--primary); }
.logo-text span { font-size: 11px; color: var(--text-light); letter-spacing: .5px; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a, .nav-links .dropdown > a {
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 8px 12px; border-radius: 5px;
  transition: background .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .dropdown:hover > a {
  background: var(--bg-light); color: var(--primary);
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 200px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 8px 8px;
  padding: 8px 0; z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 9px 18px;
  font-size: 13.5px; color: var(--text);
  transition: background .15s;
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--primary); }
.nav-cta {
  background: var(--accent); color: var(--dark) !important;
  font-weight: 600 !important; padding: 9px 20px !important;
  border-radius: 6px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }
@media screen and (max-width: 700px) {
    .chairman {
        margin: 50px 0;
    }
}
.chairman {
    margin: 100px 0;
}
* {
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
}
user agent stylesheet
div {
    display: block;
    unicode-bidi: isolate;
}
:root {
    --orange
#a62005
: #a62005;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 0 16px;
  border-top: 1px solid var(--bg-section);
  background: #fff;
}
.mobile-menu a {
  padding: 10px 24px; font-size: 15px; color: var(--text);
  border-bottom: 1px solid var(--bg-light);
}
.mobile-menu a:hover { color: var(--primary); background: var(--bg-light); }
.mobile-menu.open { display: flex; }

/* ── SHARED SECTION STYLES ───────────────────────────── */
section { padding: 72px 0; }
.container { max-width: 1200px; margin: auto; padding: 0 24px; }
.section-tag {
  display: inline-block; background: #92210b; color: var(--dark);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 4px; margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--primary); margin-bottom: 14px; line-height: 1.3;
}
.section-sub { color: var(--text-light); font-size: 15.5px; max-width: 600px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-sub { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  background: var(--accent); color: var(--dark);
  padding: 12px 28px; border-radius: 7px; font-weight: 600; font-size: 15px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.6); color: #fff;
  padding: 12px 28px; border-radius: 7px; font-weight: 500; font-size: 15px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 10%, var(--primary) 100%, #cccccc 100%);
  min-height: 540px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/image2.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 90px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #90ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(255,255,255,.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.hero-inner {
  max-width: 1200px; margin: auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  color: #760000; line-height: 1.25; margin-bottom: 18px;
}
.hero-text h1 span { color: var(--accent); }
.hero-text p { color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.75; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 22px 20px; text-align: center;
}
.stat-card .num { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--accent); font-weight: 700; }
.stat-card .label { color: rgba(255,255,255,.75); font-size: 13px; margin-top: 4px; }

/* ── ABOUT ───────────────────────────────────────────── */
.about-strip { background: var(--bg-light); padding: 60px 0; }
.about-inner {
  max-width: 1200px; margin: auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: 16px;
  box-shadow: 8px 14px 36px rgba(26,58,110,.18);
}
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--accent); color: var(--dark);
  border-radius: 12px; padding: 18px 22px; text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--primary); margin-bottom: 16px; }
.about-text p { color: var(--text-light); font-size: 15.5px; line-height: 1.8; margin-bottom: 16px; }
.about-features { list-style: none; margin: 20px 0 28px; }
.about-features li {
  padding: 8px 0; border-bottom: 1px solid #e2e8f0;
  font-size: 14.5px; display: flex; align-items: center; gap: 10px;
}
.about-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 16px; }

/* ── PROGRAMS ────────────────────────────────────────── */
.programs { background: var(--white); }
.program-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.program-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.program-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,58,110,.12); }
.program-card .card-head { background: var(--primary); padding: 28px 24px; }
.program-card:nth-child(2) .card-head { background: #1a5276; }
.program-card:nth-child(3) .card-head { background: #154360; }
.program-card:nth-child(4) .card-head { background: #0b3d6b; }
.program-card .card-head .icon {
  width: 52px; height: 52px; background: rgba(255,255,255,.15);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 14px;
}
.program-card .card-head h3 { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.program-card .card-head p { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.5; }
.program-card .card-body { padding: 20px 24px; }
.program-card .card-body ul { list-style: none; }
.program-card .card-body ul li {
  font-size: 13.5px; padding: 6px 0; border-bottom: 1px solid #f0f0f0;
  color: var(--text); display: flex; align-items: center; gap: 8px;
}
.program-card .card-body ul li::before { content: '›'; color: var(--accent); font-size: 18px; font-weight: 700; }
.program-card .card-link { display: block; margin-top: 16px; color: var(--primary-light); font-size: 13.5px; font-weight: 600; }
.program-card .card-link:hover { color: var(--accent-dark); }

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar { background: var(--primary); padding: 48px 0; }
.stats-grid {
  max-width: 1100px; margin: auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat-item .n { font-family: 'Playfair Display', serif; font-size: 44px; color: var(--accent); font-weight: 700; }
.stat-item .l { color: rgba(255,255,255,.75); font-size: 14px; margin-top: 6px; }

/* ── WHY BMC ─────────────────────────────────────────── */
.why { background: var(--bg-section); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.why-tabs { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.why-tab {
  padding: 8px 20px; border-radius: 6px; font-size: 14px; font-weight: 500;
  cursor: pointer; border: 2px solid transparent;
  background: #fff; color: var(--text); transition: all .2s;
}
.why-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.why-content-box { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.why-content { display: none; }
.why-content.active { display: block; }
.why-content p { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 12px; }
.why-list { list-style: none; margin-top: 16px; }
.why-list li {
  padding: 9px 0; font-size: 14px; color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  display: flex; gap: 10px; align-items: flex-start;
}
.why-list li .bullet { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.why-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-feature {
  background: #fff; border-radius: 10px; padding: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  display: flex; align-items: flex-start; gap: 12px;
}
.why-feature .f-icon {
  width: 36px; height: 36px; background: var(--bg-section);
  border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.why-feature p { font-size: 13px; color: var(--text); line-height: 1.5; font-weight: 500; margin: 0; }

/* ── GALLERY ─────────────────────────────────────────── */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(13,27,53,.5);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials { background: var(--bg-light); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi-card {
  background: #fff; border-radius: 14px; padding: 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  position: relative; border-top: 4px solid var(--accent);
}
.testi-card .quote { font-size: 36px; color: var(--accent); font-family: 'Playfair Display', serif; line-height: .8; margin-bottom: 12px; }
.testi-card p { font-size: 14.5px; line-height: 1.8; color: var(--text-light); font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testi-info strong { display: block; font-size: 15px; color: var(--text); }
.testi-info span { font-size: 12.5px; color: var(--text-light); }

/* ── NOTICE & EVENTS ─────────────────────────────────── */
.notice-events { background: var(--white); }
.notice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.notice-box { border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; }
.notice-box-head {
  background: var(--primary); color: #fff;
  padding: 16px 22px; display: flex; justify-content: space-between; align-items: center;
}
.notice-box-head h3 { font-size: 16px; font-weight: 600; }
.notice-box-head a { font-size: 12.5px; color: var(--accent); }
.notice-list { list-style: none; max-height: 320px; overflow-y: auto; }
.notice-list li {
  padding: 14px 20px; border-bottom: 1px solid #f0f4f8;
  display: flex; gap: 12px; align-items: flex-start;
}
.notice-list li:last-child { border-bottom: none; }
.notice-date {
  background: var(--bg-section); border-radius: 8px;
  padding: 6px 10px; text-align: center; flex-shrink: 0; min-width: 44px;
}
.notice-date .d { font-size: 18px; font-weight: 700; color: var(--primary); line-height: 1; }
.notice-date .m { font-size: 10px; text-transform: uppercase; color: var(--text-light); }
.notice-info strong { font-size: 14px; display: block; color: var(--text); margin-bottom: 3px; }
.notice-info span { font-size: 12px; color: var(--text-light); }

/* ── AFFILIATIONS ────────────────────────────────────── */
.affiliations { background: var(--bg-section); padding: 48px 0; }
.affil-inner { max-width: 1100px; margin: auto; padding: 0 24px; text-align: center; }
.affil-inner p { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); margin-bottom: 28px; font-weight: 600; }
.affil-logos { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; align-items: center; }
.affil-logos img { height: 42px; opacity: .6; filter: grayscale(100%); transition: opacity .3s, filter .3s; }
.affil-logos img:hover { opacity: 1; filter: none; }

/* ── CONTACT STRIP ───────────────────────────────────── */
.contact-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 64px 0;
}
.contact-inner {
  max-width: 1100px; margin: auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.contact-text h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: #fff; margin-bottom: 14px; }
.contact-text p { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.75; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 12px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1); color: #fff;
  font-size: 14px; outline: none; font-family: 'DM Sans', sans-serif;
  transition: border-color .2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.5); }
.contact-form input:focus, .contact-form select:focus { border-color: var(--accent); }
.contact-form select option { background: var(--dark); color: #fff; }
.contact-form textarea { resize: none; height: 96px; }
.contact-form .submit-btn {
  background: var(--accent); color: var(--dark);
  border: none; padding: 13px; border-radius: 8px;
  font-weight: 700; font-size: 15px; cursor: pointer;
  transition: background .2s, transform .15s; font-family: 'DM Sans', sans-serif;
}
.contact-form .submit-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.contact-details { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.contact-details .cd { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.5; }
.contact-details .cd-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: #590d0d; color: rgba(255,255,255,.7); padding: 56px 0 0; }
.footer-grid {
  max-width: 1200px; margin: auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
}
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: background .2s;
}
.footer-socials a:hover { background: var(--accent); color: var(--dark); }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact li { font-size: 13.5px; line-height: 1.6; margin-bottom: 12px; display: flex; gap: 8px; }
.footer-contact li span:first-child { color: var(--accent); flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }

/* ── HAMBURGER ───────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .why-grid, .notice-grid, .contact-inner, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-badge { right: 0; bottom: -14px; }
  .why-features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hero-stats { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
}

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient (135deg, var(--dark) 10%, var(--primary) 100%, #cccccc 100%));
  padding: 56px 0 48px;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/image1.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 90px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #90ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(255,255,255,.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: #b60b31; margin: 12px 0 10px; line-height: 1.2;
}
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 90px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #90ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(255,255,255,.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.page-hero p { color: rgb(211 16 16); font-size: 16px; max-width: 580px; line-height: 1.7; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.55);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── MVV GRID (about page) ───────────────────────────── */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border-top: 4px solid var(--accent);
}
.mvv-card.accent { background: var(--primary); color: #fff; }
.mvv-card.accent h3 { color: var(--accent); }
.mvv-card.accent p  { color: rgba(255,255,255,.8); }
.mvv-icon { font-size: 36px; margin-bottom: 16px; }
.mvv-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--primary); margin-bottom: 12px; }
.mvv-card p  { font-size: 14.5px; line-height: 1.8; color: var(--text-light); }

/* ── TIMELINE (about page) ───────────────────────────── */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 80px; top: 0; bottom: 0;
  width: 2px; background: var(--accent);
}
.tl-item {
  display: flex; gap: 24px; align-items: flex-start;
  margin-bottom: 36px; position: relative;
}
.tl-year {
  flex-shrink: 0; width: 80px; text-align: right;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--accent);
  padding-top: 4px;
}
.tl-content {
  background: #fff; border-radius: 12px; padding: 20px 24px;
  flex: 1; box-shadow: 0 2px 12px rgba(0,0,0,.06);
  margin-left: 16px; position: relative;
}
.tl-content::before {
  content: ''; position: absolute; left: -24px; top: 12px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.tl-content h4 { color: var(--primary); font-size: 16px; margin-bottom: 6px; font-weight: 700; }
.tl-content p  { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ── TEAM GRID (about page) ──────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.team-card {
  background: #fff; border-radius: 14px; padding: 28px 20px;
  text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,58,110,.1); }
.team-avatar-wrap { position: relative; width: 80px; height: 80px; margin: 0 auto 16px; }
.team-avatar-wrap img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; display: block; }
.team-avatar-fallback {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: none; align-items: center; justify-content: center;
  font-weight: 700; font-size: 22px;
}
.team-card h4 { font-size: 15px; color: var(--text); font-weight: 700; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--text-light); }

/* ── FACILITIES GRID ─────────────────────────────────── */
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }

/* ── PROGRAMS DETAIL GRID ────────────────────────────── */
.prog-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.prog-img-col img { width: 100%; border-radius: 16px; }
.prog-info-col {}

/* ── ADMISSIONS STEPS ────────────────────────────────── */
.admission-steps { display: flex; flex-direction: column; gap: 20px; }
.adm-step { display: flex; gap: 16px; align-items: flex-start; }
.adm-step-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
}
.adm-step-body h4 { color: var(--primary); font-size: 15px; margin-bottom: 5px; }
.adm-step-body p  { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

/* ── FULL GALLERY GRID ───────────────────────────────── */
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.full-gallery-item {
  border-radius: 12px; overflow: hidden;
  position: relative; aspect-ratio: 4/3;
  background: var(--bg-section);
  cursor: pointer;
}
.full-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s;
}
.full-gallery-item:hover img { transform: scale(1.05); }
.full-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,53,.6);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.full-gallery-item:hover .full-gallery-overlay { opacity: 1; }
.full-gallery-overlay p { color: #fff; font-size: 13px; font-weight: 500; }

/* ── GALLERY FILTER BUTTONS ──────────────────────────── */
.gallery-filter-btn {
  padding: 8px 20px; border-radius: 20px;
  font-size: 13.5px; font-weight: 600;
  border: 2px solid #ddd; background: #fff; color: var(--text);
  cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ── CONTACT FORM INPUTS ─────────────────────────────── */
.form-label { font-size: 12px; font-weight: 600; color: var(--text); display: block; margin-bottom: 5px; }
.form-input {
  width: 100%; padding: 11px 14px; border-radius: 7px;
  border: 1px solid #ddd; font-size: 14px; outline: none;
  font-family: 'DM Sans', sans-serif; background: #fff; color: var(--text);
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--primary); }

/* ── RESPONSIVE (inner pages) ────────────────────────── */
@media (max-width: 900px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .prog-detail-grid { grid-template-columns: 1fr !important; direction: ltr !important; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 60px; }
  .tl-year { width: 60px; font-size: 15px; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .full-gallery-grid { grid-template-columns: 1fr 1fr; }
  .adm-step-num { width: 36px; height: 36px; font-size: 14px; }
}
