/* =========================================
   1. BASE STYLES (Mobile First)
   ========================================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 0 !important;
}
.container {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}
.column {
    width: 100%;
    margin-bottom: 20px;
}

/* =========================================
   2. TABLET VIEWS (Screens 768px and wider)
   ========================================= */
@media screen and (min-width: 768px) {
    .container {
        display: flex;
        flex-wrap: wrap; 
        justify-content: space-between;
    }
    .column {
        width: 48%;
    }
}

/* =========================================
   3. DESKTOP VIEWS (Screens 1024px and wider)
   ========================================= */
@media screen and (min-width: 1024px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .column {
        width: 31%;
    }
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    height: 75vh;
    min-height: 500px; 
    overflow: hidden;
    margin-top: 100px; 
    margin-bottom: 0px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, #f5b942 100%);
    z-index: 20;
}
.slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        120deg,
        rgba(5, 25, 65, 0.78) 0%,
        rgba(5, 25, 65, 0.45) 60%,
        rgba(5, 25, 65, 0.15) 100%
    );
}
.slide-content {
    position: relative; z-index: 2;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto; 
    padding: 0 20px;
    color: var(--white);
}
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.92);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
    animation: slideTagIn 0.6s ease 0.3s both;
}
@keyframes slideTagIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }

.slide-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: slideHeadIn 0.7s ease 0.45s both;
}
@keyframes slideHeadIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.slide-content h1 span { color: var(--accent-lt); }

.slide-content p {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    opacity: 0.88;
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 540px;
    animation: slidePIn 0.7s ease 0.6s both;
}
@keyframes slidePIn { from { opacity:0; transform:translateY(16px); } to { opacity:0.88; transform:none; } }

.slide-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 5px;
    animation: slideBtnIn 0.7s ease 0.75s both;
}
@keyframes slideBtnIn { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:none; } }

.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700; font-size: 14px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231,130,36,0.4);
}
.btn-hero-primary:hover {
    background: #d4751f;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(231,130,36,0.5);
}
.btn-hero-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 2px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(6px);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600; font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.9);
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.slider-prev:hover, .slider-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}
.slider-prev { left: 30px; }
.slider-next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex; gap: 8px;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.dot.active {
    background: var(--accent);
    width: 32px;
}

/* ═══════════════════════════════════════════════════
   STATS BAR (1 ROW & POPPINS)
   ═══════════════════════════════════════════════════ */
.stats-bar {
    background: var(--primary);
    position: relative;
    z-index: 10;
}
.stats-bar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.10);
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.03);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-item:last-child { border-right: none; }

.stat-icon-wrap {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-lt);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.stat-item:hover .stat-icon-wrap {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: scale(1.08) rotate(-5deg);
}

.stat-text { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}
.stat-num-wrap {
    display: flex;
    align-items: baseline;
}
.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-lt);
}
.stat-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-lt);
    margin-left: 2px;
}
.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    opacity: 0.85;
    letter-spacing: 0.5px;
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   SHARED SECTION COMPONENTS (ALL HEADINGS PERFECT CENTER)
   ═══════════════════════════════════════════════════ */
.section-header.text-center { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    width: 100%;
    margin-bottom: 40px; 
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    text-align: center;
}
.section-tag::before {
    display: none; 
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: var(--primary-dk);
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center;
}
.title-line {
    width: 56px; height: 4px;
    background: linear-gradient(90deg, var(--accent), #f5b942);
    border-radius: 2px;
}
.title-line.centered { margin: 0 auto 10px auto; } 

.section-sub {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin: 15px auto 0 auto !important; 
    text-align: center;
}

.light .section-title,
.light .section-sub { color: rgba(255,255,255,0.9); }
.light .section-tag { color: var(--accent-lt); }
.light .section-tag::before { display: none; }
.mt-20 { margin-top: 20px !important; }
.mt-40 { margin-top: 40px; }

/* ═══════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-img-wrap { position: relative; padding: 12px 0 0 12px; }
.about-main-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(10,40,100,0.18);
    position: relative; z-index: 1;
    display: block;
}
.about-img-accent {
    position: absolute;
    top: 0; left: 0;
    width: 110%; height: 110%;
    border: 3px solid var(--accent);
    border-radius: 18px;
    z-index: 0;
    opacity: 0.7;
}
.about-badge {
    position: absolute;
    bottom: 24px; right: -18px;
    z-index: 2;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.14);
    text-align: center;
    min-width: 120px;
    border-top: 4px solid var(--accent);
}
.about-badge .badge-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.about-badge .badge-text {
    font-size: 10.5px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-top: 5px;
    display: block;
}

/* LEFT ALIGNED TEXT AFTER HEADER */
.about-lead {
    font-size: 1rem;
    color: var(--primary-dk);
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: left;
}
.about-content p { 
    color: var(--text-muted); 
    margin-bottom: 12px; 
    line-height: 1.8; 
    text-align: left;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}
.hl-item {
    display: flex; align-items: center; gap: 12px;
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px; font-weight: 600;
    color: var(--primary-dk);
    transition: all 0.3s ease;
}
.hl-item:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10,40,100,0.15);
}
.hl-icon {
    color: var(--accent);
    font-size: 14px;
    transition: color 0.3s;
}
.hl-item:hover .hl-icon { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════════════
   PRINCIPAL'S MESSAGE
   ═══════════════════════════════════════════════════ */
.principal-section {
    background: var(--light);
    position: relative;
    overflow: hidden;
}
.principal-bg-shape {
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231,130,36,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.principal-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    align-items: center;
}
.principal-img-wrap {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}
.principal-img {
    width: 95%;
    aspect-ratio: 3/4;
    object-fit: cover;
   top: 0px; left: 9px;
    border-radius: 18px;
    position: relative; z-index: 1;
    box-shadow: 0 20px 50px rgba(10,40,100,0.16);
}
.principal-frame {
    position: absolute;
    top: 10px; left: 0px;
    width: 100%; height: 90%;
    border: 3px solid var(--accent);
    border-radius: 18px;
    z-index: 0;
    opacity: 0.7;
}
.principal-badge {
    position: absolute;
    top: -16px; right: -16px;
    z-index: 3;
    width: 58px; height: 58px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 8px 24px rgba(231,130,36,0.4);
}

.principal-quote {
    font-size: 1.05rem;
    color: var(--primary-dk);
    font-weight: 500;
    font-style: italic;
    line-height: 1.8;
    margin: 0 0 24px;
    padding: 20px 24px;
    border-left: 4px solid var(--accent);
    background: rgba(231,130,36,0.05);
    border-radius: 0 12px 12px 0;
}
.principal-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}
.principal-sig {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.sig-text strong {
    display: block;
    color: var(--primary-dk);
    font-size: 1rem;
    font-weight: 700;
}
.sig-text span { font-size: 12.5px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   ACADEMICS
   ═══════════════════════════════════════════════════ */
.academics-section { background: var(--white); }
.academics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.acad-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(10,40,100,0.07);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    display: flex; flex-direction: column;
}
.acad-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10,40,100,0.15);
    border-color: transparent;
}
.acad-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 6px 28px rgba(231,130,36,0.15);
}
.acad-card.featured:hover {
    box-shadow: 0 20px 50px rgba(231,130,36,0.25);
}

.acad-img { position: relative; overflow: hidden; }
.acad-img img {
    width: 100%; aspect-ratio: 16/9; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    display: block;
}
.acad-card:hover .acad-img img { transform: scale(1.08); }

.acad-overlay {
    position: absolute; inset: 0;
    background: rgba(10,35,80,0.75);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.acad-card:hover .acad-overlay { opacity: 1; }
.acad-overlay a {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700; font-size: 13px;
    transition: all 0.25s ease;
    text-decoration: none;
}
.acad-overlay a:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.acad-badge-tag {
    position: absolute; top: 14px; right: 14px;
    background: var(--accent); color: var(--white);
    font-size: 10.5px; font-weight: 700;
    padding: 4px 14px; border-radius: 20px;
    letter-spacing: 0.5px;
}

.acad-body { padding: 26px; flex: 1; text-align: left; }
.acad-label {
    font-size: 10px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.acad-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-dk);
    margin: 8px 0 10px;
}
.acad-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.acad-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.acad-features li {
    font-size: 12.5px;
    color: var(--text-muted);
    display: flex; gap: 10px; align-items: center;
}
.acad-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   ACTIVITIES
   ═══════════════════════════════════════════════════ */
.activities-section {
    background: var(--primary-dk);
    position: relative;
    overflow: hidden;
}
.activities-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(231,130,36,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative; z-index: 1;
}
.act-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 32px 22px;
    text-align: center;
    color: var(--white);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    cursor: default;
}
.act-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.act-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.35s ease;
}
.act-card:hover .act-icon { transform: scale(1.2) rotate(-5deg); }
.act-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.act-card p { font-size: 12.5px; opacity: 0.6; line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   GALLERY (2 ROWS GRID)
   ═══════════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* FORCES 3 COLUMNS -> Exactly 2 rows for 6 images */
    gap: 20px;
}
.gallery-grid .g-item {
    aspect-ratio: 4 / 3; 
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}
.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    display: block;
}
.g-item:hover img { transform: scale(1.08); }
.g-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent 0%, rgba(5,25,65,0.80) 100%);
    padding: 36px 18px 16px;
    color: var(--white);
    font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.35s ease;
    text-align: center;
}
.g-item:hover .g-caption { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   ADMISSIONS CTA
   ═══════════════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, #0a1f50 0%, #1a4b8c 100%);
    position: relative;
    overflow: hidden;
}
.cta-bg-overlay {
    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'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%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"),
        radial-gradient(circle at 80% 50%, rgba(231,130,36,0.12) 0%, transparent 60%);
}
.cta-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 72px;
    align-items: center;
}
.cta-content { color: var(--white); }
.cta-highlight { color: var(--accent-lt); }
.cta-content > p { opacity: 0.8; margin-bottom: 28px; line-height: 1.8; font-size: 15px; }

.cta-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}
.cta-info-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 16px 18px;
    transition: background 0.3s ease;
}
.cta-info-item:hover { background: rgba(255,255,255,0.10); }
.cii-icon { font-size: 1.1rem; color: var(--accent-lt); margin-bottom: 8px; display: block; }
.cii-label {
    display: block;
    font-size: 10px;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    font-weight: 600;
}
.cii-val { font-size: 13.5px; font-weight: 700; color: var(--white); }

.accent-tag { color: var(--accent-lt) !important; }

.enq-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0,0,0,0.3);
}
.enq-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
    padding: 26px 32px 22px;
}
.enq-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}
.enq-card-header p { font-size: 13px; color: rgba(255,255,255,0.65); margin: 0; }
.enq-card form { padding: 28px 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 14px; }
.fg label {
    display: flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.8px;
    margin-bottom: 7px;
}
.fg label i { font-size: 10px; color: var(--accent); }
.fg input, .fg select {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: var(--text);
    background: var(--white);
    transition: all 0.25s ease;
    box-sizing: border-box;
}
.fg input:focus, .fg select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(231,130,36,0.10);
}
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #d4751f 100%);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 6px 20px rgba(231,130,36,0.35);
    margin-top: 4px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(231,130,36,0.45);
}

/* ═══════════════════════════════════════════════════
   NEWS & NOTICES
   ═══════════════════════════════════════════════════ */
.news-section { background: #f8f9fc; }
.notice-list { margin-top: 28px; }
.notice-item {
    display: flex; gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
    transition: padding-left 0.25s ease;
}
.notice-item:first-child { padding-top: 0; }
.notice-item:hover { padding-left: 8px; }
.n-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: linear-gradient(135deg, var(--accent) 0%, #d4751f 100%);
    color: var(--white);
    font-size: 10.5px; font-weight: 700;
    padding: 4px 11px; border-radius: 20px;
    white-space: nowrap; flex-shrink: 0;
    margin-top: 2px;
}
.notice-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   SHARED BUTTONS
   ═══════════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700; font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(10,40,100,0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(10,40,100,0.28);
}
.btn-outline.dark {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700; font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline.dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white);
    color: var(--primary-dk);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700; font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-white:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231,130,36,0.3);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-slider       { height: 80vh; }
    .about-grid        { gap: 48px; }
    .principal-grid    { grid-template-columns: 280px 1fr; gap: 48px; }
    .academics-grid    { grid-template-columns: 1fr 1fr; }
    .activities-grid   { grid-template-columns: repeat(4, 1fr); }
    .cta-grid          { grid-template-columns: 1fr; }
    .cta-grid .enq-card { max-width: 540px; margin: 0 auto; width: 100%; }
    .stats-bar-inner   { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-slider       { height: 85vh; min-height: 520px; cursor: grab; }
    .slide-content     { padding: 60px 28px 80px; margin-bottom: 40px; }

    .stats-bar-inner   { grid-template-columns: repeat(2, 1fr); }
    .stat-item         {
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 20px 16px;
    }
    .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
    .stat-icon-wrap    { width: 42px; height: 42px; font-size: 1.1rem; }
    .stat-num          { font-size: 1.6rem; }

    .about-grid        { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrap    { padding: 0; }
    .about-img-accent  { display: none; }
    .about-badge       { right: 12px; }

    .principal-grid    { grid-template-columns: 1fr; gap: 36px; }
    .principal-img-wrap { order: -1; max-width: 280px; margin: 0 auto; }
    .principal-frame   { display: none; }
    .principal-badge   { top: -10px; right: 10px; }

    .academics-grid    { grid-template-columns: 1fr; }

    .activities-grid   { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    
    .gallery-grid      { grid-template-columns: repeat(2, 1fr); } /* Tablet par 2 column x 3 rows */

    .cta-info-grid     { grid-template-columns: 1fr 1fr; }

    .form-row          { grid-template-columns: 1fr; gap: 0; }
    .enq-card form     { padding: 22px 22px; }
    .enq-card-header   { padding: 22px 22px 18px; }

    .slider-prev       { left: 12px; }
    .slider-next       { right: 12px; }
    .slider-prev,
    .slider-next       { width: 44px; height: 44px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-slider       { height: 90vh; margin-top: 80px; } 
    .slide-content     { padding: 50px 20px 70px; }

    .stats-bar-inner   { grid-template-columns: 1fr 1fr; }
    .stat-item         { padding: 16px 12px; gap: 10px; }
    .stat-icon-wrap    { display: none; }

    .about-highlights  { grid-template-columns: 1fr; }

    .activities-grid   { grid-template-columns: 1fr 1fr; gap: 12px; }
    .act-card          { padding: 22px 16px; }

    .gallery-grid      { grid-template-columns: 1fr; } /* Mobile par 1 column */

    .cta-info-grid     { grid-template-columns: 1fr; }

    .slide-btns        { flex-direction: column; gap: 10px; }
    .btn-hero-primary,
    .btn-hero-outline  { text-align: center; justify-content: center; }

    .section-title     { font-size: 1.5rem; }
    .principal-quote   { font-size: 0.95rem; }
}