:root {
    --primary: #071b3a;
    --primary-2: #0b2d5c;
    --primary-3: #123f7a;
    --accent: #1d4ed8;
    --accent-light: #3b82f6;
    --gold: #d4af37;
    --gold-soft: #f7d774;
    --ice: #eef6ff;
    --sky: #dbeafe;
    --white: #ffffff;
    --text: #1f2a44;
    --muted: #64748b;
    --line: rgba(255, 255, 255, 0.55);
    --glass: rgba(255, 255, 255, 0.58);
    --glass-dark: rgba(7, 27, 58, 0.72);
    --success-bg: #ecfdf5;
    --success-text: #047857;
    --error-bg: #fef2f2;
    --error-text: #b91c1c;
    --shadow-sm: 0 10px 28px rgba(7, 27, 58, 0.08);
    --shadow-md: 0 22px 65px rgba(7, 27, 58, 0.16);
    --shadow-lg: 0 42px 100px rgba(7, 27, 58, 0.24);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--primary);
    background:
        radial-gradient(circle at 8% 12%, rgba(59, 130, 246, 0.24), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(212, 175, 55, 0.18), transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(14, 165, 233, 0.14), transparent 32%),
        linear-gradient(135deg, #eef6ff 0%, #dbeafe 48%, #f8fafc 100%);
    line-height: 1.65;
    font-size: 16px;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(238, 246, 255, 0.74);
    color: var(--primary);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}

.header-wrapper {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo a {
    display: block;
}

.logo h1 {
    color: var(--primary);
    font-size: 22px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.logo span {
    display: block;
    color: #47607f;
    font-size: 12px;
    font-weight: 600;
    margin-top: 3px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
}

.navbar a {
    color: #1e3a5f;
    padding: 9px 12px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.navbar a:hover,
.navbar a.active {
    background: rgba(29, 78, 216, 0.10);
    color: var(--accent);
}

.navbar a:hover {
    transform: translateY(-1px);
}

.portal-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-3)) !important;
    color: var(--white) !important;
    padding: 9px 16px !important;
    box-shadow: 0 12px 28px rgba(7, 27, 58, 0.24);
}

.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.75);
    color: var(--primary);
    border: 1px solid rgba(255,255,255,0.65);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 22px;
    cursor: pointer;
}

/* HERO */

.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 110px 0 135px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(7, 27, 58, 0.96), rgba(11, 45, 92, 0.92)),
        radial-gradient(circle at 14% 18%, rgba(59, 130, 246, 0.42), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(212, 175, 55, 0.26), transparent 34%),
        radial-gradient(circle at 65% 82%, rgba(14, 165, 233, 0.24), transparent 36%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    left: -190px;
    top: -230px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(59, 130, 246, 0.52), rgba(59, 130, 246, 0.14), transparent 68%);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    width: 780px;
    height: 780px;
    right: -220px;
    bottom: -260px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 36%, rgba(212,175,55,0.30), transparent 35%),
        radial-gradient(circle at 68% 64%, rgba(59,130,246,0.36), transparent 38%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.10), transparent 56%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 76px;
    align-items: center;
}

.hero-content {
    max-width: 790px;
}

.school-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: var(--gold-soft);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
}

.section-label {
    color: var(--accent);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 15px;
}

.hero h2 {
    max-width: 790px;
    color: var(--white);
    font-size: clamp(58px, 7vw, 98px);
    line-height: 0.92;
    letter-spacing: -0.085em;
    font-weight: 950;
    margin-bottom: 30px;
}

.hero p {
    max-width: 720px;
    color: #dbeafe;
    font-size: clamp(22px, 2.1vw, 29px);
    line-height: 1.36;
    margin-bottom: 34px;
    letter-spacing: -0.025em;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
    font: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #f7d774);
    color: var(--primary);
    box-shadow: 0 16px 34px rgba(212, 175, 55, 0.26);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f7d774, var(--gold));
}

.btn-outline {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.28);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 650px;
}

.hero-stat {
    padding: 21px 22px;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06)),
        radial-gradient(circle at 20% 18%, rgba(59,130,246,0.24), transparent 44%);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 20px 45px rgba(0,0,0,0.14);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.hero-stat strong {
    display: block;
    font-size: 36px;
    line-height: 1;
    color: var(--white);
    font-weight: 950;
    letter-spacing: -0.06em;
}

.hero-stat span {
    display: block;
    margin-top: 8px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 750;
}
.hero-image,
.image-placeholder {
    position: relative;
    min-height: 500px;
    border-radius: 42px;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: #dbeafe;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.17), rgba(255,255,255,0.05)),
        radial-gradient(circle at 24% 22%, rgba(59,130,246,0.55), transparent 34%),
        radial-gradient(circle at 76% 30%, rgba(212,175,55,0.32), transparent 36%);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    font-weight: 850;
}

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 42px;
}

.hero-image::before,
.image-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 42px;
    background:
        linear-gradient(180deg, rgba(7, 27, 58, 0.05), rgba(7, 27, 58, 0.32)),
        linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
    pointer-events: none;
    z-index: 1;
}

.image-placeholder::before {
    inset: 24px;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
}

.hero-image span,
.image-placeholder {
    position: relative;
    z-index: 2;
}
/* QUICK INFO */

.quick-info {
    margin-top: -70px;
    padding-bottom: 40px;
    position: relative;
    z-index: 3;
    background:
        linear-gradient(135deg, #dbeafe 0%, #eef6ff 52%, #f8fafc 100%);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.quick-card,
.feature-card,
.level-card,
.info-card,
.contact-form,
.event-card {
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(255,255,255,0.78);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.quick-card {
    padding: 24px;
    min-height: 150px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.quick-card:hover,
.feature-card:hover,
.level-card:hover,
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.quick-card::before,
.feature-card::before,
.level-card::before,
.info-card::before {
    content: "";
    display: block;
    height: 5px;
    border-radius: 999px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, var(--primary), var(--accent-light), var(--gold));
}

.quick-card:nth-child(2)::before,
.feature-card:nth-child(2n)::before,
.level-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.quick-card:nth-child(3)::before,
.feature-card:nth-child(3n)::before,
.level-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--gold), var(--primary-3));
}

.quick-card:nth-child(4)::before,
.feature-card:nth-child(4n)::before,
.level-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--primary), var(--gold));
}

.quick-card h3,
.feature-card h3,
.level-card h3,
.info-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.quick-card p,
.feature-card p,
.level-card p,
.info-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 8px;
}

/* SECTIONS */

.section-padding {
    padding: 92px 0;
}

.section-panel {
    border-top: 1px solid rgba(255,255,255,0.65);
    border-bottom: 1px solid rgba(255,255,255,0.55);
}

.section-gradient-blue {
    background:
        radial-gradient(circle at 12% 18%, rgba(29, 78, 216, 0.18), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(212, 175, 55, 0.16), transparent 28%),
        linear-gradient(135deg, #eef6ff 0%, #dbeafe 100%);
}

.section-gradient-purple {
    background:
        radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.18), transparent 30%),
        radial-gradient(circle at 84% 25%, rgba(212, 175, 55, 0.14), transparent 28%),
        linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
}

.section-gradient-gold {
    background:
        radial-gradient(circle at 18% 20%, rgba(212,175,55,0.20), transparent 30%),
        radial-gradient(circle at 86% 24%, rgba(29,78,216,0.16), transparent 30%),
        linear-gradient(135deg, #f8fafc 0%, #eef6ff 100%);
}

.two-column {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.two-column h2,
.section-title h2,
.news-events h2 {
    color: var(--primary);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    margin-bottom: 18px;
}

.two-column p {
    color: var(--text);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.text-link {
    color: var(--accent);
    font-weight: 800;
}

.bg-light,
.page-content {
    background:
        radial-gradient(circle at 15% 15%, rgba(29,78,216,0.16), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(212,175,55,0.14), transparent 26%),
        linear-gradient(135deg, #eef6ff, #dbeafe 50%, #f8fafc);
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.level-card,
.info-card {
    padding: 26px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: rgba(29, 78, 216, 0.10);
    color: var(--accent);
    border-radius: 50%;
    font-weight: 850;
    margin-bottom: 18px;
}

.card-image {
    height: 158px;
    background:
        radial-gradient(circle at 25% 22%, rgba(59,130,246,0.26), transparent 32%),
        radial-gradient(circle at 76% 70%, rgba(212,175,55,0.20), transparent 32%),
        linear-gradient(145deg, rgba(255,255,255,0.70), rgba(219,234,254,0.66));
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: var(--muted);
    margin-bottom: 18px;
    font-weight: 800;
}

/* NEWS AND EVENTS */

.news-events {
    background:
        radial-gradient(circle at 10% 20%, rgba(59,130,246,0.28), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(212,175,55,0.18), transparent 32%),
        radial-gradient(circle at 55% 90%, rgba(14,165,233,0.16), transparent 30%),
        linear-gradient(135deg, #06152d 0%, #071b3a 52%, #0b2d5c 100%);
    color: var(--white);
}

.news-events h2,
.news-events h3 {
    color: var(--white);
}

.gold {
    color: var(--gold-soft);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.news-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 20px 0;
}

.news-item h3 {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.news-item p,
.event-card p {
    color: #cbd5e1;
    font-size: 14px;
}

.news-events .event-card {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.16);
    padding: 22px;
    margin-bottom: 15px;
    box-shadow: none;
}

/* INNER PAGES */

.page-hero {
    padding: 86px 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(59,130,246,0.24), transparent 30%),
        radial-gradient(circle at 88% 16%, rgba(212,175,55,0.16), transparent 32%),
        linear-gradient(135deg, #eef6ff 0%, #dbeafe 55%, #f8fafc 100%);
    color: var(--primary);
}

.page-hero h2 {
    color: var(--primary);
}

.page-hero p {
    color: var(--text);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.contact-form {
    padding: 28px;
}

.contact-form label {
    display: block;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 7px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 14px;
    margin-bottom: 17px;
    font: inherit;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.78);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.13);
}

/* FOOTER */

.site-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(59,130,246,0.22), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(212,175,55,0.16), transparent 30%),
        #06152d;
    color: #cbd5e1;
    padding-top: 58px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.025em;
}

.site-footer p,
.site-footer a {
    font-size: 14px;
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 40px;
    font-size: 14px;
}

/* ALERTS */

.alert {
    padding: 13px 15px;
    border-radius: 14px;
    margin: 14px 0 18px;
    font-weight: 800;
}

.alert.success {
    background: var(--success-bg);
    color: var(--success-text);
    border: 1px solid #a7f3d0;
}

.alert.error {
    background: var(--error-bg);
    color: var(--error-text);
    border: 1px solid #fecaca;
}

/* ADMIN */

.narrow {
    width: min(520px, 92%);
}

.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn.danger {
    background: #dc2626;
    color: var(--white);
}

.stat-card h3 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 4px;
}

.table-wrap {
    overflow-x: auto;
    background: rgba(255,255,255,0.62);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.admin-table th,
.admin-table td {
    padding: 15px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    vertical-align: top;
}

.admin-table th {
    background: rgba(219, 234, 254, 0.72);
    color: var(--primary);
    font-size: 14px;
}

.admin-table small {
    color: var(--text);
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.10);
    color: var(--accent);
    font-size: 12px;
    font-weight: 850;
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .navbar {
        position: absolute;
        top: 72px;
        left: 4%;
        right: 4%;
        width: auto;
        background: rgba(238, 246, 255, 0.94);
        border: 1px solid rgba(255,255,255,0.75);
        border-radius: 22px;
        box-shadow: var(--shadow-md);
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        display: none;
    }

    .navbar.show {
        display: flex;
    }

    .navbar a {
        padding: 12px 14px;
    }

    .hero-grid,
    .two-column,
    .news-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-grid,
    .card-grid,
    .card-grid.four,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
    }

    .hero h2 {
        font-size: clamp(46px, 10vw, 74px);
    }

    .hero-image,
    .image-placeholder {
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .header-wrapper {
        min-height: 66px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo span {
        font-size: 11px;
    }

    .quick-grid,
    .card-grid,
    .card-grid.four,
    .footer-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 70px 0 110px;
    }

    .hero h2,
    .page-hero h2 {
        font-size: 44px;
    }

    .hero p,
    .page-hero p {
        font-size: 19px;
    }

    .hero-image,
    .image-placeholder {
        min-height: 300px;
        border-radius: 28px;
    }

    .section-padding {
        padding: 68px 0;
    }
}
.image-placeholder {
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.admissions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.admissions-grid .info-card {
    height: 100%;
}

.joining-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-top: 22px;
    margin-bottom: 35px;
}

.joining-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.joining-btn-primary {
    background-color: #f4c430;
    color: #071f3d;
    box-shadow: 0 10px 25px rgba(244, 196, 48, 0.35);
}

.joining-btn-primary:hover {
    background-color: #e0b11f;
    color: #071f3d;
    transform: translateY(-2px);
}

.joining-btn-secondary {
    background-color: #071f3d;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(7, 31, 61, 0.25);
}

.joining-btn-secondary:hover {
    background-color: #0d2f5c;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .admissions-grid {
        grid-template-columns: 1fr;
    }

    .joining-buttons {
        align-items: stretch;
    }

    .joining-btn {
        width: 100%;
        text-align: center;
    }
}


