@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #071f4e;
    --navy-soft: #123271;
    --gold: #d5a11e;
    --gold-soft: #f5d36e;
    --cream: #fbf8f0;
    --paper: #ffffff;
    --mist: #ecf2ff;
    --ink: #15213b;
    --muted: #5f6c84;
    --border: rgba(7, 31, 78, 0.1);
    --shadow: 0 24px 60px rgba(9, 25, 61, 0.12);
    --radius: 26px;
    --container: min(1180px, calc(100vw - 32px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Hind Siliguri', sans-serif;
    font-size: 14px;
    line-height: 1.58;
    color: var(--ink);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(213, 161, 30, 0.18), transparent 30%),
        linear-gradient(180deg, #f7f9ff 0%, #fdfbf6 46%, #ffffff 100%);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
}

.topbar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: space-between;
    padding: 8px 0;
    align-items: center;
}

.topbar__inner p {
    margin: 0;
}

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

.topbar__actions {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.topbar__action:hover,
.topbar__action:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-1px);
}

.topbar__action--gold {
    background: var(--gold);
    border-color: rgba(224, 174, 47, 0.85);
    color: var(--navy) !important;
}

.topbar__action--gold:hover,
.topbar__action--gold:focus-visible {
    background: #f3c84f;
    border-color: #f3c84f;
}

.social-links {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-links svg {
    width: 17px;
    height: 17px;
}

.social-links--topbar a {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.social-links--footer {
    margin-top: 18px;
}

.social-links--footer a {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(7, 31, 78, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(213, 161, 30, 0.55);
    box-shadow: 0 10px 25px rgba(7, 31, 78, 0.12);
}

.brand__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.brand__title,
.brand__subtitle,
.site-nav__list a,
.nav-button,
.button,
.eyebrow,
.hero-card__badge,
.pill,
.site-footer__title,
.step-card__number {
    font-family: 'Inter', sans-serif;
}

.brand__title {
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--navy);
    line-height: 1.1;
    white-space: nowrap;
}

.brand__subtitle {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.15;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a,
.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav__list a:hover,
.nav-button:hover,
.site-nav__list .is-active,
.nav-button.is-active {
    color: var(--navy);
    background: rgba(7, 31, 78, 0.06);
}

.has-mega {
    position: relative;
}

.has-mega::after {
    content: '';
    position: absolute;
    left: -24px;
    right: -24px;
    top: 100%;
    height: 18px;
}

.mega-menu {
    position: absolute;
    inset: calc(100% + 18px) auto auto 50%;
    width: min(980px, calc(100vw - 48px));
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(7, 31, 78, 0.08);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.mega-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
}

.has-mega:hover .mega-menu,
.has-mega.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.mega-card,
.mega-feature,
.feature-card,
.page-card,
.banner-card,
.course-card,
.mini-course-card,
.stat-card,
.hero-card,
.hero-slider,
.poster-panel,
.story-panel,
.director-desk,
.step-card,
.contact-card,
.form-card,
.partner-card,
.info-card,
.detail-panel,
.faq-item {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.mega-card {
    padding: 14px 14px 12px;
    border-top: 5px solid var(--accent);
}

.mega-card__eyebrow {
    margin: 0 0 6px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.mega-card > p {
    margin: 0 0 10px;
    font-size: 0.84rem;
    line-height: 1.42;
}

.mega-card h3,
.mega-feature h3,
.feature-card h3,
.course-card h3,
.step-card h3,
.contact-card h2,
.info-card h2,
.info-card h3,
.section-heading h2,
.hero h1,
.page-hero h1,
.cta-panel h2,
.story-panel h2 {
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    line-height: 1.1;
}

.mega-card p,
.mega-card li,
.mega-feature p,
.feature-card p,
.course-card p,
.step-card p,
.story-panel p,
.poster-panel p,
.contact-card p,
.info-card p,
.page-hero p,
.section-heading p,
.cta-panel p,
.site-footer__copy,
.footer-contact li {
    color: var(--muted);
}

.mega-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.mega-card ul,
.course-card__list,
.clean-list,
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-card ul {
    display: grid;
    gap: 4px;
    margin-top: 8px;
}

.mega-card li {
    line-height: 1.3;
}

.mega-card li a {
    display: block;
    padding: 4px 0;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.86rem;
}

.mega-feature {
    padding: 24px;
    background:
        linear-gradient(150deg, rgba(7, 31, 78, 0.98), rgba(18, 50, 113, 0.94)),
        radial-gradient(circle at top right, rgba(245, 211, 110, 0.32), transparent 40%);
    color: #fff;
    grid-column: span 3;
}

.mega-feature__label,
.poster-panel__label,
.hero-card__label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold-soft);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.mega-feature p,
.mega-feature h3 {
    color: #fff;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold) 0%, #f1be4d 100%);
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 16px 32px rgba(213, 161, 30, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(213, 161, 30, 0.34);
}

.button--ghost {
    background: rgba(7, 31, 78, 0.06);
    color: var(--navy);
    box-shadow: none;
}

.button--small {
    padding: 10px 16px;
    font-size: 0.84rem;
}

.menu-button {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 16px;
    background: rgba(7, 31, 78, 0.08);
    padding: 11px;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-button span {
    display: block;
    width: 100%;
    max-width: 28px;
    height: 3px;
    margin: 0;
    background: var(--navy);
    border-radius: 999px;
    flex: 0 0 auto;
}

.hero,
.page-hero {
    position: relative;
    overflow: clip;
}

.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    inset: auto -120px -120px auto;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 161, 30, 0.24), transparent 70%);
}

.hero {
    padding: 88px 0 56px;
}

.hero--banner {
    padding-top: 20px;
}

.hero-home-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
    min-width: 0;
}

.hero-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 24px;
}

.hero-side-stack {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.hero-slider {
    position: relative;
    min-height: 100%;
    padding: 28px;
    background:
        linear-gradient(155deg, rgba(7, 31, 78, 0.98), rgba(18, 50, 113, 0.92)),
        radial-gradient(circle at top right, rgba(245, 211, 110, 0.3), transparent 40%);
    color: #fff;
    overflow: hidden;
    min-width: 0;
}

.hero-slider--banner {
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)),
        linear-gradient(135deg, rgba(213, 161, 30, 0.06), rgba(7, 31, 78, 0.04));
    color: var(--ink);
}

.hero-slider--banner::after {
    display: none;
}

.hero-slider::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    right: -60px;
    bottom: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 211, 110, 0.25), transparent 72%);
}

.hero-slider__track {
    position: relative;
    min-height: 500px;
}

.hero-slider__track--banner {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    width: 100%;
    min-width: 0;
}

.hero-slide--banner {
    inset: 0;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hero-slide h1,
.hero-slide p,
.hero-slide .eyebrow {
    color: #fff;
}

.hero-slide .hero__chips span {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.hero-slide .button--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.hero-slide__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
    gap: 20px;
    min-height: 100%;
    align-items: stretch;
    min-width: 0;
}

.hero-slide__copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.hero-slide__media {
    display: grid;
    gap: 12px;
    align-content: start;
    min-width: 0;
}

.hero-slide__banner {
    width: 100%;
    min-height: 300px;
    border-radius: 24px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-slide__scope {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-slide__scope-label {
    display: inline-flex;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.hero-slide__scope ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-slide__scope li {
    position: relative;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
}

.hero-slide__scope li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-soft);
}

.hero-slide__full-banner {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.hero-slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.hero-slider__controls--banner {
    margin-top: 14px;
}

.hero-slider__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-slider__arrow,
.hero-slider__dot {
    border: 0;
    cursor: pointer;
}

.hero-slider__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.1rem;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
}

.hero-slider__dot.is-active {
    background: var(--gold-soft);
}

.hero-slider--banner .hero-slider__arrow {
    background: rgba(7, 31, 78, 0.9);
    color: #fff;
    box-shadow: 0 12px 24px rgba(7, 31, 78, 0.18);
}

.hero-slider--banner .hero-slider__dot {
    background: rgba(7, 31, 78, 0.22);
}

.hero-slider--banner .hero-slider__dot.is-active {
    background: var(--gold);
}

.banner-grid,
.page-grid,
.compact-grid,
.faq-list {
    display: grid;
    gap: 18px;
}

.banner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-card,
.banner-card,
.mini-course-card {
    padding: 22px;
}

.banner-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 255, 0.92));
}

.banner-card--admission {
    background:
        linear-gradient(160deg, rgba(213, 161, 30, 0.14), rgba(255, 255, 255, 0.96)),
        linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 255, 0.92));
}

.compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
}

.mini-course-card h3,
.page-card h3,
.banner-card h3,
.director-desk__content h2,
.detail-panel h2,
.faq-item button span {
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    line-height: 1.22;
}

.page-card h3,
.banner-card h3,
.mini-course-card h3,
.feature-card h3,
.course-card h3,
.step-card h3,
.partner-card h3,
.faq-item button span {
    font-size: 1.02rem;
}

.director-desk__content h2,
.detail-panel h2,
.contact-card h2,
.info-card h2,
.info-card h3,
.section-heading h2,
.cta-panel h2,
.story-panel h2 {
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.banner-card--image {
    overflow: hidden;
    padding: 0;
}

.banner-card--image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.banner-card__content {
    padding: 18px 20px 20px;
}

.mini-course-card p,
.page-card p,
.banner-card p,
.director-desk__content p,
.detail-panel p,
.detail-panel li,
.faq-answer p {
    color: var(--muted);
}

.page-card--category {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    overflow: hidden;
}

.page-card--category::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent, var(--gold)), rgba(255, 255, 255, 0));
}

.category-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.category-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: var(--accent, var(--navy));
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96)),
        linear-gradient(135deg, rgba(213, 161, 30, 0.12), rgba(7, 31, 78, 0.04));
    border: 1px solid rgba(7, 31, 78, 0.08);
    box-shadow: 0 14px 28px rgba(9, 25, 61, 0.08);
    flex-shrink: 0;
}

.category-card__icon svg {
    width: 28px;
    height: 28px;
}

.page-card--category .eyebrow {
    margin: 0;
}

.page-card--category .directory-note {
    margin-top: auto;
    margin-bottom: 2px;
}

.category-button {
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    gap: 10px;
    padding-right: 18px;
    border: 1px solid rgba(213, 161, 30, 0.22);
    box-shadow: 0 18px 30px rgba(213, 161, 30, 0.22);
}

.category-button::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 -130%;
    width: 120%;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.38) 50%, transparent 70%);
    transition: transform 0.55s ease;
}

.category-button:hover::before {
    transform: translateX(190%);
}

.category-button__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(7, 31, 78, 0.1);
    font-size: 0.95rem;
    transition: transform 0.22s ease, background 0.22s ease;
}

.category-button:hover .category-button__arrow {
    transform: translateX(4px);
    background: rgba(7, 31, 78, 0.16);
}

.directory-note {
    font-weight: 700;
    color: var(--navy);
}

.director-desk {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
    padding: 24px;
    align-items: center;
}

.director-desk__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 26px 0 0;
}

.director-desk__image::before {
    content: '';
    position: absolute;
    inset: 34px 0 0 34px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(7, 31, 78, 0.1), rgba(213, 161, 30, 0.16)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(236, 242, 255, 0.5));
    box-shadow: inset 0 0 0 1px rgba(7, 31, 78, 0.06);
}

.director-desk__image img {
    position: relative;
    z-index: 1;
    width: min(100%, 300px);
    aspect-ratio: 4 / 5;
    border-radius: 32px;
    object-fit: cover;
    background: #e9eef9;
    border: 6px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 24px 44px rgba(9, 25, 61, 0.14),
        0 10px 24px rgba(213, 161, 30, 0.16);
}

.director-signoff {
    display: grid;
    gap: 4px;
    margin-top: 22px;
}

.director-signoff strong {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
}

.section-offset {
    margin-top: 28px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
}

.detail-panel {
    padding: 24px;
}

.detail-panel--side {
    background:
        linear-gradient(160deg, rgba(7, 31, 78, 0.96), rgba(11, 45, 110, 0.92));
}

.detail-panel--side h2,
.detail-panel--side p,
.detail-panel--side li {
    color: #fff;
}

.detail-panel--side .eyebrow {
    color: var(--gold-soft);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    cursor: pointer;
}

.faq-item button strong {
    font-size: 1.3rem;
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 220px;
    padding: 0 24px 24px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #1faa59;
    color: #fff;
    box-shadow: 0 18px 30px rgba(24, 123, 64, 0.32);
    max-width: calc(100vw - 24px);
}

.floating-whatsapp span {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.floating-whatsapp svg {
    width: 20px;
    height: 20px;
}

.floating-whatsapp strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
}

.page-hero {
    padding: 28px 0 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 38px 40px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(7, 31, 78, 0.98), rgba(18, 50, 113, 0.96)),
        radial-gradient(circle at top right, rgba(245, 211, 110, 0.26), transparent 42%);
    box-shadow: 0 26px 60px rgba(7, 31, 78, 0.18);
}

.page-hero .container::before {
    content: '';
    position: absolute;
    inset: auto -88px -88px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 211, 110, 0.22), transparent 70%);
    pointer-events: none;
}

.page-hero .container::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
        linear-gradient(rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%);
    background-size: 26px 26px;
    opacity: 0.18;
    pointer-events: none;
}

.hero__grid,
.about-layout,
.contact-layout,
.two-column-panel,
.cta-panel {
    display: grid;
    gap: 24px;
}

.hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: center;
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--gold);
}

.hero h1,
.page-hero h1 {
    font-size: clamp(1.8rem, 3.2vw, 3.15rem);
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 1;
}

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

.page-hero h1 {
    color: #fff;
    max-width: 15ch;
}

.page-hero p {
    max-width: 68ch;
    color: rgba(255, 255, 255, 0.84);
}

.hero__lead {
    font-size: 0.94rem;
    line-height: 1.54;
    overflow-wrap: break-word;
    word-break: normal;
}

.hero__supporting {
    max-width: 60ch;
    font-size: 0.9rem;
    line-height: 1.58;
    overflow-wrap: break-word;
    word-break: normal;
}

.hero__chips,
.hero-card__tracks,
.anchor-pills,
.cta-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__chips span,
.hero-card__tracks span,
.pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(7, 31, 78, 0.06);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.84rem;
}

.hero-card__tracks span {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-card {
    position: relative;
    padding: 28px;
    background:
        linear-gradient(160deg, rgba(7, 31, 78, 0.98), rgba(18, 50, 113, 0.95)),
        linear-gradient(180deg, rgba(245, 211, 110, 0.15), transparent);
    color: #fff;
    overflow: hidden;
}

.hero-support-grid .hero-card,
.hero-support-grid .banner-card--admission {
    height: 100%;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: auto -48px -42px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 211, 110, 0.35), transparent 70%);
}

.hero-card__badge {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold-soft);
    font-size: 0.76rem;
    font-weight: 800;
}

.hero-card__brand {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.hero-card__affiliations {
    margin: -2px 0 22px;
}

.hero-card__trust-copy {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card__affiliation-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-card__affiliation {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    padding: 12px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-card__affiliation img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.hero-card__brand > div,
.hero-card__brand h2,
.hero-card__brand p,
.hero-card__callout,
.hero-card__callout p {
    min-width: 0;
}

.hero-card__brand img {
    width: 108px;
    height: 108px;
    border-radius: 24px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.14);
}

.hero-card__brand h2,
.hero-card__brand p,
.hero-card__callout p {
    color: #fff;
}

.hero-card__callout {
    margin-top: 22px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
}

.stats-grid,
.feature-grid,
.course-grid,
.steps-grid,
.partner-grid,
.contact-grid {
    display: grid;
    gap: 18px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
    gap: 20px;
}

.stat-card {
    position: relative;
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 164px;
    padding: 22px 20px 20px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96)),
        linear-gradient(135deg, rgba(213, 161, 30, 0.04), rgba(11, 45, 110, 0.04));
    border: 1px solid rgba(7, 31, 78, 0.08);
    border-radius: 28px;
    box-shadow: 0 22px 45px rgba(7, 31, 78, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    isolation: isolate;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--stat-accent, var(--gold)), rgba(7, 31, 78, 0.96));
}

.stat-card::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    top: -92px;
    right: -92px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 161, 30, 0.12), transparent 70%);
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(7, 31, 78, 0.14);
    box-shadow: 0 28px 55px rgba(7, 31, 78, 0.14);
}

.stat-card__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 4px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--stat-accent, var(--gold)), var(--navy));
    color: #fff;
    box-shadow: 0 14px 28px rgba(7, 31, 78, 0.16);
}

.stat-card__icon svg {
    width: 24px;
    height: 24px;
}

.stat-card__eyebrow {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stat-accent, var(--gold));
}

.stat-card__value {
    display: block;
    margin: 0;
    font-size: clamp(1.95rem, 3.2vw, 2.7rem);
    line-height: 0.95;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
}

.stat-card__label {
    display: block;
    max-width: 18ch;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.52;
}

.partner-strip {
    padding-bottom: 20px;
}

.partner-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: rgba(7, 31, 78, 0.94);
    color: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.partner-strip__inner p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.partner-strip__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.partner-strip__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 8px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.partner-strip__logo img {
    display: block;
    height: 36px;
    width: auto;
    max-width: min(160px, 28vw);
}

.section {
    padding: 64px 0;
}

.section--soft {
    background: linear-gradient(180deg, rgba(236, 242, 255, 0.62), rgba(255, 255, 255, 0));
}

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

.section-heading--left {
    margin-left: 0;
    text-align: left;
}

.feature-grid,
.course-grid,
.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.feature-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.course-card,
.step-card,
.partner-card,
.contact-card,
.info-card,
.form-card {
    padding: 22px;
}

.course-card__top,
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.course-card__duration,
.course-card__mode {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.86rem;
}

.course-card__overview {
    margin-bottom: 16px;
}

.course-card__list,
.clean-list,
.footer-links,
.footer-contact,
.poster-panel ul {
    display: grid;
    gap: 12px;
}

.course-card__list li,
.clean-list li,
.poster-panel li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
}

.course-card__list li::before,
.clean-list li::before,
.poster-panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #f4c957);
}

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

.two-column-panel,
.about-layout,
.contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-column-panel--highlighted {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: stretch;
}

.story-panel,
.poster-panel {
    padding: 30px;
}

.story-panel--highlighted {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.story-panel--highlighted > p:not(.eyebrow) {
    margin: 0;
    max-width: 58ch;
}

.info-stack {
    display: grid;
    gap: 18px;
}

.info-card--full {
    height: 100%;
}

.contact-page .page-hero p {
    max-width: 56ch;
    font-size: 0.88rem;
}

.contact-grid--summary {
    gap: 16px;
}

.contact-card--compact {
    min-height: 0;
    padding: 18px 18px 16px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.95)),
        linear-gradient(135deg, rgba(213, 161, 30, 0.05), rgba(7, 31, 78, 0.03));
}

.contact-card--compact .eyebrow {
    margin-bottom: 10px;
}

.contact-card__value {
    display: block;
    margin: 0 0 8px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.45vw, 1.2rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--navy);
    word-break: break-word;
}

.contact-card__value--email {
    font-size: clamp(0.94rem, 1.3vw, 1.08rem);
}

.contact-card__note {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.52;
    color: var(--muted);
}

.contact-layout--refined {
    gap: 20px;
    align-items: stretch;
}

.info-card--contact {
    padding: 24px 24px 22px;
    background:
        linear-gradient(160deg, rgba(7, 31, 78, 0.98), rgba(18, 50, 113, 0.94)),
        radial-gradient(circle at top right, rgba(245, 211, 110, 0.24), transparent 40%);
    color: #fff;
}

.info-card--contact .eyebrow {
    color: var(--gold-soft);
}

.info-card--contact h2,
.info-card--contact p,
.info-card--contact li,
.info-card--contact a {
    color: #fff;
}

.info-card--contact h2 {
    margin-bottom: 14px;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.info-card--contact .clean-list {
    gap: 10px;
}

.info-card--contact .clean-list li {
    font-size: 0.88rem;
    line-height: 1.58;
}

.form-card--contact {
    padding: 24px 24px 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.95)),
        linear-gradient(135deg, rgba(213, 161, 30, 0.05), rgba(7, 31, 78, 0.03));
}

.form-card--contact h2 {
    margin-bottom: 8px;
    font-size: clamp(1.18rem, 2vw, 1.65rem);
}

.form-card__intro {
    margin: 0 0 14px;
    font-size: 0.84rem;
    line-height: 1.56;
    color: var(--muted);
}

.verification-layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: start;
}

.verification-page .page-hero p {
    max-width: 60ch;
}

.verification-side,
.verification-panel {
    min-height: 100%;
}

.verification-side {
    position: sticky;
    top: 110px;
}

.verification-links {
    margin-top: 18px;
}

.verification-links a {
    color: #fff;
    font-weight: 700;
}

.verification-result {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(7, 31, 78, 0.1);
}

.verification-record {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.verification-record div {
    padding: 14px 16px;
    border: 1px solid rgba(7, 31, 78, 0.08);
    border-radius: 18px;
    background: rgba(7, 31, 78, 0.04);
}

.verification-record dt {
    margin: 0 0 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.verification-record dd {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--navy);
    word-break: break-word;
}

.verification-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.verification-note {
    margin: 14px 0 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--muted);
}

.poster-panel {
    background:
        linear-gradient(160deg, rgba(7, 31, 78, 0.96), rgba(11, 45, 110, 0.93)),
        radial-gradient(circle at top right, rgba(245, 211, 110, 0.26), transparent 45%);
    color: #fff;
}

.poster-panel p,
.poster-panel li {
    color: rgba(255, 255, 255, 0.9);
}

.poster-panel--programs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.poster-panel--programs h3 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 1.65rem;
    line-height: 1.15;
}

.poster-panel--programs p {
    margin: 0;
    max-width: 40ch;
}

.feature-card--highlight {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding: 22px;
}

.feature-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(213, 161, 30, 0.16), rgba(213, 161, 30, 0.3));
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    flex-shrink: 0;
}

.feature-card--highlight h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
}

.feature-card--highlight p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.program-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.program-list li {
    margin: 0;
    position: static;
    padding-left: 0;
}

.program-list li::before {
    content: none;
}

.program-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.program-list a:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 211, 110, 0.28);
}

.program-list__dot {
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    box-shadow: 0 0 0 6px rgba(245, 211, 110, 0.1);
    flex-shrink: 0;
}

.steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card__number {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 800;
}

.cta-panel {
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(7, 31, 78, 0.98), rgba(18, 50, 113, 0.96));
    border-radius: 30px;
    color: #fff;
    box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel p {
    color: #fff;
}

.partner-card {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    min-height: 180px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--navy);
}

.partner-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 0.94rem;
}

.partner-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.partner-card__logo {
    display: block;
    width: min(220px, 100%);
    height: 70px;
    object-fit: contain;
}

.form-card form {
    display: grid;
    gap: 16px;
}

.inquiry-form label {
    display: grid;
    gap: 6px;
}

.inquiry-form span {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.82rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid rgba(7, 31, 78, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    padding: 12px 14px;
    font-size: 0.88rem;
    color: var(--ink);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 120px;
}

.inquiry-form small {
    color: #c13c3c;
    font-size: 0.76rem;
}

.alert {
    margin-bottom: 18px;
    border-radius: 16px;
    padding: 12px 14px;
    font-size: 0.82rem;
    font-weight: 700;
}

.alert--success {
    background: rgba(53, 155, 84, 0.12);
    color: #1a6b34;
}

.alert--error {
    background: rgba(193, 60, 60, 0.12);
    color: #8a2727;
}

.pill--link {
    background: rgba(7, 31, 78, 0.08);
}

.site-footer {
    margin-top: 80px;
    padding: 54px 0 28px;
    background: #071b43;
    color: rgba(255, 255, 255, 0.92);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 28px;
}

.brand--footer .brand__title,
.brand--footer .brand__subtitle,
.site-footer__copy,
.footer-links a,
.footer-contact li,
.site-footer__bottom a,
.site-footer__bottom p {
    color: rgba(255, 255, 255, 0.86);
}

.site-footer__title {
    margin: 0 0 18px;
    color: var(--gold-soft);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.site-footer__copy,
.footer-links a,
.footer-contact li,
.site-footer__bottom a,
.site-footer__bottom p {
    font-size: 0.84rem;
}

.site-footer__bottom {
    margin-top: 32px;
    padding: 18px 22px;
    border-top: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #041330, #0a265f);
}

.bengali-copy,
.bengali-copy h2,
.bengali-copy p {
    font-family: 'Hind Siliguri', 'Inter', sans-serif;
}

.bengali-copy p {
    line-height: 1.82;
}

@media (max-width: 1100px) {
    .stats-grid,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid,
    .feature-grid--compact,
    .page-grid,
    .banner-grid,
    .course-grid,
    .partner-grid,
    .contact-grid,
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mega-menu__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mega-feature {
        grid-column: span 2;
    }
}

@media (max-width: 980px) {
    .site-header__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        flex-wrap: nowrap;
    }

    .brand {
        min-width: 0;
        max-width: 100%;
    }

    .menu-button {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        justify-self: end;
        margin-left: 0;
        border: 1px solid rgba(7, 31, 78, 0.14);
        background: rgba(7, 31, 78, 0.1);
        box-shadow: 0 10px 24px rgba(7, 31, 78, 0.08);
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 28px;
        border: 1px solid rgba(7, 31, 78, 0.08);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav__list li,
    .site-nav__list a,
    .nav-button {
        width: 100%;
        justify-content: flex-start;
    }

    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        margin-top: 12px;
        padding: 16px;
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        display: none;
    }

    .has-mega::after,
    .mega-menu::before {
        display: none;
    }

    .has-mega:hover .mega-menu {
        visibility: hidden;
        pointer-events: none;
    }

    .has-mega.is-open .mega-menu {
        display: block;
        visibility: visible;
        pointer-events: auto;
    }

    .hero__grid,
    .hero-home-layout,
    .hero-slide__layout,
    .about-layout,
    .contact-layout,
    .two-column-panel,
    .cta-panel,
    .director-desk,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .verification-layout {
        grid-template-columns: 1fr;
    }

    .verification-side {
        position: static;
    }

    .hero-support-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider__track {
        min-height: auto;
    }

    .hero-slider__track--banner {
        aspect-ratio: auto;
    }

    .hero-slide {
        position: relative;
        inset: auto;
        display: none;
        transform: none;
    }

    .hero-slide.is-active {
        display: block;
    }

    .hero-slide__full-banner {
        height: auto;
    }

    .director-desk__image {
        padding: 12px;
    }

    .director-desk__image::before {
        inset: 26px 8px 0 26px;
    }

    .director-desk__image img {
        width: min(100%, 270px);
    }
}

@media (max-width: 760px) {
    .topbar__inner {
        justify-content: flex-start;
    }

    .topbar {
        font-size: 0.82rem;
    }

    .social-links--topbar {
        width: 100%;
        justify-content: flex-start;
    }

    .topbar__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .hero,
    .section {
        padding: 60px 0;
    }

    .hero--banner {
        padding-top: 12px;
    }

    .page-hero {
        padding: 20px 0 0;
    }

    .page-hero .container {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .feature-grid,
    .feature-grid--compact,
    .page-grid,
    .banner-grid,
    .course-grid,
    .partner-grid,
    .contact-grid,
    .site-footer__grid,
    .stats-grid,
    .steps-grid,
    .mega-menu__grid,
    .compact-grid {
        grid-template-columns: 1fr;
    }

    .mega-feature {
        grid-column: auto;
    }

    .verification-record {
        grid-template-columns: 1fr;
    }

    .verification-actions {
        flex-direction: column;
    }

    .verification-actions .button {
        width: 100%;
    }

    .hero-card__brand {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-card__affiliation-list {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: auto;
        padding: 22px 18px 20px;
    }

    .stat-card__label {
        max-width: none;
    }

    .hero-slider {
        padding: 26px;
    }

    .hero-slider--banner {
        padding: 12px;
    }

    .hero-slider__controls {
        margin-top: 14px;
    }

    .banner-card--image img {
        height: 190px;
    }

    .course-card__top,
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(1.85rem, 9vw, 2.7rem);
        max-width: 9ch;
    }

    .page-hero h1 {
        max-width: none;
    }

    .hero__lead {
        font-size: 0.94rem;
    }

    .hero__supporting {
        font-size: 0.9rem;
        max-width: none;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-whatsapp strong {
        display: none;
    }

    .partner-strip__inner {
        justify-content: flex-start;
    }

    .partner-strip__logo {
        min-height: 52px;
        padding: 8px 10px;
    }

    .partner-strip__logo img {
        height: 30px;
        max-width: 132px;
    }
}
