/* ==========================================================
   KIDSFORT PRIMARY SCHOOL – Frontend CSS
   Mobile-first, no dependencies, production-ready
   ========================================================== */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
    --primary:      #1d4ed8;
    --primary-dark: #1e3a8a;
    --primary-light:#eff6ff;
    --accent:       #f59e0b;
    --accent-light: #fffbeb;
    --green:        #16a34a;
    --green-light:  #f0fdf4;
    --red:          #dc2626;
    --text:         #1e293b;
    --text-muted:   #64748b;
    --border:       #e2e8f0;
    --bg:           #ffffff;
    --bg-light:     #f8fafc;
    --radius:       12px;
    --radius-sm:    8px;
    --shadow:       0 4px 24px rgba(0,0,0,.08);
    --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
    --transition:   .2s ease;
    --font:         'Segoe UI', system-ui, -apple-system, sans-serif;
    --max-w:        1200px;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); }
p { margin: 0 0 1rem; }
h1,h2,h3,h4,h5 { margin: 0 0 .75rem; line-height: 1.25; font-weight: 700; }
ul { margin: 0; padding: 0; }

/* ── Container ──────────────────────────────────────────── */
.sk-container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Notice Ticker ──────────────────────────────────────── */
.notice-ticker {
    background: var(--primary-dark);
    color: #fff;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .45rem 1.25rem;
    font-size: .82rem;
    overflow: hidden;
}
.ticker-label {
    white-space: nowrap;
    font-weight: 700;
    font-size: .78rem;
    background: rgba(255,255,255,.18);
    padding: .15rem .5rem;
    border-radius: 4px;
    flex-shrink: 0;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-content {
    display: inline-flex;
    gap: 1.5rem;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
}
.ticker-content:hover { animation-play-state: paused; }
.ticker-sep { opacity: .4; }
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-all {
    white-space: nowrap;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: .78rem;
    flex-shrink: 0;
}

/* ── Header ─────────────────────────────────────────────── */
.sk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.sk-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.1); }
.sk-header .sk-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: .6rem;
    padding-bottom: .6rem;
    min-height: 68px;
}
.sk-logo { flex-shrink: 0; }
.sk-logo-img { max-height: 70px; width: auto; }
.sk-logo-text {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}
.sk-logo-icon { font-size: 1.8rem; }
.sk-logo-name {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--primary);
    line-height: 1.2;
}
.sk-logo-tagline {
    display: block;
    font-size: .68rem;
    color: var(--text-muted);
    font-weight: 500;
}

.sk-nav {
    display: none;
    gap: .1rem;
    flex: 1;
    justify-content: center;
}
.sk-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    padding: .4rem .65rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.sk-nav a:hover, .sk-nav a.active {
    background: var(--primary-light);
    color: var(--primary);
}

.sk-admit-btn {
    background: var(--accent);
    color: #1a1a1a;
    font-weight: 700;
    font-size: .83rem;
    padding: .5rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity var(--transition);
    flex-shrink: 0;
}
.sk-admit-btn:hover { opacity: .88; }

.sk-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: .35rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}
.sk-hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Mobile overlay ─────────────────────────────────────── */
.sk-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,.5);
}
.sk-overlay.open { display: flex; }
.sk-overlay-nav {
    background: #fff;
    width: min(300px, 85vw);
    height: 100%;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    overflow-y: auto;
    animation: slideIn .25s ease;
}
@keyframes slideIn { from { transform: translateX(-100%); } }
.sk-overlay-nav a {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: .65rem .75rem;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-weight: 500;
}
.sk-overlay-nav a:hover { background: var(--primary-light); color: var(--primary); }
.sk-overlay-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    align-self: flex-end;
    padding: .25rem;
    margin-bottom: .5rem;
    color: var(--text-muted);
}
.sk-overlay-admit {
    margin-top: .75rem;
    background: var(--accent);
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
    padding: .65rem !important;
    border-radius: var(--radius-sm);
}

/* ── Popup Notice ───────────────────────────────────────── */
.sk-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0,0,0,.5);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.sk-popup {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow);
}
.sk-popup-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: .85rem;
    color: var(--text-muted);
}
.sk-popup-badge {
    background: var(--primary-light);
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: .75rem;
}
.sk-popup h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.sk-popup p { font-size: .9rem; color: var(--text-muted); }
.sk-popup-link { color: var(--primary); font-size: .875rem; font-weight: 600; }

/* ── Sections ───────────────────────────────────────────── */
.sk-section { padding: 4rem 0; }
.sk-section-light { background: var(--bg-light); }
.sk-section-accent {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
}
.sk-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.sk-section-header h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.sk-section-header p { color: var(--text-muted); max-width: 560px; margin: .5rem auto 0; }
.sk-section-header--light h2, .sk-section-header--light p { color: #fff; }
.sk-section-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .25rem .75rem;
    border-radius: 999px;
    margin-bottom: .5rem;
}
.sk-section-label--light {
    background: rgba(255,255,255,.2);
    color: #fff;
}

/* ── Buttons ────────────────────────────────────────────── */
.sk-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all var(--transition);
    line-height: 1;
}
.sk-btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(29,78,216,.3);
}
.sk-btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.sk-btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.sk-btn-outline:hover { background: var(--primary-light); }
.sk-btn-ghost {
    background: rgba(255,255,255,.15);
    color: #fff;
    border-color: rgba(255,255,255,.4);
}
.sk-btn-ghost:hover { background: rgba(255,255,255,.25); }
.sk-btn-white {
    background: #fff;
    color: var(--primary);
}
.sk-btn-white:hover { background: var(--primary-light); }
.sk-btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37,211,102,.3);
}
.sk-btn-whatsapp:hover { background: #1ebe5d; }

/* ── Hero ───────────────────────────────────────────────── */
.sk-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, var(--primary) 60%, #0ea5e9 100%);
    overflow: hidden;
}
.sk-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.04'%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");
}
.sk-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,23,42,.6) 0%, transparent 70%);
}
.sk-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 4rem 1.25rem;
    max-width: 700px;
}
.sk-hero-badges {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.sk-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    font-size: .8rem;
    font-weight: 600;
    padding: .3rem .8rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
}
.sk-hero-badge--est {
    background: rgba(245,158,11,.25);
    border-color: rgba(245,158,11,.5);
    color: #fde68a;
}
.sk-hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.sk-hero-content p {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 1.75rem;
    max-width: 560px;
}
.sk-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.sk-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.2);
    flex-wrap: wrap;
}
.sk-hero-stats div { display: flex; flex-direction: column; }
.sk-hero-stats strong { font-size: 1.5rem; font-weight: 800; }
.sk-hero-stats span  { font-size: .75rem; opacity: .7; }

/* ── Hero Image Banner ──────────────────────────────────── */
/* Image: 1717×916 (1.875:1 aspect ratio)                   */
/* Visual CTAs in image sit at ~78.5% from top, ~4.5% left  */
.sk-hero-img-section {
    width: 100%;
    overflow: hidden;
}
.sk-hero-img-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
    font-size: 0;
}
.sk-hero-photo {
    width: 100%;
    height: auto;
    display: block;
}
.sk-sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Overlay container — centered over image's visual button row */
.sk-hero-btn-layer {
    position: absolute;
    top: 78.5%;
    left: 4.5%;
    transform: translateY(-50%);
    display: flex;
    gap: 1.2vw;
    z-index: 5;
}

/* Base button */
.sk-hbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition:
        background   0.3s  ease,
        box-shadow   0.35s ease,
        border-color 0.3s  ease,
        transform    0.22s ease;
    /* Scale text + padding proportionally with image width */
    font-size:  clamp(0.72rem, 1.05vw, 1rem);
    padding:    clamp(0.55rem, 0.85vw, 0.85rem) clamp(0.9rem, 1.6vw, 1.65rem);
}
.sk-hbtn:focus-visible {
    outline: 3px solid rgba(245,158,11,.85);
    outline-offset: 3px;
}

/* "Apply for Admission" — amber filled, matching image button */
.sk-hbtn--gold {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #1e1b4b;
}
.sk-hbtn--gold:hover {
    background: #d97706;
    border-color: #d97706;
    color: #fff;
    box-shadow:
        0 0 20px rgba(245,158,11,.60),
        0 0 45px rgba(245,158,11,.22),
        0 6px 20px rgba(0,0,0,.20);
    transform: translateY(-2px);
}

/* "Learn About Us" — white outline, matching image button */
.sk-hbtn--outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}
.sk-hbtn--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.9);
    box-shadow:
        0 0 16px rgba(255,255,255,.35),
        0 4px 20px rgba(0,0,0,.12);
    transform: translateY(-2px);
}

/* Tablet 769 – 1024 */
@media (max-width: 1024px) {
    .sk-hero-btn-layer { gap: 1.5vw; }
}
/* Small tablet 577 – 768 */
@media (max-width: 768px) {
    .sk-hero-btn-layer { top: 77%; left: 4%; gap: 2vw; }
    .sk-hbtn { font-size: clamp(0.65rem, 1.5vw, 0.85rem); }
}
/* Mobile ≤ 576px */
@media (max-width: 576px) {
    .sk-hero-btn-layer {
        top: 79%;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 3vw;
        justify-content: center;
    }
    .sk-hbtn {
        font-size: clamp(0.6rem, 3.2vw, 0.82rem);
        padding: 0.5rem 1rem;
        border-radius: 6px;
    }
}

/* ── Admission Banner ───────────────────────────────────── */
.sk-admission-banner {
    background: var(--accent);
    padding: .75rem 0;
}
.sk-admission-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.sk-admission-inner strong { font-size: .95rem; }
.sk-blink { animation: blink 1s step-start infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ── About Grid ─────────────────────────────────────────── */
.sk-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.sk-about-img-placeholder {
    background: linear-gradient(135deg, var(--primary-light), #dbeafe);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    min-height: 280px;
}
.sk-about-img-placeholder span { font-size: 4rem; margin-bottom: .5rem; }
.sk-about-img-placeholder p { margin: 0; color: var(--text-muted); font-weight: 600; }
.sk-about-text { }
.sk-about-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.sk-feature-list { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.sk-feature-item { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }

/* ── Features Grid ──────────────────────────────────────── */
.sk-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}
.sk-feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.sk-feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.sk-feature-icon { font-size: 2rem; margin-bottom: .75rem; }
.sk-feature-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.sk-feature-card p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* ── Notices (Section) ──────────────────────────────────── */
.sk-notices-list { display: flex; flex-direction: column; gap: .75rem; }
.sk-notice-item {
    display: block;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: #fff;
    transition: background var(--transition);
    position: relative;
}
.sk-notice-item:hover { background: rgba(255,255,255,.18); }
.sk-notice-meta { display: flex; justify-content: space-between; font-size: .78rem; opacity: .75; margin-bottom: .3rem; }
.sk-notice-title { margin: 0; font-size: .95rem; font-weight: 500; }
.sk-notice-badge {
    position: absolute;
    top: .5rem;
    right: .5rem;
    background: var(--accent);
    color: #1a1a1a;
    font-size: .7rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 4px;
}
.sk-notice-urgent  { border-left: 4px solid #f87171; }
.sk-notice-important { border-left: 4px solid var(--accent); }
.sk-notice-normal  { border-left: 4px solid rgba(255,255,255,.3); }

/* ── Events ─────────────────────────────────────────────── */
.sk-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.sk-event-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: box-shadow var(--transition);
}
.sk-event-card:hover { box-shadow: var(--shadow-sm); }
.sk-event-date {
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    min-width: 52px;
    text-align: center;
    padding: .5rem .25rem;
    flex-shrink: 0;
}
.sk-event-day { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1; }
.sk-event-month { display: block; font-size: .7rem; font-weight: 600; opacity: .85; }
.sk-event-body h3 { font-size: .95rem; margin-bottom: .3rem; }
.sk-event-venue, .sk-event-time { font-size: .8rem; color: var(--text-muted); margin: 0; }
.sk-events-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.sk-event-card--featured { flex-direction: column; padding: 0; overflow: hidden; }
.sk-event-card--featured .sk-event-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.sk-event-card--featured .sk-event-img img { width: 100%; height: 100%; object-fit: cover; }
.sk-event-card-body { padding: 1.25rem; flex: 1; }
.sk-event-date-badge { display: flex; gap: .35rem; align-items: baseline; margin-bottom: .5rem; }
.sk-event-date-badge .sk-event-day { background: var(--primary); color: #fff; padding: .2rem .6rem; border-radius: 4px; font-size: 1.2rem; font-weight: 800; }
.sk-event-date-badge .sk-event-month { font-size: .85rem; color: var(--text-muted); font-weight: 600; }

/* ── Faculty ─────────────────────────────────────────────── */
.sk-faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
}
.sk-faculty-grid--large { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.sk-faculty-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}
.sk-faculty-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.sk-faculty-photo { margin-bottom: 1rem; }
.sk-faculty-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 3px solid var(--primary-light);
}
.sk-faculty-photo--lg img { width: 100px; height: 100px; }
.sk-faculty-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.sk-faculty-info h3 { font-size: .95rem; margin-bottom: .2rem; }
.sk-faculty-info p, .sk-faculty-role { font-size: .82rem; color: var(--primary); font-weight: 600; margin: 0; }
.sk-faculty-qual, .sk-faculty-exp { font-size: .78rem; color: var(--text-muted); margin: .2rem 0 0; }
.sk-faculty-dept {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: .72rem;
    padding: .15rem .5rem;
    border-radius: 4px;
    margin-top: .4rem;
    font-weight: 600;
}

/* ── Principal Message ──────────────────────────────────── */
.sk-principal-msg {
    background: linear-gradient(135deg, var(--primary-light), var(--bg));
    border: 1px solid #dbeafe;
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
.sk-principal-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--shadow-sm);
}
.sk-principal-text { flex: 1; min-width: 260px; }
.sk-principal-text h2 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
.sk-principal-sig { margin-top: 1rem; }
.sk-principal-sig strong { display: block; font-size: 1rem; }
.sk-principal-sig span  { display: block; font-size: .82rem; color: var(--text-muted); }

/* ── Gallery Preview ────────────────────────────────────── */
.sk-gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: .75rem;
}
.sk-gallery-thumb {
    position: relative;
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    text-decoration: none;
}
.sk-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.sk-gallery-thumb:hover img { transform: scale(1.08); }
.sk-gallery-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--primary-light);
}
.sk-gallery-thumb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    padding: 1rem .75rem .5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: .1rem;
    transform: translateY(100%);
    transition: transform .25s;
}
.sk-gallery-thumb:hover .sk-gallery-thumb-overlay { transform: translateY(0); }
.sk-gallery-thumb-overlay span { font-size: .85rem; font-weight: 700; }
.sk-gallery-thumb-overlay small { font-size: .72rem; opacity: .8; }

/* Gallery Albums Page */
.sk-gallery-albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.sk-album-card {
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    display: block;
}
.sk-album-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.sk-album-cover { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--primary-light); }
.sk-album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.sk-album-card:hover .sk-album-cover img { transform: scale(1.07); }
.sk-album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity .25s;
}
.sk-album-card:hover .sk-album-overlay { opacity: 1; }
.sk-album-count { font-size: 1.1rem; font-weight: 700; }
.sk-album-view  { font-size: .82rem; opacity: .9; margin-top: .25rem; }
.sk-album-info  { padding: 1rem; }
.sk-album-info h3 { font-size: 1rem; margin-bottom: .25rem; }
.sk-album-info p  { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ── News Grid ──────────────────────────────────────────── */
.sk-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.sk-news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: box-shadow var(--transition);
}
.sk-news-card:hover { box-shadow: var(--shadow-sm); }
.sk-news-meta { display: flex; gap: .75rem; font-size: .78rem; color: var(--text-muted); margin-bottom: .5rem; align-items: center; }
.sk-news-cat {
    background: var(--primary-light);
    color: var(--primary);
    padding: .15rem .5rem;
    border-radius: 4px;
    font-weight: 600;
}
.sk-news-card h3 { font-size: .95rem; margin-bottom: .5rem; }
.sk-news-card h3 a { color: var(--text); text-decoration: none; }
.sk-news-card h3 a:hover { color: var(--primary); }
.sk-news-card p { font-size: .875rem; color: var(--text-muted); margin-bottom: .75rem; }
.sk-news-read { font-size: .85rem; font-weight: 600; color: var(--primary); text-decoration: none; }

/* ── CTA Band ───────────────────────────────────────────── */
.sk-cta-band {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}
.sk-cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .5rem; }
.sk-cta-band p  { opacity: .85; margin-bottom: 1.75rem; font-size: 1rem; }

/* ── Page Banner ────────────────────────────────────────── */
.sk-page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 3rem 0 2.5rem;
    text-align: center;
}
.sk-page-banner h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: .4rem; }
.sk-page-banner p  { opacity: .85; margin-bottom: 1rem; font-size: 1rem; }
.sk-breadcrumb {
    display: flex;
    justify-content: center;
    gap: .5rem;
    font-size: .82rem;
    opacity: .75;
}
.sk-breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.sk-breadcrumb a:hover { color: #fff; }
.sk-breadcrumb span { opacity: .6; }

/* ── Page Image Banner (About etc.) ─────────────────────── */
.sk-page-banner-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
}
.sk-banner-photo {
    width: 100%;
    height: auto;
    display: block;
}
.sk-banner-breadcrumb-bar {
    background: #f0f4f8;
    border-bottom: 1px solid #dde3ea;
    padding: 0.6rem 0;
}
.sk-banner-breadcrumb-bar .sk-breadcrumb {
    justify-content: flex-start;
    opacity: 1;
}
.sk-banner-breadcrumb-bar .sk-breadcrumb a {
    color: var(--primary);
}
.sk-banner-breadcrumb-bar .sk-breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.sk-banner-breadcrumb-bar .sk-breadcrumb span {
    color: #64748b;
    opacity: 1;
}

/* ── Admissions Banner "ENROLL NOW" overlay button ─────── */
/* Image: 1717×916. Button is in navy section (bottom ~27%), */
/* right side — center at ~top:86%, left:79%                 */
.sk-enroll-now-btn {
    position: absolute;
    top: 94%;
    left: 77%;
    transform: translateY(-50%);
    width: 14.5vw;
    height: 3.8vw;
    min-width: 120px;
    min-height: 40px;
    max-width: 232px;
    max-height: 66px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    border: 2px solid transparent;
    z-index: 5;
    transition:
        background  0.3s ease,
        box-shadow  0.35s ease,
        transform   0.2s ease;
}
.sk-enroll-now-btn:hover {
    background: rgba(245, 158, 11, 0.18);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow:
        0 0 24px rgba(245, 158, 11, 0.65),
        0 0 52px rgba(245, 158, 11, 0.22);
    transform: translateY(calc(-50% - 2px));
}
.sk-enroll-now-btn:focus-visible {
    outline: 3px solid rgba(245, 158, 11, 0.9);
    outline-offset: 3px;
}
@media (max-width: 1024px) {
    .sk-enroll-now-btn { width: 16.5vw; height: 4.3vw; }
}
@media (max-width: 768px) {
    .sk-enroll-now-btn { top: 94%; left: 74%; width: 20.5vw; height: 5.5vw; }
}
@media (max-width: 576px) {
    .sk-enroll-now-btn { display: none; }
}

/* ── Two Column Layout ──────────────────────────────────── */
.sk-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* ── Form Card ──────────────────────────────────────────── */
.sk-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}
.sk-form-card h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.sk-field { margin-bottom: 1rem; }
.sk-field label { display: block; font-size: .85rem; font-weight: 600; color: #374151; margin-bottom: .35rem; }
.sk-field input, .sk-field select, .sk-field textarea {
    width: 100%;
    padding: .6rem .85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .9rem;
    color: var(--text);
    background: var(--bg-light);
    font-family: var(--font);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.sk-field input:focus, .sk-field select:focus, .sk-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(29,78,216,.1);
    background: #fff;
}
.sk-field textarea { resize: vertical; }

/* ── Alerts ─────────────────────────────────────────────── */
.sk-alert { padding: .9rem 1rem; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 1rem; }
.sk-alert--success { background: var(--green-light); color: #166534; border: 1px solid #bbf7d0; }
.sk-alert--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Info Boxes ─────────────────────────────────────────── */
.sk-info-box {
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.sk-info-box p { margin: .35rem 0 0; font-size: .875rem; }
.sk-info-box a { font-weight: 600; }
.sk-info-box--green { background: var(--green-light); color: #166534; border: 1px solid #bbf7d0; }
.sk-info-box--amber { background: var(--accent-light); color: #92400e; border: 1px solid #fde68a; }
.sk-info-box--blue  { background: var(--primary-light); color: #1e40af; border: 1px solid #bfdbfe; }

/* ── Steps ──────────────────────────────────────────────── */
.sk-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1rem; }
.sk-step { display: flex; gap: 1rem; align-items: flex-start; }
.sk-step-num {
    width: 36px; height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: .95rem;
}
.sk-step h4 { margin-bottom: .25rem; font-size: .95rem; }
.sk-step p  { margin: 0; font-size: .875rem; color: var(--text-muted); }

/* ── Info Table ─────────────────────────────────────────── */
.sk-info-table { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.sk-info-row {
    display: flex;
    justify-content: space-between;
    padding: .65rem 1rem;
    font-size: .875rem;
    border-bottom: 1px solid var(--border);
}
.sk-info-row:last-child { border-bottom: none; }
.sk-info-row span:first-child { color: var(--text-muted); }
.sk-info-row span:last-child  { font-weight: 600; }

/* ── Doc List ───────────────────────────────────────────── */
.sk-doc-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: .75rem;
}
.sk-doc-list li {
    padding: .5rem 1rem;
    background: var(--bg-light);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: .875rem;
}

/* ── Mission / Vision Cards ─────────────────────────────── */
.sk-mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}
.sk-mv-card {
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
}
.sk-mv-mission { background: var(--primary-light); border: 1px solid #bfdbfe; }
.sk-mv-vision  { background: var(--green-light);   border: 1px solid #bbf7d0; }
.sk-mv-values  { background: var(--accent-light);  border: 1px solid #fde68a; }
.sk-mv-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.sk-mv-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.sk-mv-card p  { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* ── Notices Board ──────────────────────────────────────── */
.sk-notices-board { display: flex; flex-direction: column; gap: .75rem; }
.sk-notice-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--border);
}
.sk-notice-card--urgent   { border-left-color: var(--red); }
.sk-notice-card--important{ border-left-color: var(--accent); }
.sk-notice-card--normal   { border-left-color: var(--primary); }
.sk-notice-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; flex-wrap: wrap; gap: .5rem; }
.sk-notice-card-title { margin: 0; font-size: 1rem; }
.sk-notice-card-desc { margin: .5rem 0 0; font-size: .875rem; color: var(--text-muted); }
.sk-notice-date { font-size: .78rem; color: var(--text-muted); }
.sk-notice-type-tag {
    background: var(--primary-light);
    color: var(--primary);
    font-size: .72rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 4px;
}
.sk-notice-priority-tag {
    font-size: .72rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 4px;
    margin-left: .35rem;
}
.sk-notice-priority-tag--urgent   { background: #fee2e2; color: #991b1b; }
.sk-notice-priority-tag--important{ background: #fef3c7; color: #92400e; }
.sk-notice-attachment {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: .5rem;
    font-size: .82rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* ── Badges (generic) ───────────────────────────────────── */
.sk-badge {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
}
.sk-badge--blue { background: #dbeafe; color: #1e40af; }
.sk-badge--gray { background: #f1f5f9; color: #475569; }

/* ── CTA Inline ─────────────────────────────────────────── */
.sk-cta-inline {
    background: linear-gradient(135deg, var(--primary-light), #e0f2fe);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2.5rem;
    text-align: center;
}
.sk-cta-inline h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.sk-cta-inline p  { color: var(--text-muted); margin-bottom: 1rem; }

/* ── Contact Quick ──────────────────────────────────────── */
.sk-contact-quick {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}
.sk-contact-quick h4 { margin-bottom: .75rem; font-size: .95rem; }

/* ── Footer ─────────────────────────────────────────────── */
.sk-footer {
    background: #0f172a;
    color: rgba(255,255,255,.8);
    padding: 3rem 0 0;
}
.sk-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.sk-footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
}
.sk-footer-brand p { font-size: .875rem; margin-bottom: .5rem; }
.sk-social { display: flex; gap: .75rem; margin-top: 1rem; }
.sk-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: background var(--transition);
}
.sk-social a:hover { background: var(--primary); color: #fff; }
.sk-footer-col h4 { color: #fff; font-size: .9rem; margin-bottom: .85rem; }
.sk-footer-col a { display: block; color: rgba(255,255,255,.65); text-decoration: none; font-size: .875rem; margin-bottom: .4rem; }
.sk-footer-col a:hover { color: #fff; }
.sk-footer-col p { font-size: .875rem; margin-bottom: .4rem; }
.sk-footer-col p a { display: inline; }
.sk-footer-admit {
    display: inline-block;
    margin-top: .5rem;
    background: var(--accent);
    color: #1a1a1a;
    padding: .4rem .85rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
    transition: opacity var(--transition);
}
.sk-footer-admit:hover { opacity: .88; }
.sk-footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
    font-size: .82rem;
    color: rgba(255,255,255,.45);
}
.sk-footer-bottom p { margin: 0; }

/* ── Responsive ─────────────────────────────────────────── */
@media (min-width: 640px) {
    .sk-two-col { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    .sk-hamburger { display: none; }
    .sk-nav { display: flex; }
    .sk-footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
    .sk-about-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .sk-section { padding: 5rem 0; }
    .sk-hero { min-height: 580px; }
}
