/* ========================================
   CSS Variables & Design Tokens
======================================== */
:root {
    --bg: #ffffff;
    --bg-warm: #fffcf6;
    --surface: #ffffff;
    --surface-warm: #fff8eb;
    --blue: #0f2d77;
    --blue-dark: #081a49;
    --red: #a91d22;
    --red-dark: #861519;
    --yellow: #ffd700;
    --primary: var(--blue);
    --primary-dark: var(--blue-dark);
    --secondary: var(--red);
    --secondary-dark: var(--red-dark);
    --accent: var(--yellow);
    --bg-alt: var(--bg-warm);
    --surface-soft: var(--bg-warm);
    --ink: #0b1736;
    --text: #25304c;
    --muted: #65708a;
    --line: rgba(15, 45, 119, 0.14);
    --shadow: 0 22px 55px rgba(15, 45, 119, 0.09);
    --shadow-soft: 0 14px 34px rgba(15, 45, 119, 0.07);
    --radius: 10px;
    --radius-lg: 18px;
    --container: 1180px;
}

/* ========================================
   Reset & Box Sizing
======================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

p {
    margin: 0 0 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* ========================================
   Typography & Global Elements
======================================== */
.text-red {
    color: var(--red);
}

h1 {
    max-width: 680px;
    margin-bottom: 20px;
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--blue);
    font-weight: 600;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

/* ========================================
   Containers & Shared Layout
======================================== */
.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 88px 0;
    background: var(--bg);
}

main>.section:nth-of-type(even) {
    background: var(--bg);
}

main>.section:nth-of-type(odd) {
    background: var(--bg-warm);
}

.section-heading,
.why-heading,
.courses-heading,
.facilities-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 34px;
    align-items: end;
    margin-bottom: 34px;
}

.split-heading h2,
.section-heading h2,
.why-heading h2,
.courses-heading h2,
.facilities-heading h2,
.timing-heading h2,
.contact-panel h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    color: var(--blue);
}

.section-heading p,
.split-heading p,
.why-heading p,
.courses-heading p,
.facilities-heading p,
.timing-heading p,
.contact-panel>p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.eyebrow,
.about-kicker,
.why-kicker,
.admission-kicker,
.faculty-kicker,
.result-kicker,
.facilities-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow::before,
.about-kicker::before,
.why-kicker::before,
.admission-kicker::after,
.faculty-kicker::after,
.result-kicker::after,
.facilities-kicker::after {
    width: 34px;
    height: 2px;
    background: var(--yellow);
    content: "";
}

.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    background: transparent !important;
    line-height: 1.4;
}

.section-label::before {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--red);
    content: "";
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: var(--blue);
    color: #fff !important;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 16px 30px rgba(15, 45, 119, 0.18);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--red);
    color: #fff !important;
}

.btn-primary,
.btn-red {
    background: var(--red);
    box-shadow: 0 16px 30px rgba(169, 29, 34, 0.2);
}

.btn-primary:hover,
.btn-red:hover {
    background: var(--red-dark);
}

.btn-secondary,
.btn-outline {
    background: transparent;
    color: var(--blue) !important;
    border-color: var(--blue);
    box-shadow: none;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--blue);
    color: #fff !important;
}

.btn-light {
    background: #fff;
    color: var(--blue) !important;
    box-shadow: none;
}

.btn-light:hover {
    background: var(--yellow);
    color: var(--blue) !important;
}

/* ========================================
   Shared Cards & Icons
======================================== */
.card,
.feature-card,
.program-card,
.process-card,
.timing-card,
.faculty-card,
.facility-card,
.contact-panel,
.contact-map-card,
.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.icon,
.feature-icon,
.program-icon,
.process-icon,
.timing-icon,
.faculty-card-icon,
.facility-icon,
.stat-icon,
.contact-method>span,
.contact-hours>span,
.result-feature>span,
.result-card>span,
.admission-benefits span,
.facilities-highlights span,
.faculty-points span,
.about-mission span,
.faculty-class-icon,
.facilities-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    color: var(--tone, var(--blue));
    background: var(--tone-soft, rgba(15, 45, 119, 0.08));
}

.icon i,
.feature-icon i,
.program-icon i,
.process-icon i,
.timing-icon i,
.faculty-card-icon i,
.facility-icon i,
.stat-icon i,
.contact-method>span i,
.contact-hours>span i,
.result-feature>span i,
.result-card>span i,
.admission-benefits span i,
.facilities-highlights span i,
.faculty-points span i,
.about-mission span i,
.faculty-class-icon i,
.facilities-badge span i {
    font-size: 28px;
    line-height: 1;
}

.tone-red,
.program-red,
.faculty-red,
.facility-red,
.result-red,
.timing-card-2 {
    --tone: var(--red);
    --tone-soft: rgba(169, 29, 34, 0.09);
}

.tone-blue,
.program-blue,
.faculty-blue,
.facility-blue,
.result-blue,
.timing-card-1 {
    --tone: var(--blue);
    --tone-soft: rgba(15, 45, 119, 0.08);
}

.tone-yellow,
.program-yellow,
.faculty-yellow,
.facility-yellow,
.result-yellow,
.timing-card-3 {
    --tone: var(--yellow);
    --tone-soft: rgba(255, 215, 0, 0.18);
}

.tone-green,
.program-green,
.faculty-green,
.facility-green {
    --tone: var(--blue);
    --tone-soft: rgba(15, 45, 119, 0.08);
}

article>i[aria-hidden="true"],
.program-head i[aria-hidden="true"],
.about-stats small::after {
    display: block;
    width: 44px;
    height: 2px;
    margin: 14px 0 0;
    background: var(--yellow);
    content: "";
}

.feature-icon i,
.program-icon i,
.timing-icon i,
.faculty-card-icon i,
.facility-icon i,
.stat-icon i,
.result-feature>span i,
.result-card>span i,
.contact-method>span i,
.contact-hours>span i,
.facilities-highlights span i,
.faculty-points span i {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    background: transparent !important;
    line-height: 1;
}

/* ========================================
   Header & Navigation
======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 248, 243, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-top {
    color: #fff;
    background: var(--ink);
    font-size: 14px;
}

.header-top-inner,
.header-top-left,
.header-top-right,
.nav-shell,
.nav-actions,
.footer-cta-inner,
.footer-bottom-inner {
    display: flex;
    align-items: center;
}

.header-top-inner {
    justify-content: space-between;
    min-height: 38px;
    gap: 18px;
}

.header-top-left,
.header-top-right {
    gap: 16px;
}

.header-top a {
    color: #fff;
    opacity: 0.88;
}

.nav-shell {
    min-height: 74px;
    justify-content: space-between;
    gap: clamp(14px, 1.5vw, 24px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(22, 22, 22, 0.08);
    overflow: hidden;
}

.brand-mark img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: clamp(15px, 1.05vw, 18px);
    white-space: nowrap;
}

.brand-copy small {
    color: var(--muted);
    font-size: 13px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.15vw, 20px);
    font-size: clamp(13px, .86vw, 15px);
    font-weight: 600;
}

.nav-links a {
    color: #272727;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="page"] {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    display: grid;
    min-width: 210px;
    padding: 12px;
    margin-top: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-panel::before {
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
    content: "";
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-panel a {
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--ink);
    white-space: nowrap;
}

.dropdown-panel a:hover {
    background: var(--surface-soft);
    color: var(--blue);
}

.nav-actions {
    justify-content: flex-end;
    gap: 12px;
    flex: 0 0 auto;
}

.header-call {
    display: grid;
    gap: 2px;
    font-size: 13px;
    color: var(--muted);
}

.header-call strong {
    color: var(--ink);
}

/* ========================================
   Full-Screen Mobile Navigation
======================================== */
.menu-toggle {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border: 1px solid rgba(15, 45, 119, .16);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 45, 119, .08);
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue-dark);
    content: "";
}

.menu-toggle span {
    position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
    position: absolute;
    left: 0;
}

.menu-toggle span::before {
    top: -7px;
}

.menu-toggle span::after {
    top: 7px;
}

.menu-toggle:focus-visible,
.mobile-menu-close:focus-visible,
.mobile-panel a:focus-visible {
    outline: 3px solid rgba(255, 215, 0, .8);
    outline-offset: 3px;
}

.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: linear-gradient(145deg, var(--blue-dark), #0b286d 62%, var(--blue));
    color: #fff;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .26s ease, transform .26s ease, visibility .26s ease;
}

.mobile-panel.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

body.menu-open {
    overflow: hidden;
}

.mobile-panel-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: min(100% - 32px, 760px);
    margin: 0 auto;
    padding-top: max(18px, env(safe-area-inset-top));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
}

.mobile-menu-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
    padding: 10px 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(145deg, var(--blue-dark), #0b286d);
}

.mobile-menu-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.mobile-menu-brand .brand-mark,
.mobile-menu-brand .brand-mark img {
    width: 48px;
    height: 48px;
}

.mobile-menu-brand .brand-copy {
    min-width: 0;
}

.mobile-menu-brand .brand-copy strong,
.mobile-menu-brand .brand-copy small {
    color: #fff;
}

.mobile-menu-brand .brand-copy strong {
    display: block;
    max-width: min(54vw, 360px);
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    white-space: normal;
}

.mobile-menu-brand .brand-copy small {
    opacity: .78;
    font-size: clamp(13px, 1.7vw, 16px);
    line-height: 1.15;
}

.mobile-menu-close {
    position: relative;
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 12px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
    cursor: pointer;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue-dark);
    content: "";
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

.mobile-menu-nav {
    display: grid;
    gap: 8px;
    padding: 18px 0 22px;
    transform: translateY(10px);
    transition: transform .3s ease;
}

.mobile-panel.is-open .mobile-menu-nav {
    transform: translateY(0);
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 800;
    line-height: 1.1;
}

.mobile-menu-nav a::after {
    color: var(--yellow);
    font-family: "Font Awesome 6 Free";
    font-size: 15px;
    font-weight: 900;
    content: "\f061";
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.is-active,
.mobile-menu-nav a[aria-current="page"] {
    border-color: rgba(255, 215, 0, .42);
    background: rgba(255, 255, 255, .12);
    color: var(--yellow);
}

.mobile-course-group {
    display: grid;
    gap: 12px;
    padding: 4px 0 22px;
}

.mobile-course-group>span {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mobile-course-group>div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-course-group a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 800;
}

.mobile-course-group a:hover,
.mobile-course-group a:focus-visible {
    border-color: rgba(255, 215, 0, .44);
    color: var(--yellow);
}

.mobile-cta {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .16);
}

.mobile-cta strong {
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
}

.mobile-cta span {
    color: rgba(255, 255, 255, .78);
}

.mobile-cta-actions {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.mobile-cta .btn {
    width: 100%;
    justify-content: center;
}

@media (prefers-reduced-motion: reduce) {

    .mobile-panel,
    .mobile-menu-nav,
    .mobile-menu-nav a {
        transition: none;
        animation: none;
    }
}

/* ========================================
   Internal Page Banner
======================================== */
.page-banner {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: grid;
    place-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.09), transparent 18%),
        radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.08), transparent 12%),
        linear-gradient(135deg, #061c59 0%, var(--blue-dark) 44%, var(--blue) 100%);
}

.page-banner::before,
.page-banner::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.page-banner::before {
    left: 30px;
    top: 34px;
    width: 160px;
    height: 210px;
    opacity: 0.34;
    background-image: radial-gradient(rgba(255, 255, 255, 0.28) 2px, transparent 2px);
    background-size: 24px 24px;
}

.page-banner::after {
    right: -90px;
    top: -80px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: inset 0 0 0 34px rgba(255, 255, 255, 0.025), inset 0 0 0 72px rgba(255, 255, 255, 0.018);
}

.page-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    text-align: center;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 0 34px;
    margin-bottom: 34px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.breadcrumb-item a:hover {
    color: var(--yellow);
}

.breadcrumb-item [aria-current="page"] {
    color: var(--yellow);
}

.breadcrumb-separator {
    color: #fff;
    font-size: 16px;
}

.page-banner-title {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(56px, 7vw, 75px);
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.page-banner-title::after {
    display: block;
    width: 170px;
    height: 12px;
    margin: 34px auto 0;
    background:
        linear-gradient(var(--yellow), var(--yellow)) left center / 70px 2px no-repeat,
        radial-gradient(circle, var(--yellow) 0 4px, transparent 5px) center / 16px 16px no-repeat,
        linear-gradient(var(--yellow), var(--yellow)) right center / 70px 2px no-repeat;
    content: "";
}

.page-banner-description {
    max-width: 720px;
    margin: 34px auto 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 21px;
    line-height: 1.65;
}

/* ========================================
   About Section
======================================== */
.about-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: 64px;
    align-items: center;
    padding-top: 34px;
    padding-bottom: 130px;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content .section-label::before {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--secondary);
    content: "";
}

.about-content h2 {
    max-width: 590px;
    margin-bottom: 28px;
    color: var(--primary);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
}

.about-content p {
    max-width: 560px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.about-content>p::before {
    display: block;
    width: 50px;
    height: 2px;
    margin-bottom: 26px;
    background: var(--secondary);
    content: "";
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 34px 0 36px;
}

.about-stats div {
    display: grid;
    justify-items: center;
    text-align: center;
}

.stat-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 50%;
    color: var(--primary);
    background: var(--surface-soft);
    font-size: 13px;
    font-weight: 900;
}

.about-stats strong {
    color: var(--primary);
    font-size: 34px;
    line-height: 1;
}

.about-stats small {
    position: relative;
    display: block;
    min-height: 44px;
    margin-top: 8px;
    color: #111;
    font-size: 15px;
    font-weight: 600;
}

.about-stats small::after {
    display: block;
    width: 38px;
    height: 2px;
    margin: 16px auto 0;
    background: var(--secondary);
    content: "";
}

.about-btn {
    gap: 18px;
    min-width: 270px;
    min-height: 58px;
}

.about-visual {
    position: relative;
    min-height: 570px;
}

.about-frame {
    position: absolute;
    right: 0;
    top: 36px;
    width: min(610px, 100%);
    height: 505px;
    border: 2px solid var(--secondary);
    border-radius: 90px 26px 90px 26px;
}

.about-frame::before {
    position: absolute;
    top: 34px;
    right: -28px;
    z-index: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px 22px 90px 22px;
    background: var(--primary);
    content: "";
}

.about-frame img {
    position: absolute;
    right: -1px;
    bottom: -5px;
    z-index: 1;
    width: calc(100% - 54px);
    height: calc(100% - 72px);
    border-radius: 22px 22px 78px 22px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 28px 70px rgba(16, 44, 120, 0.18);
}

.about-logo-badge {
    position: absolute;
    right: -50px;
    bottom: -20px;
    z-index: 3;
    display: grid;
    width: 120px;
    height: 120px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 14px 34px rgba(16, 44, 120, 0.18);
    overflow: hidden;
}

.about-logo-badge img {
    height: 120px;
    object-fit: cover;
}

.about-dots {
    width: 105px;
    height: 92px;
    background-image: radial-gradient(var(--secondary) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.9;
}

.about-dots-top {
    position: absolute;
    top: 0;
    left: 135px;
}

.about-dots-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(16, 44, 120, 0.28) 2px, transparent 2px);
}

.about-mission {
    position: absolute;
    right: 280px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 42px minmax(280px, 1fr);
    gap: 18px;
    align-items: center;
    max-width: 570px;
}

.about-mission span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-right: 2px solid var(--secondary);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.about-mission p {
    margin: 0;
    color: var(--primary);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
}

/* ========================================
   Why Choose Us Section
======================================== */
.why-section {
    background: var(--bg-alt) !important;
}

.why-section .why-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.why-heading h2 span {
    color: var(--yellow);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.why-section .feature-card {
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
    min-height: 318px;
    padding: 38px 32px 36px;
    overflow: hidden;
    border: 1px solid rgba(15, 45, 119, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
        radial-gradient(circle at 50% 0, rgba(255, 215, 0, 0.14), transparent 42%);
    box-shadow: 0 18px 45px rgba(15, 45, 119, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.why-section .feature-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--red), var(--yellow));
    opacity: 0;
    content: "";
    transition: opacity 0.28s ease;
}

.why-section .feature-card::after {
    position: absolute;
    right: -52px;
    bottom: -52px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(15, 45, 119, 0.05);
    content: "";
    transition: transform 0.28s ease, background 0.28s ease;
}

.why-section .feature-icon {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    color: var(--blue);
    background: #fff;
    border: 1px solid rgba(15, 45, 119, 0.1);
    box-shadow: 0 12px 30px rgba(15, 45, 119, 0.12);
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.why-section .feature-card h3,
.why-section .feature-card p,
.why-section .feature-card>i[aria-hidden="true"] {
    position: relative;
    z-index: 1;
}

.why-section .feature-card h3 {
    margin-bottom: 0;
    color: var(--blue);
    font-weight: 800;
}

.why-section .feature-card>i[aria-hidden="true"] {
    margin: 14px auto 18px;
    transition: width 0.28s ease, background 0.28s ease;
}

.why-section .feature-card p {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    color: #53627f;
}

.why-section .feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(169, 29, 34, 0.28);
    box-shadow: 0 28px 65px rgba(15, 45, 119, 0.16);
}

.why-section .feature-card:hover::before {
    opacity: 1;
}

.why-section .feature-card:hover::after {
    transform: scale(1.18);
    background: rgba(255, 215, 0, 0.14);
}

.why-section .feature-card:hover .feature-icon {
    transform: translateY(-4px);
    color: #fff;
    background: var(--blue);
    box-shadow: 0 16px 34px rgba(15, 45, 119, 0.24);
}

.why-section .feature-card:hover>i[aria-hidden="true"] {
    width: 54px;
    background: var(--red) !important;
}

/* ========================================
   Courses Section
======================================== */
.courses-section {
    position: relative;
    overflow: hidden;
    background: #fff !important;
}

.courses-section::before {
    position: absolute;
    left: -90px;
    top: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(15, 45, 119, .1);
    content: "";
}

.courses-section::after {
    position: absolute;
    right: 34px;
    top: 34px;
    width: 160px;
    height: 130px;
    opacity: .38;
    background-image: radial-gradient(rgba(15, 45, 119, .45) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    content: "";
}

.courses-section .courses-container {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.courses-heading h2 span {
    color: var(--yellow);
}

.program-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}

.program-card {
    display: flex;
    grid-column: span 2;
    flex-direction: column;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(15, 45, 119, .16);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 45, 119, .07);
    text-align: left;
}


.program-card-top {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 270px;
    padding: 34px 34px 30px;
}

.program-head {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.program-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--tone);
}

.program-icon i {
    font-size: 24px;
    line-height: 1;
}

.program-head>div {
    min-width: 0;
}

.program-head>div>span {
    display: block;
    max-width: 165px;
    color: var(--tone);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.program-head h3 {
    max-width: 240px;
    margin: 8px 0 0;
    color: var(--blue-dark);
    font-size: 27px;
    font-weight: 900;
    line-height: 1.12;
}

.program-head a {
    justify-self: end;
    align-self: start;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
}

.program-head a:hover {
    color: var(--red);
}

.program-head i[aria-hidden="true"] {
    display: block;
    width: 34px;
    height: 2px;
    margin: 16px 0 0;
    background: var(--red);
}

.program-card p {
    max-width: 330px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.65;
}

.program-card ul {
    display: grid;
    gap: 11px;
    margin-top: auto;
    min-height: 118px;
    padding: 24px 34px 28px;
    background: linear-gradient(135deg, var(--tone-soft), rgba(255, 255, 255, .88));
}

.program-card li {
    position: relative;
    margin: 0;
    padding-left: 27px;
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 850;
    line-height: 1.35;
}

.program-card li::before {
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border-radius: 50%;
    background: var(--tone);
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    content: "\f00c";
}

.program-yellow {
    --tone: var(--blue);
    --tone-soft: rgba(15, 45, 119, .08);
    --course-color: var(--blue);
    --course-soft: rgba(15, 45, 119, .08);
    --course-list: rgba(15, 45, 119, .08);
}

.program-yellow li::before {
    color: var(--blue);
}

.courses-cta {
    display: inline-flex;
    width: fit-content;
    min-width: 270px;
    margin: 40px auto 0;
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: #fff !important;
}

.courses-cta:hover {
    background: var(--red-dark) !important;
    border-color: var(--red-dark) !important;
    color: #fff !important;
}

/* ========================================
   Batch Timings Section
======================================== */
.timing-section {
    padding: 96px 0 104px !important;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue)) !important;
    color: #fff !important;
    overflow: hidden !important;
}

.timing-section .timing-container {
    width: min(1220px, calc(100% - 56px));
    margin: 0 auto;
}

.timing-section .timing-heading {
    display: block !important;
    max-width: 800px !important;
    margin: 0 auto 46px !important;
    text-align: center !important;
}

.timing-section .section-label {
    justify-content: center !important;
    color: #fff !important;
    margin-bottom: 22px !important;
}

.timing-section .section-label::before {
    background: #fff !important;
}

.timing-section .timing-heading h2 {
    max-width: 720px !important;
    margin: 0 auto !important;
    color: #fff !important;
    font-size: clamp(34px, 4vw, 52px) !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
}

.timing-section .timing-heading p {
    max-width: 690px !important;
    margin: 18px auto 0 !important;
    color: rgba(255, 255, 255, .82) !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
}

.timing-section .timing-content {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px) !important;
    gap: 26px !important;
    align-items: stretch !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
}

.timing-section .timing-cards {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

.timing-section .timing-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 260px !important;
    padding: 32px 28px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    border-radius: 8px !important;
    background: rgba(8, 26, 73, .45) !important;
    box-shadow: 0 22px 46px rgba(0, 0, 0, .12) !important;
    backdrop-filter: blur(10px) !important;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease !important;
}

.timing-section .timing-card::before {
    position: absolute !important;
    inset: 0 0 auto !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--tone), var(--yellow)) !important;
    content: "" !important;
    opacity: 0 !important;
    transition: opacity .28s ease !important;
}

.timing-section .timing-icon {
    display: grid !important;
    width: 56px !important;
    height: 56px !important;
    place-items: center !important;
    flex: 0 0 56px !important;
    border-radius: 50% !important;
    color: #fff !important;
    background: rgba(255, 255, 255, .12) !important;
    box-shadow: none !important;
    transition: transform .28s ease, color .28s ease, background .28s ease !important;
}

.timing-section .timing-icon i {
    font-size: 21px !important;
    line-height: 1 !important;
}

.timing-section .timing-card strong {
    display: block !important;
    margin-top: 24px !important;
    color: #fff !important;
    font-size: 23px !important;
    font-weight: 900 !important;
    line-height: 1.24 !important;
}

.timing-section .timing-card p {
    margin: 14px 0 16px !important;
    color: rgba(255, 255, 255, .78) !important;
    font-size: 15.5px !important;
    line-height: 1.55 !important;
}

.timing-section .timing-card em {
    display: inline-flex !important;
    width: fit-content !important;
    margin-top: auto !important;
    padding-top: 12px !important;
    border-top: 2px solid var(--yellow) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
}

.timing-section .timing-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(255, 255, 255, .34) !important;
    background: rgba(8, 26, 73, .62) !important;
    box-shadow: 0 30px 68px rgba(0, 0, 0, .2) !important;
}

.timing-section .timing-card:hover::before {
    opacity: 1 !important;
}

.timing-section .timing-card:hover .timing-icon {
    transform: translateY(-4px) !important;
    color: #fff !important;
    background: var(--tone) !important;
}

.timing-section .timing-card-3:hover .timing-icon {
    color: var(--blue) !important;
}

.timing-section .timing-note {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 292px !important;
    padding: 38px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    border-radius: 8px !important;
    background: rgba(8, 26, 73, .45) !important;
    color: #fff !important;
    box-shadow: 0 22px 46px rgba(0, 0, 0, .12) !important;
    backdrop-filter: blur(10px) !important;
}

.timing-section .timing-note>span {
    display: grid !important;
    width: 56px !important;
    height: 56px !important;
    place-items: center !important;
    flex: 0 0 56px !important;
    border-radius: 50% !important;
    color: var(--yellow) !important;
    background: rgba(255, 255, 255, .12) !important;
    box-shadow: none !important;
    transition: transform .28s ease, color .28s ease, background .28s ease !important;
}

.timing-section .timing-note>span i {
    font-size: 21px !important;
    line-height: 1 !important;
}

.timing-section .timing-note h3 {
    margin: 24px 0 14px !important;
    color: #fff !important;
    font-size: 25px !important;
    font-weight: 900 !important;
    line-height: 1.22 !important;
}

.timing-section .timing-note p {
    margin: 0 0 24px !important;
    color: rgba(255, 255, 255, .8) !important;
    font-size: 15.5px !important;
    line-height: 1.65 !important;
}

.timing-section .timing-note .btn {
    align-self: flex-start !important;
    width: fit-content !important;
    min-height: 48px !important;
    padding: 0 24px !important;
    background: var(--red) !important;
    color: #fff !important;
    border-color: var(--red) !important;
    box-shadow: 0 14px 30px rgba(169, 29, 34, .28) !important;
}

/* ========================================
   Faculty Section
======================================== */
.faculty-hero {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
    gap: 56px;
    align-items: center;
    margin-bottom: 42px;
}

.faculty-copy h2 {
    max-width: 650px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.14;
}

.faculty-copy p {
    max-width: 680px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.faculty-visual {
    position: relative;
    min-height: 410px;
}

.faculty-visual img {
    position: relative;
    z-index: 2;
    width: 78%;
    height: 390px;
    margin-inline: auto;
    object-fit: cover;
    object-position: top;
    border-radius: 110px 70px 110px 70px;
}

.faculty-shape {
    position: absolute;
    inset: 80px 50px 0 0;
    border-radius: 50%;
    background: rgba(169, 29, 34, .1);
}

.faculty-class-icon {
    position: absolute;
    right: 54px;
    bottom: 48px;
    z-index: 3;
    width: 98px;
    height: 98px;
    color: #fff;
    background: var(--blue);
    box-shadow: var(--shadow);
}

.faculty-dots {
    position: absolute;
    right: 10px;
    top: 40px;
    width: 100px;
    height: 90px;
    background-image: radial-gradient(var(--blue) 2px, transparent 2px);
    background-size: 18px 18px;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.faculty-card {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    padding: 40px 34px;
    border: 1px solid rgba(15, 45, 119, 0.14);
    border-bottom: 5px solid var(--tone);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
    box-shadow: 0 18px 45px rgba(15, 45, 119, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.faculty-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--tone), var(--yellow));
    opacity: 0;
    content: "";
    transition: opacity 0.28s ease;
}

.faculty-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1px solid rgba(15, 45, 119, 0.12);
    color: var(--tone, var(--blue));
    background: var(--tone-soft, rgba(15, 45, 119, 0.08));
    box-shadow: 0 12px 28px rgba(15, 45, 119, 0.11);
    transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.faculty-card.faculty-red {
    --tone: var(--red);
    --tone-soft: rgba(169, 29, 34, 0.1);
}

.faculty-card.faculty-red .faculty-card-icon {
    color: #a91d22 !important;
    background: rgba(169, 29, 34, 0.1) !important;
    border-color: rgba(169, 29, 34, 0.22) !important;
}

.faculty-card.faculty-blue {
    --tone: var(--blue);
    --tone-soft: rgba(15, 45, 119, 0.08);
}

.faculty-card.faculty-blue .faculty-card-icon {
    color: #0f2d77 !important;
    background: rgba(15, 45, 119, 0.09) !important;
    border-color: rgba(15, 45, 119, 0.18) !important;
}

.faculty-card.faculty-yellow {
    --tone: #d97706;
    --tone-soft: rgba(245, 158, 11, 0.15);
}

.faculty-card.faculty-yellow .faculty-card-icon {
    color: #b45309 !important;
    background: rgba(245, 158, 11, 0.15) !important;
    border-color: rgba(245, 158, 11, 0.28) !important;
}

.faculty-card h3 {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    font-size: 25px;
    color: var(--blue);
    font-weight: 900;
}

.faculty-card p {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    color: #53627f;
    font-size: 18px;
}

.faculty-card>i[aria-hidden="true"] {
    position: relative;
    z-index: 1;
    transition: width 0.28s ease, background 0.28s ease;
}

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(15, 45, 119, 0.15);
}

.faculty-card:hover::before {
    opacity: 1;
}

.faculty-card:hover .faculty-card-icon {
    transform: translateY(-4px) scale(1.05);
    color: #ffffff !important;
    box-shadow: 0 16px 34px rgba(15, 45, 119, 0.22);
}

.faculty-card.faculty-red:hover {
    border-color: rgba(169, 29, 34, 0.35);
}

.faculty-card.faculty-red:hover .faculty-card-icon {
    background: #a91d22 !important;
    border-color: #a91d22 !important;
}

.faculty-card.faculty-blue:hover {
    border-color: rgba(15, 45, 119, 0.35);
}

.faculty-card.faculty-blue:hover .faculty-card-icon {
    background: #0f2d77 !important;
    border-color: #0f2d77 !important;
}

.faculty-card.faculty-yellow:hover {
    border-color: rgba(217, 119, 6, 0.35);
}

.faculty-card.faculty-yellow:hover .faculty-card-icon {
    background: #d97706 !important;
    border-color: #d97706 !important;
}

.faculty-card:hover>i[aria-hidden="true"] {
    width: 56px;
    background: var(--tone) !important;
}

.faculty-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 36px;
    padding: 20px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.faculty-points div {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
    padding: 18px 20px;
    border-right: 1px solid var(--line);
}

.faculty-points div:last-child {
    border-right: 0;
}

.faculty-points span {
    grid-row: span 2;
    width: 52px;
    height: 52px;
}

.faculty-points strong {
    color: var(--ink);
}

.faculty-points p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 14px;
}

/* ========================================
   Result System Section
======================================== */
.result-section {
    padding: 88px 0 !important;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue)) !important;
    color: #fff !important;
    overflow: hidden !important;
}

.result-section .result-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 1fr) !important;
    gap: 52px !important;
    align-items: center !important;
    max-width: 1240px !important;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto !important;
}

.result-section .section-label {
    color: #fff !important;
    margin-bottom: 18px !important;
}

.result-section .section-label::before {
    background: #fff !important;
}

.result-section .result-copy h2 {
    max-width: 640px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(34px, 3.8vw, 48px) !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
}

.result-section .result-copy h2 span {
    color: var(--red) !important;
}

.result-section .result-copy>p {
    max-width: 600px !important;
    margin: 18px 0 0 !important;
    color: rgba(255, 255, 255, .84) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

.result-section .result-features {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px 20px !important;
    margin-top: 36px !important;
}

.result-section .result-feature {
    padding: 0 !important;
    border: 0 !important;
}

.result-section .result-feature>span {
    display: grid !important;
    width: 48px !important;
    height: 48px !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .12) !important;
    color: var(--tone) !important;
}

.result-section .result-feature>span i {
    font-size: 20px !important;
    line-height: 1 !important;
}

.result-section .result-feature strong {
    display: block !important;
    margin-top: 12px !important;
    color: #fff !important;
    font-size: 15.5px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}

.result-section .result-feature p {
    margin: 6px 0 0 !important;
    color: rgba(255, 255, 255, .76) !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
}

.result-section .result-list {
    display: grid !important;
    gap: 16px !important;
}

.result-section .result-card {
    display: grid !important;
    grid-template-columns: 50px minmax(0, 1fr) 42px !important;
    gap: 18px !important;
    align-items: center !important;
    padding: 20px 24px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-left: 5px solid var(--tone) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, .08) !important;
    box-shadow: 0 20px 44px rgba(0, 0, 0, .14) !important;
    backdrop-filter: blur(8px) !important;
}

.result-section .result-card>span {
    display: grid !important;
    width: 48px !important;
    height: 48px !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .12) !important;
    color: var(--tone) !important;
}

.result-section .result-card>span i {
    font-size: 20px !important;
    line-height: 1 !important;
}

.result-section .result-card strong {
    display: block !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}

.result-section .result-card p {
    margin: 5px 0 0 !important;
    color: rgba(255, 255, 255, .78) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.result-section .result-card em {
    display: grid !important;
    width: 40px !important;
    height: 40px !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .12) !important;
    color: var(--tone) !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 800 !important;
}

.result-section .result-red {
    --tone: #ff5d63 !important;
}

.result-section .result-yellow {
    --tone: var(--yellow) !important;
}

.result-section .result-blue {
    --tone: #79a7ff !important;
}

/* ========================================
   Facilities Section
======================================== */
.facilities-hero {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
    gap: 56px;
    align-items: center;
    margin-bottom: 74px;
}

.facilities-copy h2 {
    max-width: 620px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.14;
}

.facilities-copy p {
    max-width: 620px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.facilities-highlights {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(190px, 1fr)) !important;
    gap: 24px !important;
    margin-top: 34px !important;
    align-items: start !important;
}

.facilities-highlights div {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    column-gap: 14px !important;
    row-gap: 4px !important;
    min-width: 0 !important;
    align-items: start !important;
}

.facilities-highlights span {
    grid-row: 1 / span 2 !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    color: var(--blue) !important;
    background: var(--surface-soft) !important;
}

.facilities-highlights span i {
    font-size: 21px !important;
    line-height: 1 !important;
}

.facilities-highlights strong {
    display: block !important;
    min-width: 0 !important;
    color: var(--ink) !important;
    font-size: 15.5px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.facilities-highlights p {
    min-width: 0 !important;
    max-width: 180px !important;
    margin: 4px 0 0 !important;
    color: var(--muted) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.facilities-visual {
    position: relative;
    min-height: 480px;
}

.facilities-visual img {
    position: relative;
    z-index: 2;
    width: 82%;
    height: 460px;
    margin-left: auto;
    object-fit: cover;
    border-radius: 160px 20px 160px 20px;
}

.facilities-ring {
    position: absolute;
    left: 16%;
    top: 28%;
    width: 170px;
    height: 170px;
    border: 20px solid rgba(15, 45, 119, .05);
    border-radius: 50%;
}

.facilities-dots {
    position: absolute;
    left: 12%;
    top: 40px;
    width: 110px;
    height: 120px;
    background-image: radial-gradient(rgba(169, 29, 34, .35) 2px, transparent 2px);
    background-size: 17px 17px;
}

.facilities-badge {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 26px;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 16px;
    width: min(350px, 80%);
    padding: 20px;
    border-radius: var(--radius);
    background: var(--blue);
    color: #fff;
    box-shadow: var(--shadow);
}

.facilities-badge span {
    grid-row: span 2;
    width: 58px;
    height: 58px;
    color: var(--yellow);
    background: rgba(255, 255, 255, .13);
}

.facilities-badge strong {
    color: #fff;
}

.facilities-badge p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
}



.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.facility-card {
    position: relative;
    display: flex;
    min-height: 405px;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(15, 45, 119, 0.14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(15, 45, 119, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.facility-card::before {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, var(--tone), var(--yellow));
    opacity: 0;
    content: "";
    transition: opacity 0.28s ease;
}

.facility-card .facility-icon {
    margin: 34px 34px 0;
    border: 1px solid rgba(15, 45, 119, 0.08);
    background: #fffaf0;
    box-shadow: 0 10px 24px rgba(15, 45, 119, 0.1);
    transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.facility-card h3 {
    margin: 22px 34px 0;
    font-size: 22px;
    color: var(--blue);
    font-weight: 900;
    line-height: 1.35;
}

.facility-card>i {
    margin-left: 34px;
    transition: width 0.28s ease, background 0.28s ease;
}

.facility-card p {
    margin: 18px 34px 28px;
    color: #53627f;
    font-size: 16px;
    line-height: 1.65;
}

.facility-card img {
    width: 100%;
    height: 168px;
    margin-top: auto;
    object-fit: cover;
    filter: saturate(0.94) contrast(0.96);
    transition: transform 0.42s ease, filter 0.42s ease;
}

.facility-card:hover {
    transform: translateY(-8px);
    border-color: rgba(169, 29, 34, 0.26);
    box-shadow: 0 28px 65px rgba(15, 45, 119, 0.15);
}

.facility-card:hover::before {
    opacity: 1;
}

.facility-card:hover .facility-icon {
    transform: translateY(-4px);
    color: #fff;
    background: var(--tone);
    box-shadow: 0 14px 30px rgba(15, 45, 119, 0.2);
}

.facility-yellow:hover .facility-icon {
    color: var(--blue);
}

.facility-card:hover>i {
    width: 56px;
    background: var(--tone) !important;
}

.facility-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1);
}

/* ========================================
   Gallery Section
======================================== */
.gallery-section {
    background: var(--bg);
}

.gallery-heading {
    max-width: 760px;
    margin: 0 0 34px;
    text-align: left;
}

.gallery-heading p {
    max-width: 560px;
    margin-top: 18px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    grid-column: span 3;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 45, 119, 0.12);
    border-radius: 8px;
    background: var(--blue);
    box-shadow: 0 18px 44px rgba(15, 45, 119, 0.1);
    isolation: isolate;
}

.gallery-item.large {
    grid-column: span 6;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 6;
}

.gallery-item.third {
    grid-column: span 4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(0.96);
    transform: scale(1.01);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 26, 73, 0.05) 0%, rgba(8, 26, 73, 0.68) 100%);
    content: "";
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gallery-item figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.gallery-item figcaption::before {
    display: block;
    width: 42px;
    height: 2px;
    margin-bottom: 12px;
    background: var(--yellow);
    content: "";
    transition: width 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 28px 64px rgba(15, 45, 119, 0.16);
}

.gallery-item:hover img {
    filter: saturate(1.08) contrast(1);
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover figcaption::before {
    width: 64px;
}

/* ========================================
   FAQ Section
======================================== */
.faq-section {
    padding: 96px 0 104px !important;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue)) !important;
    color: #fff !important;
    overflow: hidden !important;
}

.faq-section .faq-layout {
    display: grid !important;
    grid-template-columns: minmax(0, .8fr) minmax(520px, 1.12fr) !important;
    gap: 64px !important;
    align-items: center !important;
    width: min(1180px, calc(100% - 48px)) !important;
    margin: 0 auto !important;
}

.faq-section .faq-side {
    min-width: 0 !important;
}

.faq-section .faq-heading {
    margin: 0 0 32px !important;
    text-align: left !important;
}

.faq-section .section-label {
    color: #a91d22 !important;
    margin-bottom: 16px !important;
}

.faq-section .section-label::before {
    background: #a91d22 !important;
}

.faq-section .faq-heading h2 {
    max-width: 520px !important;
    margin: 0 !important;
    color: #0f2d77 !important;
    font-size: clamp(32px, 3.8vw, 48px) !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
}

.faq-section .faq-heading h2 span {
    color: #a91d22 !important;
}

.faq-section .faq-heading p {
    max-width: 540px !important;
    margin: 18px 0 0 !important;
    color: #64748b !important;
    font-size: 16.5px !important;
    line-height: 1.7 !important;
}

.faq-section .faq-support-card {
    display: flex !important;
    gap: 18px !important;
    align-items: center !important;
    max-width: 470px !important;
    margin-top: 32px !important;
    padding: 24px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(15, 45, 119, 0.06) !important;
}

.faq-section .faq-support-card>span {
    display: grid !important;
    width: 60px !important;
    height: 60px !important;
    place-items: center !important;
    border: 1px solid rgba(15, 45, 119, 0.12) !important;
    border-radius: 12px !important;
    background: rgba(15, 45, 119, 0.08) !important;
    color: #0f2d77 !important;
    font-size: 24px !important;
    flex-shrink: 0 !important;
}

.faq-section .faq-support-card strong {
    display: block !important;
    color: #0f2d77 !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}

.faq-section .faq-support-card p {
    margin: 4px 0 8px !important;
    color: #64748b !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.faq-section .faq-support-card a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #a91d22 !important;
    font-weight: 800 !important;
    font-size: 13.5px !important;
}

.faq-section .faq-stats {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    max-width: 560px !important;
    margin-top: 48px !important;
}

.faq-section .faq-stats div {
    padding: 0 20px !important;
    border-right: 1px solid rgba(255, 255, 255, .18) !important;
}

.faq-section .faq-stats div:first-child {
    padding-left: 0 !important;
}

.faq-section .faq-stats div:last-child {
    border-right: 0 !important;
    padding-right: 0 !important;
}

.faq-section .faq-stats span {
    display: grid !important;
    width: 52px !important;
    height: 52px !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .12) !important;
    color: var(--yellow) !important;
    font-size: 22px !important;
}

.faq-section .faq-stats strong {
    display: block !important;
    margin-top: 14px !important;
    color: #fff !important;
    font-size: 15.5px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}

.faq-section .faq-stats p {
    margin: 6px 0 0 !important;
    color: rgba(255, 255, 255, .75) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.faq-section .faq-list {
    display: grid !important;
    gap: 14px !important;
}

.faq-section .faq-list details {
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .14) !important;
}

.faq-section .faq-list details[open] {
    background: #fff !important;
}

.faq-section .faq-list summary {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) 34px !important;
    gap: 18px !important;
    align-items: center !important;
    min-height: 76px !important;
    padding: 18px 24px !important;
    color: var(--ink) !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
    list-style: none !important;
    cursor: pointer !important;
}

.faq-section .faq-list summary::-webkit-details-marker {
    display: none !important;
}

.faq-section .faq-list summary::before {
    display: grid !important;
    width: 34px !important;
    height: 34px !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: var(--ink) !important;
    box-shadow: 0 8px 18px rgba(15, 45, 119, .12) !important;
    font-family: "Font Awesome 6 Free" !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    content: "\2b" !important;
}

.faq-section .faq-list details[open] summary::before {
    background: var(--red) !important;
    color: #fff !important;
    content: "\f068" !important;
}

.faq-section .faq-list summary::after {
    justify-self: end !important;
    color: var(--ink) !important;
    font-family: "Font Awesome 6 Free" !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    content: "\f078" !important;
}

.faq-section .faq-list details[open] summary::after {
    color: var(--red) !important;
    content: "\f077" !important;
}

.faq-section .faq-list details p {
    margin: 0 !important;
    padding: 0 80px 28px 88px !important;
    color: var(--muted) !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
    padding: 96px 0 110px !important;
    background: var(--bg-warm) !important;
    overflow: hidden !important;
}

.contact-section .contact-container {
    display: grid !important;
    grid-template-columns: minmax(0, .95fr) minmax(520px, 1fr) !important;
    gap: 28px !important;
    width: min(1200px, calc(100% - 48px)) !important;
    margin: 0 auto !important;
    align-items: stretch !important;
}

.contact-section .contact-panel {
    padding: 42px !important;
    border: 1px solid rgba(15, 45, 119, .12) !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0 20px 52px rgba(15, 45, 119, .08) !important;
}

.contact-section .section-label {
    color: var(--red) !important;
    margin-bottom: 32px !important;
}

.contact-section .section-label::before {
    background: var(--red) !important;
}

.contact-section .contact-panel h2 {
    max-width: 560px !important;
    margin: 0 !important;
    color: var(--ink) !important;
    font-size: clamp(34px, 4vw, 52px) !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
}

.contact-section .contact-panel>p {
    max-width: 560px !important;
    margin: 20px 0 0 !important;
    color: var(--muted) !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
}

.contact-section .contact-methods {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin: 34px 0 34px !important;
}

.contact-section .contact-method {
    display: grid !important;
    grid-template-columns: 62px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: center !important;
    min-height: 116px !important;
    padding: 18px !important;
    border: 1px solid rgba(15, 45, 119, .13) !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 10px 28px rgba(15, 45, 119, .04) !important;
    text-decoration: none !important;
}

.contact-section .contact-method-icon {
    display: grid !important;
    width: 56px !important;
    height: 56px !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: var(--surface-soft) !important;
    color: var(--blue) !important;
    font-size: 24px !important;
    line-height: 1 !important;
}

.contact-section .contact-method-icon i {
    font-size: 24px !important;
    line-height: 1 !important;
}

.contact-section .contact-method-whatsapp {
    color: #16a34a !important;
    background: rgba(22, 163, 74, .1) !important;
}

.contact-section .contact-method-email {
    color: var(--blue) !important;
    background: rgba(15, 45, 119, .08) !important;
}

.contact-section .contact-method-location {
    color: var(--red) !important;
    background: rgba(169, 29, 34, .08) !important;
}

.contact-section .contact-method strong {
    display: block !important;
    color: var(--ink) !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}

.contact-section .contact-method em {
    display: block !important;
    margin-top: 7px !important;
    color: var(--ink) !important;
    font-size: 14px !important;
    font-style: normal !important;
    line-height: 1.35 !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
}

.contact-section .contact-method small {
    display: block !important;
    margin-top: 5px !important;
    color: var(--muted) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

.contact-section .contact-map-card {
    overflow: hidden !important;
    display: grid !important;
    grid-template-rows: minmax(430px, 1fr) 132px !important;
    border: 1px solid rgba(15, 45, 119, .12) !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0 20px 52px rgba(15, 45, 119, .08) !important;
}

.contact-section .contact-map {
    position: relative !important;
    min-height: 430px !important;
    background: #eef4fb !important;
}

.contact-section .contact-map iframe {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 430px !important;
    border: 0 !important;
    filter: saturate(.86) contrast(.96) !important;
}

.contact-section .map-zoom-controls {
    position: absolute !important;
    right: 20px !important;
    bottom: 24px !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 24px rgba(15, 45, 119, .18) !important;
    z-index: 2 !important;
}

.contact-section .map-zoom-controls span {
    display: grid !important;
    width: 42px !important;
    height: 42px !important;
    place-items: center !important;
    border-bottom: 1px solid var(--line) !important;
    background: #fff !important;
    color: var(--blue) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.contact-section .map-zoom-controls span:last-child {
    border-bottom: 0 !important;
}

.contact-section .contact-hours {
    display: grid !important;
    grid-template-columns: 64px minmax(0, 1fr) !important;
    gap: 18px !important;
    align-items: center !important;
    padding: 28px 34px !important;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue)) !important;
    color: #fff !important;
}

.contact-section .contact-hours>span {
    display: grid !important;
    width: 58px !important;
    height: 58px !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: var(--blue) !important;
    font-size: 26px !important;
}

.contact-section .contact-hours>span i {
    font-size: 26px !important;
    line-height: 1 !important;
}

.contact-section .contact-hours strong {
    display: block !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}

.contact-section .contact-hours p {
    margin: 5px 0 0 !important;
    color: rgba(255, 255, 255, .85) !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
}

/* ========================================
   Footer CTA
======================================== */
.footer-cta {
    position: relative !important;
    overflow: hidden !important;
    padding: 72px 0 !important;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue)) !important;
    color: #fff !important;
}

.footer-cta::before {
    position: absolute !important;
    left: -70px !important;
    bottom: -90px !important;
    width: 210px !important;
    height: 210px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .06) !important;
    content: "" !important;
}

.footer-cta::after {
    position: absolute !important;
    right: -78px !important;
    top: -86px !important;
    width: 230px !important;
    height: 230px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .08) !important;
    content: "" !important;
}

.footer-cta-inner {
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .72fr) !important;
    gap: 54px !important;
    align-items: center !important;
    width: min(1120px, calc(100% - 48px)) !important;
    margin: 0 auto !important;
}

.footer-cta-copy {
    min-width: 0 !important;
}

.footer-cta .section-label {
    color: #fff !important;
    margin-bottom: 18px !important;
}

.footer-cta .section-label::before {
    background: #fff !important;
}

.footer-cta h2 {
    max-width: 690px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(34px, 4vw, 52px) !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
}

.footer-cta-copy>p {
    max-width: 640px !important;
    margin: 20px 0 0 !important;
    color: rgba(255, 255, 255, .82) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.7 !important;
}

.footer-guidance-features {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    max-width: 760px !important;
    margin-top: 34px !important;
}

.footer-guidance-features div {
    display: grid !important;
    justify-items: center !important;
    gap: 12px !important;
    padding: 0 18px !important;
    border-right: 1px solid rgba(255, 255, 255, .18) !important;
    text-align: center !important;
}

.footer-guidance-features div:last-child {
    border-right: 0 !important;
}

.footer-guidance-features span {
    display: grid !important;
    width: 58px !important;
    height: 58px !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .12) !important;
    color: #fff !important;
    font-size: 23px !important;
}

.footer-guidance-features strong {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}

.footer-cta-side {
    display: grid !important;
    gap: 26px !important;
    padding-left: 48px !important;
    border-left: 1px solid rgba(255, 255, 255, .18) !important;
}

.footer-cta-actions {
    display: grid !important;
    gap: 16px !important;
}

.footer-cta-actions .btn {
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr) 24px !important;
    min-height: 62px !important;
    align-items: center !important;
    justify-items: start !important;
    padding: 0 24px !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    text-align: left !important;
}

.footer-cta-actions .btn-primary {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: #fff !important;
    box-shadow: 0 16px 34px rgba(169, 29, 34, .22) !important;
}

.footer-cta-actions .btn-light {
    background: #fff !important;
    border: 1px solid rgba(255, 255, 255, .8) !important;
    color: var(--blue-dark) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .08) !important;
}

.footer-cta-actions .btn i:last-child {
    justify-self: end !important;
}

.footer-trust {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: center !important;
    padding: 24px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, .08) !important;
}

.footer-trust span {
    display: grid !important;
    width: 52px !important;
    height: 52px !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .12) !important;
    color: var(--yellow) !important;
}

.footer-trust p {
    margin: 0 !important;
    color: rgba(255, 255, 255, .82) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.55 !important;
}

/* ========================================
   Main Footer
======================================== */
.footer {
    color: #fff;
    background: #151515;
}

.footer .brand-copy small,
.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.76);
}

.footer .brand-copy strong,
.footer h3 {
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr 1.2fr;
    gap: 28px;
    padding: 54px 0;
}

.footer-brand p {
    margin: 18px 0;
    font-size: 16px;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.footer-column ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-contact {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-contact a,
.footer-contact p {
    display: grid;
    gap: 3px;
    margin: 0;
    font-size: 15px;
}

.footer-contact span {
    color: #fff;
    font-weight: 600;
}

.map {
    overflow: hidden;
    height: 190px;
    border-radius: 8px;
    background: #222;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
    justify-content: space-between;
    gap: 20px;
    min-height: 66px;
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
}

/* ========================================
   Go-to-Top Button
======================================== */
.go-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--red) !important;
    box-shadow: var(--shadow);
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .22s ease, transform .22s ease, background .22s ease;
}

.go-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.go-top:hover {
    background: var(--red-dark) !important;
    color: #fff !important;
}

.go-top i {
    font-size: 22px;
    line-height: 1;
}

/* ========================================
   Responsive Media Queries
======================================== */
@media (max-width: 1180px) {

    .nav-links,
    .header-call {
        display: none;
    }

    .nav-shell {
        min-height: 76px;
        gap: 14px;
    }

    .brand {
        min-width: 0;
    }

    .brand-copy {
        min-width: 0;
    }

    .brand-copy strong,
    .brand-copy small {
        overflow-wrap: anywhere;
    }

    .nav-actions {
        flex: 0 0 auto;
    }

    .menu-toggle {
        display: grid;
    }

    .about-showcase,
    .faculty-hero,
    .facilities-hero,
    .result-layout,
    .faq-layout,
    .contact-container,
    .timing-heading,
    .timing-content {
        grid-template-columns: 1fr;
    }

    .process-grid,
    .faculty-points,
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid,
    .facilities-grid,
    .timing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-card,
    .program-card:nth-child(4),
    .program-card:nth-child(5) {
        grid-column: auto;
    }

    .result-layout {
        gap: 38px;
    }

    .about-showcase {
        overflow: clip;
    }

    .about-visual {
        width: min(100%, 700px);
        min-height: 590px;
        margin: 0 auto;
    }

    .about-frame {
        right: 42px;
        width: calc(100% - 42px);
    }

    .about-frame::before {
        right: -18px;
    }

    .about-logo-badge {
        right: 0;
        bottom: 8px;
    }

    .courses-section .program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 820px !important;
    }

    .courses-section .program-card,
    .courses-section .program-card:nth-child(4),
    .courses-section .program-card:nth-child(5) {
        grid-column: auto !important;
    }

    .result-section .result-layout {
        grid-template-columns: 1fr !important;
        gap: 44px !important;
    }

    .result-section .result-copy {
        max-width: 760px !important;
    }

    .result-section .result-list {
        max-width: 780px !important;
    }

    .faq-section .faq-layout {
        grid-template-columns: 1fr !important;
        gap: 46px !important;
    }

    .faq-section .faq-support-card,
    .faq-section .faq-stats {
        max-width: none !important;
    }

    .contact-section .contact-container {
        grid-template-columns: 1fr !important;
    }

    .contact-section .contact-map-card {
        grid-template-rows: minmax(360px, 1fr) auto !important;
    }

    .contact-section .contact-map,
    .contact-section .contact-map iframe {
        min-height: 360px !important;
    }

    .footer-cta-inner {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .footer-cta-side {
        padding-left: 0 !important;
        border-left: 0 !important;
    }

    .timing-section .timing-content {
        grid-template-columns: 1fr !important;
        max-width: 820px !important;
    }

    .timing-section .timing-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .facilities-section .facilities-highlights {
        grid-template-columns: repeat(3, minmax(170px, 1fr)) !important;
    }

}

@media (max-width: 1366px) {
    .about-logo-badge {
        right: 0;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .section {
        padding: 58px 0;
    }

    .header-top-right,
    .nav-actions .btn,
    .header-top-left a {
        display: none;
    }

    .header-top {
        font-size: 13px;
    }

    .header-top-inner {
        justify-content: center;
        min-height: 34px;
        width: 100%;
        padding: 0 16px;
    }

    .header-top-left {
        justify-content: center;
        width: 100%;
        min-width: 0;
    }

    .header-top-left span {
        display: block;
        width: 100%;
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .feature-grid,
    .program-grid,
    .process-grid,
    .timing-cards,
    .faculty-grid,
    .faculty-points,
    .result-features,
    .facilities-highlights,
    .facilities-grid,
    .contact-methods,
    .mission-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .about-stats strong {
        font-size: clamp(27px, 7.4vw, 34px);
    }

    .go-top {
        right: 24px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }

    .footer-cta-inner,
    .footer-bottom-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .page-banner {
        min-height: 430px;
    }

    .page-breadcrumb {
        min-height: auto;
        padding: 14px 22px;
        margin-bottom: 28px;
    }

    .breadcrumb-item {
        font-size: 16px;
        gap: 10px;
    }

    .breadcrumb-list {
        gap: 10px;
    }

    .page-banner-title {
        font-size: clamp(42px, 13vw, 58px);
    }

    .page-banner-title::after {
        margin-top: 24px;
    }

    .page-banner-description {
        margin-top: 24px;
        font-size: 18px;
        line-height: 1.55;
    }

    .about-visual,
    .faculty-visual,
    .facilities-visual {
        min-height: 360px;
    }

    .about-showcase {
        gap: 36px;
        padding-top: 8px;
        padding-bottom: 34px;
    }

    .about-content h2,
    .about-content p {
        max-width: none;
    }

    .about-btn {
        min-width: 0;
    }

    .about-visual {
        width: 100%;
        max-width: 420px;
        min-height: 430px;
        margin: 0 auto;
    }

    .about-frame {
        inset: 8px 0 42px 0;
        width: auto;
        height: auto;
        border-radius: 64px 20px 64px 20px;
        overflow: visible;
    }

    .about-frame::before {
        top: 32px;
        right: 0;
        border-radius: 18px 18px 64px 18px;
    }

    .about-frame img {
        right: 16px;
        bottom: 10px;
        width: calc(100% - 42px);
        height: calc(100% - 78px);
        border-radius: 18px 18px 58px 18px;
    }

    .about-logo-badge {
        right: 8px;
        bottom: 6px;
        width: 88px;
        height: 88px;
    }

    .about-logo-badge img {
        height: 88px;
    }

    .about-dots,
    .about-mission {
        display: none;
    }

    .faculty-visual img,
    .facilities-visual img {
        width: 100%;
        height: 330px;
    }

    .program-head {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .program-head a {
        grid-column: 2;
    }

    .admission-band {
        grid-template-columns: 1fr;
        padding: 34px 24px;
    }

    .process-card>strong {
        top: 20px;
        right: 20px;
        border-color: #fff;
    }

    .admission-benefits {
        grid-template-columns: 1fr;
    }

    .admission-benefits div,
    .faculty-points div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .result-card {
        grid-template-columns: 72px minmax(0, 1fr);
        padding: 24px;
    }

    .result-card em {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .result-card strong {
        padding-right: 54px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 190px;
    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.third {
        grid-column: auto;
        grid-row: auto;
    }

    .split-heading {
        grid-template-columns: 1fr;
    }

    .courses-section .courses-container {
        width: min(100% - 32px, 1240px) !important;
    }

    .courses-section .program-grid {
        grid-template-columns: 1fr !important;
    }

    .courses-section .program-card {
        min-height: auto !important;
    }

    .courses-section .program-card-top {
        min-height: auto !important;
    }

    .courses-section .program-head {
        grid-template-columns: 58px minmax(0, 1fr) !important;
    }

    .courses-section .program-head a {
        grid-column: 2 !important;
        justify-self: start !important;
        margin-top: 8px !important;
    }

    .courses-section .courses-cta {
        width: 100% !important;
    }

    .result-section {
        padding: 62px 0 !important;
    }

    .result-section .result-layout {
        width: min(100% - 32px, 1180px) !important;
    }

    .result-section .result-features {
        grid-template-columns: 1fr !important;
    }

    .result-section .result-card {
        position: relative !important;
        grid-template-columns: 64px minmax(0, 1fr) !important;
        padding: 24px !important;
    }

    .result-section .result-card em {
        position: absolute !important;
        top: 18px !important;
        right: 18px !important;
        width: 46px !important;
        height: 46px !important;
        font-size: 18px !important;
    }

    .result-section .result-card strong {
        padding-right: 54px !important;
    }

    .result-section .result-copy h2 {
        font-size: clamp(34px, 10vw, 46px) !important;
    }

    .faq-section {
        padding: 68px 0 !important;
    }

    .faq-section .faq-layout {
        width: min(100% - 32px, 1180px) !important;
    }

    .faq-section .faq-support-card {
        grid-template-columns: 1fr !important;
    }

    .faq-section .faq-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px 0 !important;
    }

    .faq-section .faq-stats div:nth-child(2) {
        border-right: 0 !important;
    }

    .faq-section .faq-list summary {
        grid-template-columns: 40px minmax(0, 1fr) 28px !important;
        gap: 12px !important;
        padding: 16px !important;
        font-size: 17px !important;
    }

    .faq-section .faq-list details p {
        padding: 0 18px 22px 68px !important;
        font-size: 15.5px !important;
    }

    .contact-section {
        padding: 68px 0 !important;
    }

    .contact-section .contact-container {
        width: min(100% - 32px, 1200px) !important;
    }

    .contact-section .contact-panel {
        padding: 28px !important;
    }

    .contact-section .contact-methods {
        grid-template-columns: 1fr !important;
    }

    .contact-section .contact-hours {
        grid-template-columns: 54px minmax(0, 1fr) !important;
        padding: 24px !important;
    }

    .contact-section .contact-hours>span {
        width: 50px !important;
        height: 50px !important;
    }

    .footer-cta {
        padding: 58px 0 !important;
    }

    .footer-cta-inner {
        width: min(100% - 32px, 1120px) !important;
    }

    .footer-guidance-features {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px 0 !important;
    }

    .footer-guidance-features div:nth-child(2) {
        border-right: 0 !important;
    }

    .footer-cta-actions .btn {
        font-size: 16px !important;
    }

    .timing-section {
        padding: 68px 0 !important;
    }

    .timing-section .timing-container {
        width: min(100% - 32px, 1120px) !important;
    }

    .timing-section .timing-cards {
        grid-template-columns: 1fr !important;
    }

    .timing-section .timing-card,
    .timing-section .timing-note {
        min-height: auto !important;
    }

    .facilities-section .facilities-highlights {
        grid-template-columns: 1fr !important;
    }

    .facilities-section .facilities-highlights p {
        max-width: 420px !important;
    }

    .mobile-course-group>div {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 420px) {
    .header-top {
        font-size: 12.5px;
    }

    .header-top-inner {
        min-height: 32px;
        padding: 0 12px;
    }

    .mobile-panel-inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .mobile-menu-header {
        gap: 10px;
    }

    .mobile-menu-brand {
        gap: 10px;
    }

    .mobile-menu-brand .brand-mark,
    .mobile-menu-brand .brand-mark img {
        width: 38px;
        height: 38px;
    }

    .mobile-menu-brand .brand-copy strong {
        max-width: 56vw;
        font-size: clamp(16px, 5vw, 21px);
    }

    .mobile-menu-brand .brand-copy small {
        font-size: 13px;
    }

    .mobile-menu-close {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

}