/* ================================================================
   ADMISSIONS PAGE - Super Modern UI/UX with Animations
   Pragati Academy | #980D1A (crimson) + #B09845 (gold)
   ================================================================ */

/* Active nav state when on admissions page */
body.page-admissions .main-menu a[href="admissions.php"],
body.page-admissions .main-menu a[href="admissions.php"]:hover {
    color: #980D1A !important;
    font-weight: 600;
}

/* ── Hero Section ───────────────────────────────────────────── */
/* Standard modern split layout: left content, right image */
.admissions-hero {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.admissions-hero__grid {
    display: flex;
    height: 620px;
}

.admissions-hero__text-col {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding: 80px 56px 80px max(calc((100vw - var(--main-container)) / 2 + 24px), 24px);
    background: #fff;
    position: relative;
}

.admissions-hero__text-col::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(176, 152, 69, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.admissions-hero__text-inner {
    max-width: 480px;
}

.admissions-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--theme-color2);
    margin-bottom: 20px;
}

.admissions-hero__eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--theme-color2);
}

.admissions-hero__title {
    font-family: var(--title-font);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--title-color);
    margin-bottom: 12px;
}

.admissions-hero__title span {
    color: var(--theme-color);
}

.admissions-hero__tagline {
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color2);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.admissions-hero__desc {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
    color: #333;
    margin-bottom: 28px;
}

.admissions-hero__btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
}

.admissions-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--body-font);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
    min-width: 240px;
}

.admissions-hero__btn--primary {
    background: var(--theme-color);
    color: #fff;
    border: 2px solid var(--theme-color);
}

.admissions-hero__btn--primary:hover {
    background: #7a0a15;
    border-color: #7a0a15;
    color: #fff;
}

button.admissions-hero__btn {
    border: 2px solid var(--theme-color);
    font-family: var(--body-font);
    cursor: pointer;
}

.admissions-hero__btn--outline {
    background: #fff;
    color: var(--title-color);
    border: 1px solid #e0e0e0;
}

.admissions-hero__btn--outline:hover {
    border-color: #bbb;
    color: var(--title-color);
}

.admissions-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    list-style: none;
    font-size: 12px;
    color: #999;
}

.admissions-hero__breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.admissions-hero__breadcrumb a:hover {
    color: var(--theme-color);
}

.admissions-hero__breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    color: #ccc;
}

/* Right: Image slideshow column (like About hero) */
.admissions-hero__image-col {
    flex: 1;
    position: relative;
    overflow: hidden;
    clip-path: polygon(7% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: #111;
}

.admissions-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover !important;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: block;
    max-width: none;
    max-height: none;
    width: 100% !important;
    height: 100% !important;
}

.admissions-hero__slide--active {
    opacity: 1;
}

/* Ken Burns animations on slides */
.admissions-hero__slide--active {
    animation: admissionsKenBurns1 8s ease-out forwards;
}

.admissions-hero__slide--kb2.admissions-hero__slide--active {
    animation-name: admissionsKenBurns2;
}

.admissions-hero__slide--kb3.admissions-hero__slide--active {
    animation-name: admissionsKenBurns3;
}

/* Single hero image: no Ken Burns zoom/pan */
.admissions-hero__slide--static.admissions-hero__slide--active {
    animation: none;
    transform: none;
}

@keyframes admissionsKenBurns1 {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, -1%); }
}

@keyframes admissionsKenBurns2 {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.10) translate(2%, -2%); }
}

@keyframes admissionsKenBurns3 {
    0%   { transform: scale(1.05) translate(-1%, 1%); }
    100% { transform: scale(1.15) translate(1%, -1%); }
}

.admissions-hero__image-accent {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, transparent 30%, rgba(0,0,0,0.35) 100%),
        linear-gradient(135deg, rgba(152,13,26,0.25) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.admissions-hero__image-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #980D1A, #B09845, #980D1A);
    background-size: 200% 100%;
    animation: admissionsShimmerBar 3s linear infinite;
    z-index: 3;
}

@keyframes admissionsShimmerBar {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* ── Quick Action Cards ─────────────────────────────────────── */
.admissions-cards {
    padding: 100px 0;
    background: #fafaf8;
}

/* Equal-height cards: column stretches; card fills column; text grows; button stays bottom */
.admissions-cards .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.admission-card {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 44px 40px;
    border: 1px solid #eee;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.admission-card:hover {
    border-color: #e0e0e0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.admission-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(152,13,26,0.08);
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 24px;
    color: var(--theme-color);
}

.admission-card__title {
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 14px;
    line-height: 1.35;
}

.admission-card__text {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
    flex: 1 1 auto;
}

.admission-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    align-self: flex-start;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.admission-card__btn:hover {
    color: #7a0a15;
}

.admission-card__btn i {
    font-size: 11px;
}

/* ── Hostel showcase (Grade 5+) — premium admissions block ───── */
.adm-hostel-showcase {
    position: relative;
    padding: 88px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 120% 80% at 100% 0%, rgba(176, 152, 69, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 90% 70% at 0% 100%, rgba(152, 13, 26, 0.09) 0%, transparent 50%),
        linear-gradient(180deg, #f7f5f0 0%, #fdfcfa 45%, #fff 100%);
}

.adm-hostel-showcase__aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.adm-hostel-showcase__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: admHostelFloat 18s ease-in-out infinite;
}

.adm-hostel-showcase__orb--1 {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    background: rgba(152, 13, 26, 0.2);
    top: -8%;
    right: -5%;
    animation-delay: 0s;
}

.adm-hostel-showcase__orb--2 {
    width: min(360px, 50vw);
    height: min(360px, 50vw);
    background: rgba(176, 152, 69, 0.22);
    bottom: 10%;
    left: -10%;
    animation-delay: -6s;
}

.adm-hostel-showcase__orb--3 {
    width: min(280px, 40vw);
    height: min(280px, 40vw);
    background: rgba(152, 13, 26, 0.12);
    top: 40%;
    left: 35%;
    animation-delay: -12s;
}

@keyframes admHostelFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(2%, -3%) scale(1.05); }
    66% { transform: translate(-3%, 2%) scale(0.98); }
}

@media (prefers-reduced-motion: reduce) {
    .adm-hostel-showcase__orb {
        animation: none;
    }
}

.adm-hostel-showcase .container {
    z-index: 1;
}

.adm-hostel-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--theme-color2);
    margin-bottom: 18px;
}

.adm-hostel-showcase__eyebrow-line {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--theme-color2), var(--theme-color));
    border-radius: 2px;
}

.adm-hostel-showcase__title {
    font-family: var(--title-font);
    font-size: clamp(32px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--title-color);
    margin: 0 0 22px;
    letter-spacing: -0.02em;
}

.adm-hostel-showcase__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--theme-color) 0%, #c41e2a 50%, var(--theme-color2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.adm-hostel-showcase__lead {
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
    color: #2d2d2d;
    margin: 0 0 16px;
}

.adm-hostel-showcase__lead strong {
    color: var(--theme-color);
    font-weight: 700;
}

.adm-hostel-showcase__text {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.85;
    color: #555;
    margin: 0 0 22px;
    max-width: 540px;
}

.adm-hostel-showcase__ribbon {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(152, 13, 26, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
    color: #444;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.adm-hostel-showcase__ribbon i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--theme-color2);
    font-size: 18px;
}

.adm-hostel-showcase__ribbon-text {
    display: block;
    flex: 1;
    min-width: 0;
}

.adm-hostel-showcase__ribbon-text strong {
    color: var(--title-color);
    font-weight: 700;
}

/* Image column */
.adm-hostel-showcase__visual-block {
    position: relative;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.adm-hostel-showcase__visual-frame {
    position: relative;
    padding: 3px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(176, 152, 69, 0.85), rgba(152, 13, 26, 0.75), rgba(176, 152, 69, 0.5));
    box-shadow:
        0 24px 64px rgba(152, 13, 26, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.adm-hostel-showcase__visual-shine {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.45) 0%, transparent 42%, transparent 58%, rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
    z-index: 2;
}

.adm-hostel-showcase__visual-inner {
    border-radius: 25px;
    overflow: hidden;
    background: #111;
    line-height: 0;
}

.adm-hostel-showcase__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 667;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.adm-hostel-showcase__visual-block:hover .adm-hostel-showcase__img {
    transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .adm-hostel-showcase__img {
        transition: none;
    }
    .adm-hostel-showcase__visual-block:hover .adm-hostel-showcase__img {
        transform: none;
    }
}

.adm-hostel-showcase__float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    max-width: 240px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-family: var(--body-font);
    animation: admHostelCardBob 5s ease-in-out infinite;
}

.adm-hostel-showcase__float-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--title-color);
    line-height: 1.25;
}

.adm-hostel-showcase__float-card span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    line-height: 1.35;
    margin-top: 2px;
}

.adm-hostel-showcase__float-card > i {
    font-size: 22px;
    color: var(--theme-color);
    flex-shrink: 0;
}

.adm-hostel-showcase__float-card--a {
    left: -12px;
    bottom: 18%;
    animation-delay: 0s;
}

.adm-hostel-showcase__float-card--b {
    right: -8px;
    top: 12%;
    animation-delay: -2.5s;
}

@keyframes admHostelCardBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
    .adm-hostel-showcase__float-card {
        animation: none;
    }
}

/* Bento feature tiles */
.adm-hostel-showcase__bento {
    margin-top: 48px;
}

.adm-hostel-showcase__tile {
    height: 100%;
    min-height: 148px;
    padding: 22px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(152, 13, 26, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.adm-hostel-showcase__tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(152, 13, 26, 0.12);
    border-color: rgba(176, 152, 69, 0.35);
}

.adm-hostel-showcase__tile--accent {
    background: linear-gradient(145deg, rgba(152, 13, 26, 0.06) 0%, rgba(176, 152, 69, 0.1) 100%);
    border-color: rgba(176, 152, 69, 0.25);
}

.adm-hostel-showcase__tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(152, 13, 26, 0.12), rgba(176, 152, 69, 0.15));
    color: var(--theme-color);
    font-size: 20px;
}

.adm-hostel-showcase__tile--accent .adm-hostel-showcase__tile-icon {
    background: linear-gradient(135deg, var(--theme-color), #8f101c);
    color: #fff;
}

.adm-hostel-showcase__tile-title {
    font-family: var(--title-font);
    font-size: 15px;
    font-weight: 700;
    color: var(--title-color);
    margin: 0 0 8px;
    line-height: 1.3;
}

.adm-hostel-showcase__tile-text {
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    color: #666;
    margin: 0;
    flex: 1 1 auto;
}

.adm-hostel-showcase__cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    justify-content: center;
}

.adm-hostel-showcase__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 32px;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.adm-hostel-showcase__btn--primary {
    background: linear-gradient(135deg, var(--theme-color), #7a0a15);
    color: #fff;
    box-shadow: 0 10px 32px rgba(152, 13, 26, 0.32);
}

.adm-hostel-showcase__btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(152, 13, 26, 0.4);
}

.adm-hostel-showcase__btn--ghost {
    background: #fff;
    color: var(--title-color);
    border: 2px solid rgba(152, 13, 26, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.adm-hostel-showcase__btn--ghost:hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
    transform: translateY(-2px);
}

.adm-hostel-showcase__fineprint {
    text-align: center;
    font-family: var(--body-font);
    font-size: 13px;
    color: #888;
    margin: 20px 0 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
    padding: 0 4px;
}

/* Tablet & below: cleaner hero image (no overlapping float cards) */
@media (max-width: 991px) {
    .adm-hostel-showcase {
        padding: 60px 0 76px;
    }
    .adm-hostel-showcase__float-card {
        display: none;
    }
    .adm-hostel-showcase__visual-block {
        margin-top: 4px;
        margin-bottom: 12px;
        max-width: 480px;
    }
    .adm-hostel-showcase__visual-frame {
        border-radius: 22px;
    }
    .adm-hostel-showcase__visual-inner {
        border-radius: 19px;
    }
    .adm-hostel-showcase__visual-shine {
        border-radius: 22px;
    }
    .adm-hostel-showcase__copy {
        padding-right: 0;
        padding-left: 0;
    }
    .adm-hostel-showcase__bento {
        margin-top: 36px;
        --bs-gutter-x: 0.75rem;
    }
    .adm-hostel-showcase__tile {
        min-height: 132px;
        padding: 18px 14px;
    }
    .adm-hostel-showcase__tile-title {
        font-size: 14px;
    }
    .adm-hostel-showcase__tile-text {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .adm-hostel-showcase {
        padding: 48px 0 64px;
    }
    .adm-hostel-showcase__eyebrow {
        font-size: 20px;
        letter-spacing: 2.2px;
    }
    .adm-hostel-showcase__title {
        font-size: clamp(26px, 7vw, 34px);
        margin-bottom: 18px;
    }
    .adm-hostel-showcase__lead {
        font-size: 16px;
    }
    .adm-hostel-showcase__text {
        font-size: 14px;
        margin-bottom: 18px;
    }
    .adm-hostel-showcase__ribbon {
        padding: 14px 16px;
        font-size: 13px;
        line-height: 1.6;
    }
    .adm-hostel-showcase__ribbon i {
        font-size: 16px;
    }
    .adm-hostel-showcase__bento {
        margin-top: 28px;
    }
    .adm-hostel-showcase__tile {
        min-height: 0;
        padding: 16px 12px;
    }
    .adm-hostel-showcase__tile-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
        margin-bottom: 10px;
    }
    .adm-hostel-showcase__cta-row {
        margin-top: 28px;
    }
    .adm-hostel-showcase__fineprint {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .adm-hostel-showcase__cta-row {
        flex-direction: column;
        align-items: stretch;
        padding: 0 2px;
    }
    .adm-hostel-showcase__btn {
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── Academic Structure (Luxury Accordion – match About typography) ─────────────────────────────────────── */
.academic-structure {
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(180deg, #fafaf8 0%, #fff 100%);
    overflow: hidden;
}

.academic-structure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0ddd5, transparent);
}

.academic-structure__header {
    text-align: center;
    margin-bottom: 56px;
}

.academic-structure__header .sub-title {
    display: inline-block;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--theme-color2);
    margin-bottom: 14px;
}

.academic-structure__header .sec-title {
    font-family: var(--title-font);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    color: var(--title-color);
    line-height: 1.25;
}

.academic-accordion {
    max-width: 960px;
    margin: 0 auto;
}

.academic-item {
    position: relative;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.academic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.academic-item:hover {
    box-shadow: 0 12px 48px rgba(152,13,26,0.06);
    border-color: rgba(176,152,69,0.15);
}

.academic-item:hover::before {
    opacity: 1;
}

.academic-item.is-open {
    box-shadow: 0 16px 56px rgba(152,13,26,0.08);
    border-color: rgba(176,152,69,0.2);
}

.academic-item.is-open::before {
    opacity: 1;
}

.academic-item__header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 36px;
    cursor: pointer;
    transition: all 0.35s ease;
}

.academic-item__header:hover {
    background: rgba(176,152,69,0.03);
}

.academic-item.is-open .academic-item__header {
    background: linear-gradient(90deg, rgba(152,13,26,0.04), rgba(176,152,69,0.04));
}

.academic-item__badge {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--title-font);
    font-size: 13px;
    font-weight: 800;
    color: var(--theme-color2);
    background: linear-gradient(135deg, rgba(176,152,69,0.12), rgba(176,152,69,0.06));
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.academic-item.is-open .academic-item__badge {
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color2));
    color: #fff;
}

.academic-item__grade {
    flex: 1;
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--title-color);
    letter-spacing: 0.3px;
}

.academic-item__icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
    transition: all 0.35s ease;
}

.academic-item__icon {
    font-size: 12px;
    color: var(--theme-color);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.academic-item.is-open .academic-item__icon {
    transform: rotate(180deg);
}

.academic-item.is-open .academic-item__icon-wrap {
    background: rgba(152,13,26,0.08);
}

.academic-item__body {
    display: none;
    padding: 0 36px 40px;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.academic-item.is-open .academic-item__body {
    border-top-color: rgba(176,152,69,0.12);
}

.academic-item__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 32px;
}

.academic-item__col {
    padding-left: 20px;
    border-left: 3px solid var(--theme-color2);
}

.academic-item__col h4 {
    font-family: var(--title-font);
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-color2);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.academic-item__col p {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
    color: #333;
}

.academic-streams {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    padding-top: 32px;
}

.academic-stream {
    padding: 24px 20px;
    background: linear-gradient(135deg, rgba(152,13,26,0.02) 0%, rgba(176,152,69,0.04) 100%);
    border-radius: 16px;
    border: 1px solid rgba(176,152,69,0.1);
}

.academic-stream h4 {
    font-family: var(--title-font);
    font-size: 15px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.academic-stream h4 i {
    font-size: 18px;
    color: var(--theme-color2);
}

.academic-stream ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.academic-stream li {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.9;
    color: #333;
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
}

.academic-stream li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--theme-color2);
    font-weight: 700;
}

@media (max-width: 991px) {
    .academic-item__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .academic-streams {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .academic-item__header {
        padding: 22px 24px;
        gap: 16px;
    }
    .academic-item__badge {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
    .academic-item__grade {
        font-size: 16px;
    }
    .academic-item__body {
        padding: 0 24px 32px;
    }
    .academic-item__grid {
        padding-top: 24px;
    }
    .academic-stream {
        padding: 20px 18px;
    }
}

/* ── CTA Banner ────────────────────────────────────────────── */
.admissions-cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #980D1A 0%, #7a0a15 100%);
}

.admissions-cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding: 40px 48px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
}

.admissions-cta-banner__text {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    flex: 1;
    min-width: 280px;
    line-height: 1.6;
}

.admissions-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--theme-color2);
    color: #fff;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    white-space: nowrap;
    transition: all 0.35s ease;
}

.admissions-cta-banner__btn:hover {
    background: #9a8240;
    color: #fff;
    transform: translateX(6px);
}

/* ── Admission Criteria ─────────────────────────────────────── */
.admission-criteria {
    padding: 110px 0;
    background: #fff;
}

.admission-criteria__header {
    text-align: center;
    margin-bottom: 56px;
}

.admission-criteria__header .sub-title {
    font-family: var(--body-font);
    color: var(--theme-color2);
}

.admission-criteria__header .sec-title {
    font-family: var(--title-font);
    color: var(--title-color);
}

.admission-criteria__intro {
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 500;
    color: #333;
    margin-top: 18px;
}

.criteria-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 40px rgba(0,0,0,0.04);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.criteria-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(152,13,26,0.08);
    border-color: rgba(176,152,69,0.12);
}

.criteria-card__number {
    font-family: var(--title-font);
    font-size: 48px;
    font-weight: 900;
    color: rgba(152,13,26,0.1);
    line-height: 1;
    margin-bottom: 18px;
}

.criteria-card__title {
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 22px;
}

.criteria-card__intro {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 18px;
    line-height: 1.7;
}

.criteria-card__list {
    padding-left: 20px;
    margin: 0;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
    color: #333;
}

.criteria-card__list li {
    margin-bottom: 12px;
}

.criteria-card__list--bullet {
    list-style: none;
    padding-left: 0;
}

.criteria-card__list--bullet li {
    padding-left: 26px;
    position: relative;
}

.criteria-card__list--bullet li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--theme-color2);
    font-weight: 700;
}

/* ── Fee & Scholarship ─────────────────────────────────────── */
.fee-scholarship {
    padding: 110px 0;
    background: linear-gradient(180deg, #fafaf8 0%, #fff 100%);
}

.fee-card,
.scholarship-card {
    background: #fff;
    border-radius: 24px;
    padding: 52px 48px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 40px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fee-card:hover,
.scholarship-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(152,13,26,0.08);
    border-color: rgba(176,152,69,0.12);
}

.fee-card__icon,
.scholarship-card__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(152,13,26,0.08), rgba(176,152,69,0.12));
    border-radius: 20px;
    margin-bottom: 30px;
    font-size: 32px;
    color: var(--theme-color);
}

.scholarship-card__icon {
    background: linear-gradient(135deg, rgba(176,152,69,0.15), rgba(152,13,26,0.06));
}

.fee-card__title,
.scholarship-card__title {
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 22px;
}

.fee-card__text,
.scholarship-card__text {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
    color: #333;
    margin-bottom: 18px;
}

.scholarship-card__btn {
    display: inline-flex;
    align-items: center;
    margin-top: 28px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color2));
    color: #fff;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.35s ease;
}

.scholarship-card__btn:hover {
    color: #fff;
    transform: translateX(6px);
    box-shadow: 0 8px 28px rgba(152,13,26,0.3);
}

/* ── Register Section ───────────────────────────────────────── */
.admissions-register-section {
    padding: 100px 0 120px;
    background: #fafaf8;
}

.admissions-register {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 64px 72px;
    background: #fff;
    border: 1px solid #e8e6e1;
}

.admissions-register__label {
    display: block;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 12px;
}

.admissions-register__title {
    font-family: var(--title-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.admissions-register__text {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    color: #444;
}

.admissions-register__action {
    text-align: right;
}

.admissions-register__phones {
    margin-bottom: 24px;
}

.admissions-register__phones a {
    display: block;
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--title-color);
    text-decoration: none;
    margin-bottom: 8px;
}

.admissions-register__phones a:hover {
    color: var(--theme-color);
}

.admissions-register__btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--theme-color);
    border: 2px solid var(--theme-color);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.admissions-register__btn:hover {
    background: #7a0a15;
    border-color: #7a0a15;
    color: #fff;
}

@media (max-width: 767px) {
    .admissions-register {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 28px;
        text-align: center;
    }
    .admissions-register__action {
        text-align: center;
    }
    .admissions-register__phones a {
        font-size: 18px;
    }
}

/* ── Decorative floats (from about-page) ─────────────────────── */
.deco-float {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.deco-float--circle {
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176,152,69,0.15) 0%, transparent 70%);
    animation: floatY 8s ease-in-out infinite;
}

.deco-float--dots {
    background-image: radial-gradient(rgba(152,13,26,0.12) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: floatYSlow 10s ease-in-out infinite;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
    .admissions-hero__grid {
        flex-direction: column;
        height: auto;
    }
    .admissions-hero__text-col {
        flex: 1 1 auto;
        padding: 60px 24px 50px;
    }
    .admissions-hero__text-inner {
        max-width: 100%;
    }
    .admissions-hero__image-col {
        flex: 1 1 auto;
        clip-path: none;
        min-height: 320px;
    }
    .admissions-cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    .admissions-cta-banner__text {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .admissions-hero__text-col {
        padding: 50px 20px 40px;
    }
    .admissions-hero__title {
        font-size: 28px;
    }
    .admissions-hero__btns {
        flex-direction: column;
    }
    .admissions-hero__btn {
        justify-content: center;
    }
    .admissions-hero__image-col {
        min-height: 260px;
    }
    .admission-card {
        padding: 36px 28px;
    }
    .criteria-card {
        padding: 32px 28px;
    }
    .fee-card,
    .scholarship-card {
        padding: 36px 28px;
    }
}

/* ── Admission Application Form Section & Modal ───────────────── */
.admission-form-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #fff 0%, #fafaf8 100%);
}

.admission-form-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.admission-form-intro .sub-title {
    display: block;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--theme-color2);
    margin-bottom: 16px;
}

.admission-form-intro .sec-title {
    font-family: var(--title-font);
    font-size: 32px;
    font-weight: 800;
    color: var(--title-color);
    margin-bottom: 24px;
}

.admission-form-intro__text {
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.admission-form-intro__contact {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    color: #555;
    margin-bottom: 32px;
}

.admission-form-intro__contact a {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 600;
}

.admission-form-intro__contact a:hover {
    text-decoration: underline;
}

.admission-form-trigger {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--theme-color), #7a0a15);
    color: #fff;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 8px 28px rgba(152,13,26,0.25);
}

.admission-form-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(152,13,26,0.35);
    color: #fff;
}

/* Modal */
.admission-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.admission-modal.is-open {
    opacity: 1;
    visibility: visible;
}

body.modal-open {
    overflow: hidden;
}

.admission-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.admission-modal__wrap {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
}

.admission-modal__box {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
    animation: admissionModalIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes admissionModalIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.admission-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px 40px 24px;
    background: linear-gradient(135deg, rgba(152,13,26,0.04) 0%, rgba(176,152,69,0.06) 100%);
    border-bottom: 1px solid rgba(176,152,69,0.15);
}

.admission-modal__header-inner {
    flex: 1;
}

.admission-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--theme-color2);
    margin-bottom: 12px;
}

.admission-modal__badge i {
    font-size: 14px;
}

.admission-modal__title {
    font-family: var(--title-font);
    font-size: 26px;
    font-weight: 800;
    color: var(--title-color);
    margin: 0 0 8px;
}

.admission-modal__subtitle {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color);
    margin: 0;
}

.admission-modal__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.04);
    border: none;
    border-radius: 12px;
    color: #666;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.admission-modal__close:hover {
    background: rgba(152,13,26,0.1);
    color: var(--theme-color);
}

.admission-modal__body {
    padding: 32px 40px 40px;
}

/* Form */
.admission-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.admission-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admission-form__field--full {
    grid-column: 1 / -1;
}

.admission-form__field label {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--title-color);
}

.admission-form__field label .req {
    color: var(--theme-color);
}

.admission-form__field input,
.admission-form__field select,
.admission-form__field textarea {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    color: var(--title-color);
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.admission-form__field input:focus,
.admission-form__field select:focus,
.admission-form__field textarea:focus {
    outline: none;
    border-color: var(--theme-color2);
    box-shadow: 0 0 0 3px rgba(176,152,69,0.15);
}

.admission-form__field input::placeholder,
.admission-form__field textarea::placeholder {
    color: #999;
}

.admission-form__submit-wrap {
    margin-top: 8px;
}

.admission-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--theme-color), #7a0a15);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(152,13,26,0.3);
}

.admission-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(152,13,26,0.4);
}

/* Success state */
.admission-form-success {
    text-align: center;
    padding: 48px 24px;
}

.admission-form-success__icon {
    font-size: 64px;
    color: #22c55e;
    margin-bottom: 24px;
}

.admission-form-success h3 {
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 12px;
}

.admission-form-success p {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    color: #555;
}

/* Scholarship card btn as button */
.scholarship-card__btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.admissions-cta-banner__btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 767px) {
    .admission-modal__header,
    .admission-modal__body {
        padding: 24px 24px 32px;
    }
    .admission-form__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
