:root {
    --navy: #061936;
    --green: #00a89d;
    --gold: #f2b642;
    --coral: #f9900a;
    --sky: #2d8fca;
    --ink: #17212b;
    --muted: #637083;
    --line: #dce4ea;
    --soft: #f5f8f7;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(6, 25, 54, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

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

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

.container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.container {
    max-width: 1300px;
}
.top-strip {
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
}


.top-strip-inner {
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.top-strip a {
    color: var(--gold);
    font-weight: 700;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 30;
}

body:not(.home-page) .navbar {
    position: relative;
    background: rgba(6, 25, 54, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

body:not(.home-page) .brand,
body:not(.home-page) .nav-link {
    color: var(--white);
}

body:not(.home-page) .brand small {
    color: rgba(255, 255, 255, 0.78);
}

body:not(.home-page) .nav-link:hover,
body:not(.home-page) .nav-item.active > .nav-link {
    background: rgba(255, 255, 255, 0.14);
    color: #ffb23c;
}

body:not(.home-page) .submenu ul .nav-link {
    color: var(--navy);
}

body:not(.home-page) .submenu ul .nav-link:hover {
    background: var(--soft);
    color: var(--green);
}

.home-page .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 30;
}

.home-page .top-strip {
    background: rgba(6, 25, 54, 0.88);
}

.home-page .navbar {
    position: relative;
    background: rgba(6, 25, 54, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.home-page .brand,
.home-page .nav-link {
    color: var(--white);
}

.home-page .brand small {
    color: rgba(255, 255, 255, 0.76);
}

.home-page .nav-link:hover,
.home-page .nav-item.active > .nav-link {
    background: rgba(255, 255, 255, 0.14);
    color: #ffb23c;
}

.nav-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--navy);
}

.brand img,
.footer-brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.brand strong,
.footer-brand span {
    display: block;
    font-size: 21px;
    line-height: 1.1;
}

.brand small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 13px;
    border-radius: 6px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
}

.nav-link:hover,
.nav-item.active > .nav-link {
    background: var(--soft);
    color: var(--green);
}

.submenu > .nav-link::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.submenu ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 245px;
    list-style: none;
    margin: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
}

.submenu:hover ul,
.submenu:focus-within ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu ul .nav-link {
    padding: 10px 12px;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    padding: 9px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--navy);
}

.hero-slider-layout {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #050b1f;
    color: var(--white);
}

.swiper,
.swiper-wrapper,
.swiper-slide,
.hero-slide {
    min-height: inherit;
}

.swiper-wrapper {
    position: relative;
}

.swiper-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.9s ease, visibility 0.9s ease, transform 1.2s ease;
}

.swiper-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.hero-slide {
    position: relative;
    display: block;
    padding: 320px 0 180px;
}

.hero.hero-slider-layout .hero-slide::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 11, 31, 0.88) 0%, rgba(5, 11, 31, 0.68) 36%, rgba(5, 11, 31, 0.22) 64%, rgba(5, 11, 31, 0.02) 100%),
        linear-gradient(180deg, rgba(5, 11, 31, 0.62) 0%, rgba(5, 11, 31, 0.08) 38%, rgba(5, 11, 31, 0.72) 100%);
}

.hero-slider-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.01);
    filter: saturate(1.18) contrast(1.08) brightness(1.03);
}

.swiper-slide:first-child .hero-slider-image img {
    object-position: center center;
}

.swiper-slide:nth-child(2) .hero-slider-image img {
    object-position: center center;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

.col-lg-8,
.col-lg-9 {
    width: min(100%, 850px);
}

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

.section-title h3 {
    margin: 0 0 22px;
    color: #ff9416;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 7px;
    text-transform: uppercase;
}

.section-title h1 {
    color: var(--white);
    font-size: clamp(48px, 5.2vw, 86px);
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
    max-width: 950px;
    text-shadow: 0 16px 42px rgba(0, 0, 0, 0.48);
}

.home-page .section-title h1 {
    font-size: clamp(34px, 4.15vw, 62px);
    max-width: 760px;
}

.section-title p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.7;
}

.text-anime-style-3 {
    animation: heroTextIn 0.9s ease both;
}

.hero-pagination {
    position: absolute;
    z-index: 3;
    left: max(16px, calc((100vw - 1300px) / 2 + 15px));
    bottom: 64px;
    display: flex;
    gap: 10px;
}

.hero-pagination button {
    width: 13px;
    height: 13px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-pagination button.is-active {
    background: #00a89d;
    transform: scale(1.18);
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-grid,
.split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 46px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--coral);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-slider-layout .eyebrow,
.accent-band .eyebrow {
    color: var(--gold);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 850px;
    margin-bottom: 18px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 14px;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 21px;
}

.hero-slider-layout p,
.page-hero p {
    max-width: 680px;
    font-size: 18px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
    will-change: transform;
}

.btn::after,
.chairman-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.36) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.btn:hover,
.chairman-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(6, 25, 54, 0.18);
}

.btn:hover::after,
.chairman-btn:hover::after {
    transform: translateX(120%);
}

.btn.primary {
    background: #f9900a;
    color: var(--white);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(10px);
}

.nav-admission {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 8px;
    background: #f9900a;
    color: var(--white);
    font-weight: 900;
    white-space: nowrap;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.nav-admission:hover {
    background: #ffab2f;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.home-page .nav-admission {
    display: none;
}

.btn.outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(6, 25, 54, 0.18);
}

.dark-actions .btn.outline {
    background: rgba(255, 255, 255, 0.72);
}

.premium-intro-section {
    background:
        linear-gradient(135deg, #ffffff 0%, #f7fbff 55%, #eefcf9 100%);
}

.premium-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 560px);
    gap: 56px;
    align-items: center;
}

.premium-intro-grid p {
    max-width: 700px;
    color: var(--muted);
    font-size: 18px;
}

.premium-stats {
    display: grid;
    gap: 16px;
}

.premium-stats.images img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius:12px;
}

.premium-stats article {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 150px;
    padding: 22px;
    border: 1px solid rgba(6, 25, 54, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 46px rgba(6, 25, 54, 0.08);
}

.premium-stats strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #00a89d;
    color: var(--white);
    font-size: 20px;
}

.premium-stats span {
    color: var(--navy);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.35;
}


.home-feature-section {
    background: #ffffff;
}

.home-curriculum-section {
    background: #ffffff;
    border-left: 1px solid rgba(6, 25, 54, 0.1);
    border-right: 1px solid rgba(6, 25, 54, 0.1);
}

.home-curriculum-heading {
    max-width: 980px;
    margin-bottom: 44px;
}

.home-curriculum-heading h2 {
    max-width: 860px;
    color: #062653;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.08;
}

.home-curriculum-heading p {
    max-width: 760px;
    color: #2f4058;
    font-size: 18px;
    line-height: 1.75;
}

.home-curriculum-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 1.06fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.curriculum-card {
    min-height: 520px;
    padding: 30px;
    border: 1px solid #dce4ea;
    border-top: 5px solid #f9900a;
    border-radius: 8px;
    background: #ffffff;
}

.curriculum-card.skills {
    border-top-color: #e91e63;
}

.curriculum-card.co {
    border-top-color: #00a89d;
}

.curriculum-card-title {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 24px;
}

.curriculum-card-title span {
    color: #f9900a;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
}

.curriculum-card.skills .curriculum-card-title span {
    color: #a20b43;
}

.curriculum-card.co .curriculum-card-title span {
    color: #007d78;
}

.curriculum-card h3 {
    margin: 0;
    color: #062653;
    font-size: clamp(28px, 2.7vw, 36px);
    line-height: 1.08;
    text-align: right;
}

.curriculum-card p {
    color: #344762;
    font-size: 18px;
    line-height: 1.7;
}

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

.curriculum-card li {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 9px 16px;
    border: 1px solid #dce4ea;
    border-radius: 999px;
    color: #061936;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.curriculum-card.skills li {
    border-color: rgba(233, 30, 99, 0.28);
    color: #9b073f;
}

.curriculum-card.co li {
    border-color: rgba(0, 168, 157, 0.3);
    color: #007d78;
}

.btn.light {
    background: var(--white);
    color: var(--green);
}

.hero-panel {
    display: grid;
    gap: 16px;
}

.stat-card,
.quote-box,
.contact-card,
.contact-form {
    padding: 26px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    color: var(--green);
    font-size: 42px;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 700;
}

.section {
    padding: 84px 0;
}

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

.section-heading p,
.content-block p,
.info-card p,
.feature-list p,
.timeline p,
.contact-card p,
.site-footer p {
    color: var(--muted);
}

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

.info-card {
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(244, 185, 66, 0.2);
    color: var(--green);
    font-weight: 900;
}

.accent-band {
    background: var(--green);
    color: var(--white);
}

.accent-band h2,
.accent-band p {
    color: var(--white);
}

.muted {
    background: var(--soft);
}

.page-hero {
    padding: 92px 0;
    background:
        linear-gradient(120deg, rgba(20, 50, 74, 0.92), rgba(20, 50, 74, 0.68)),
        linear-gradient(45deg, #14324a, #1c7c62);
    color: var(--white);
}

.inner-page-hero {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.inner-page-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) contrast(1.04);
}

.inner-page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 25, 54, 0.82), rgba(6, 25, 54, 0.54)),
        rgba(0, 70, 112, 0.34);
}

.inner-page-content {
    position: relative;
    z-index: 2;
    padding-top: 92px;
    text-align: center;
}

.inner-page-content h1 {
    margin: 0 0 14px;
    max-width: none;
    color: var(--white);
    font-size: clamp(34px, 3.2vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb span {
    color: var(--gold);
}

.breadcrumb a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transform: rotate(45deg);
}

.page-hero h1,
.page-hero p {
    color: var(--white);
}

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

.feature-list article {
    padding: 26px;
    border-left: 5px solid var(--green);
    border-radius: 8px;
    background: var(--soft);
}

.feature-showcase-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f3f8fb 52%, #ffffff 100%);
}

.feature-showcase {
    display: grid;
    gap: 34px;
}

.feature-topic {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(6, 25, 54, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 70px rgba(6, 25, 54, 0.1);
}

.feature-topic:nth-child(even) .feature-topic-image {
    order: 2;
}

.feature-topic-image {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--navy);
}

.feature-topic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.feature-topic:hover .feature-topic-image img {
    transform: scale(1.06);
    filter: saturate(1.12) contrast(1.04);
}

.feature-topic-image span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.feature-topic-content {
    padding: 34px 26px;
}

.feature-topic-content h3 {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
}

.feature-topic-content p {
    color: var(--muted);
    font-size: 17px;
}

.feature-topic-content ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}

.feature-topic-content li {
    position: relative;
    padding-left: 30px;
    color: var(--navy);
    font-weight: 700;
}

.feature-topic-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(0, 168, 157, 0.12);
}

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

.mini-feature-card {
    min-height: 230px;
    padding: 28px;
    border: 1px solid rgba(6, 25, 54, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.94));
    box-shadow: 0 18px 48px rgba(6, 25, 54, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.mini-feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 168, 157, 0.36);
    box-shadow: 0 24px 64px rgba(6, 25, 54, 0.14);
}

.mini-feature-card .icon {
    width: 54px;
    height: 54px;
    color: var(--navy);
    background: rgba(242, 182, 66, 0.32);
}

.admission-band {
    background: var(--navy);
    color: var(--white);
}

.admission-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.admission-band h2,
.admission-band p {
    color: var(--white);
}

.admission-band p {
    margin-bottom: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
}

.about-campus-section {
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 55%, #eefcf9 100%);
}

.about-campus-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 48px;
    align-items: center;
}

.about-campus-grid p {
    color: var(--muted);
    font-size: 17px;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.campus-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.campus-photo-card img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.campus-photo-card div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
}

.campus-photo-card strong {
    display: block;
    color: var(--navy);
    font-size: 28px;
    line-height: 1;
}

.campus-photo-card span {
    color: var(--muted);
    font-weight: 700;
}

.director-section {
    background: #ffffff;
}

.reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline article {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.timeline span {
    color: var(--coral);
    font-size: 22px;
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: start;
}

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

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
}

.content-block {
    max-width: 820px;
}

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

.check-list li {
    position: relative;
    padding-left: 32px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green);
}

.site-footer {
    background: #101b24;
    color: var(--white);
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: 34px;
    padding: 58px 0;
}

.site-footer h3,
.footer-brand span {
    color: var(--white);
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
    color: #dce4ea;
    overflow-wrap: anywhere;
}

.site-footer p {
    margin-bottom: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .nav-admission {
        display: none;
    }

    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    body:not(.home-page) .main-menu {
        background: rgba(255, 255, 255, 0.98);
    }

    body:not(.home-page) .main-menu .nav-link {
        color: var(--navy);
    }

    .main-menu.is-open {
        display: block;
    }

    .navbar-nav {
        width: min(1140px, calc(100% - 32px));
        margin: 0 auto;
        padding: 14px 0;
        display: grid;
        gap: 4px;
    }

    .submenu ul {
        position: static;
        min-width: 0;
        box-shadow: none;
        border: 0;
        padding: 0 0 0 18px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .hero-grid,
    .split,
    .contact-grid,
    .premium-intro-grid {
        grid-template-columns: 1fr;
    }

    .premium-stats.images img {
        height: 320px;
    }

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

    .inner-page-hero {
        min-height: 430px;
    }
}

@media (max-width: 640px) {
    .top-strip-inner {
        padding: 9px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

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

    .brand strong {
        font-size: 18px;
    }

    .hero-slider-layout,
    .page-hero {
        min-height: 760px;
    }

    .hero-slide {
        padding: 210px 0 140px;
    }

    .section-title h3 {
        font-size: 15px;
        letter-spacing: 4px;
    }

    .section-title h1 {
        font-size: clamp(30px, 9vw, 44px);
    }

    .section-title p {
        font-size: 16px;
    }

    .inner-page-hero {
        min-height: 360px;
    }

    .inner-page-content {
        padding-top: 82px;
    }

    .inner-page-content h1 {
        font-size: clamp(28px, 8vw, 38px);
    }


    .section {
        padding: 58px 0;
    }

    .cards-grid,
    .feature-list,
    .footer-grid,
    .timeline article {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 28px;
        padding: 42px 0;
    }

    .premium-stats.images img {
        height: 240px;
    }
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-container {
    position: relative;
    width: 148px;
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 255, 255, 0.16);
    border-top-color: var(--coral);
    border-right-color: var(--green);
    border-radius: 50%;
    animation: rotate-loading 1.2s linear infinite;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 50%;
    background: var(--white);
    transform: translate(-50%, -50%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

#loading-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.welcome {
    background-color:mediumvioletred;
    padding: 50px 20px;
    text-align: center;
}

.welcome_bg h2,
.welcome_bg p {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.welcome_bg span{
    color:#101b24;
}

/* ===============================
   CHAIRMAN SECTION
=================================*/

.chairman-section{
    padding:100px 0;
    background:#f8fbff;
    overflow:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.chairman-wrapper{
    display:flex;
    align-items:center;
    gap:70px;
}

/* Image Side */

.chairman-image-box{
    flex:1;
    position:relative;
}

.image-card{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.image-card img{
    width:100%;
    display:block;
    transition:0.5s ease;
}

.image-card:hover img{
    transform:scale(1.05);
}

.image-card::before{
    content:'';
    position:absolute;
    top:-20px;
    left:-20px;
    width:120px;
    height:120px;
    background:#0d6efd;
    border-radius:50%;
    opacity:.12;
    z-index:1;
}

.image-card::after{
    content:'';
    position:absolute;
    bottom:-30px;
    right:-30px;
    width:180px;
    height:180px;
    background:#ffc107;
    border-radius:50%;
    opacity:.12;
}

/* Content Side */

.chairman-content{
    flex:1.2;
}

.section-tag{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.chairman-content h2{
    font-size:42px;
    line-height:1.3;
    color:#1d3557;
    margin-bottom:25px;
    font-weight:700;
}

.chairman-content blockquote{
    border-left:5px solid #0d6efd;
    padding-left:20px;
    margin-bottom:25px;
    font-size:20px;
    font-style:italic;
    color:#555;
}

.chairman-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:18px;
}

.chairman-info{
    margin-top:30px;
    margin-bottom:30px;
}

.chairman-info h4{
    font-size:24px;
    color:#1d3557;
    margin-bottom:5px;
}

.chairman-info span{
    color:#0d6efd;
    font-weight:600;
}

.chairman-btn{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.chairman-btn:hover{
    background:#1d3557;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:992px){

    .chairman-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .chairman-content h2{
        font-size:32px;
    }

    .chairman-content{
        text-align:center;
    }

    .chairman-content blockquote{
        border-left:none;
        border-top:4px solid #0d6efd;
        padding-top:20px;
        padding-left:0;
    }

    .feature-topic,
    .about-campus-grid {
        grid-template-columns: 1fr;
    }

    .feature-topic:nth-child(even) .feature-topic-image {
        order: 0;
    }

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

    .admission-band-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media(max-width:576px){

    .chairman-section{
        padding:70px 0;
    }

    .chairman-content h2{
        font-size:26px;
    }

    .chairman-content p{
        font-size:15px;
    }

    .welcome_bg h2,
    .welcome_bg p {
        font-size: 34px;
    }

    .feature-topic {
        padding: 12px;
    }

    .feature-topic-image {
        min-height: 240px;
    }

    .feature-topic-content {
        padding: 24px 8px 10px;
    }

    .mini-feature-grid {
        grid-template-columns: 1fr;
    }

    .campus-photo-card img {
        height: 320px;
    }
}

/* Premium refresh for home message, features, and academics */
.welcome {
    background:
        linear-gradient(135deg, rgba(6, 25, 54, 0.96), rgba(13, 70, 96, 0.92)),
        url("../img/index/hero-learning.png") center/cover;
    padding: 58px 20px;
}

.welcome_bg h2,
.welcome_bg p {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    font-size: clamp(30px, 4.4vw, 54px);
    text-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.welcome_bg p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(18px, 2.1vw, 28px);
}

.welcome_bg span {
    color: #f2b642;
}

.btn.premium,
.chairman-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff9f1c, #f06b16);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(240, 107, 22, 0.28);
}

.btn.premium:hover,
.chairman-btn:hover {
    background: linear-gradient(135deg, #f06b16, #d94f0f);
    color: #ffffff;
}

.btn.outline-light,
.chairman-btn.ghost {
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.btn.outline-light:hover,
.chairman-btn.ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.16);
}

.chairman-section {
    position: relative;
    padding: 110px 0;
    background:
        linear-gradient(135deg, #fffaf2 0%, #f5fbff 48%, #edf8f6 100%);
    overflow: hidden;
}

.chairman-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(242, 182, 66, 0.08), transparent 36%),
        radial-gradient(circle at 86% 18%, rgba(0, 168, 157, 0.13), transparent 30%);
    pointer-events: none;
}

.chairman-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: 68px;
    align-items: center;
}

.chairman-image-box {
    position: relative;
}

.image-card {
    border: 10px solid #ffffff;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 32px 80px rgba(6, 25, 54, 0.16);
}

.image-card::before,
.image-card::after {
    display: none;
}

.image-card img {
    width: 100%;
    min-height: 440px;
    object-fit: cover;
    object-position: center top;
}

.chairman-badge {
    position: absolute;
    right: -26px;
    bottom: 34px;
    width: min(240px, 62%);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 8px;
    background: rgba(6, 25, 54, 0.92);
    color: #ffffff;
    box-shadow: 0 24px 54px rgba(6, 25, 54, 0.22);
    backdrop-filter: blur(14px);
}

.chairman-badge strong {
    display: block;
    color: #f2b642;
    font-size: 40px;
    line-height: 1;
}

.chairman-badge span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    line-height: 1.45;
}

.chairman-content {
    max-width: 720px;
}

.section-tag {
    padding: 9px 16px;
    border-radius: 8px;
    background: rgba(0, 168, 157, 0.12);
    color: #007d78;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.chairman-content h2 {
    max-width: 680px;
    color: #061936;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.06;
}

.chairman-content blockquote {
    margin: 28px 0;
    padding: 22px 26px;
    border-left: 5px solid #f9900a;
    border-radius: 0 8px 8px 0;
    background: rgba(255, 255, 255, 0.72);
    color: #20364f;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.65;
    box-shadow: 0 16px 42px rgba(6, 25, 54, 0.08);
}

.chairman-content p {
    max-width: 680px;
    color: #526071;
    font-size: 18px;
}

.chairman-info {
    margin: 28px 0;
}

.chairman-info h4 {
    color: #061936;
    font-size: 26px;
}

.chairman-info span {
    color: #007d78;
    font-weight: 900;
}

.chairman-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.feature-showcase-section {
    position: relative;
    background:
        linear-gradient(180deg, #fffaf2 0%, #f7fbff 36%, #eef8f6 100%);
    overflow: hidden;
}

.feature-page-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 42px;
}

.feature-page-intro h2 {
    max-width: 820px;
    font-size: clamp(34px, 4.2vw, 58px);
}

.feature-page-intro p {
    margin-bottom: 8px;
    color: #526071;
    font-size: 18px;
}

.feature-showcase {
    gap: 28px;
}

.feature-topic {
    position: relative;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
    gap: 0;
    padding: 0;
    border: 1px solid rgba(6, 25, 54, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 80px rgba(6, 25, 54, 0.11);
    overflow: hidden;
}

.feature-topic::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 5px solid rgba(0, 168, 157, 0.72);
    pointer-events: none;
}

.feature-topic:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.feature-topic:nth-child(even) .feature-topic-image {
    order: 2;
}

.feature-topic-image {
    min-height: 430px;
    border-radius: 0;
}

.feature-topic-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 46%, rgba(6, 25, 54, 0.42));
}

.feature-topic-image img {
    filter: saturate(1.08) contrast(1.04);
}

.feature-topic-image span {
    z-index: 1;
    left: 28px;
    bottom: 28px;
    width: 74px;
    height: 74px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f2b642, #ff9f1c);
}

.feature-topic-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 68px);
}

.feature-topic-content h3 {
    max-width: 680px;
    font-size: clamp(30px, 3.4vw, 48px);
}

.feature-topic-content p {
    max-width: 720px;
    color: #526071;
    font-size: 18px;
}

.feature-topic-content ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0 30px;
}

.feature-topic-content li {
    min-height: 76px;
    padding: 16px 16px 16px 48px;
    border: 1px solid rgba(6, 25, 54, 0.08);
    border-radius: 8px;
    background: #f8fbff;
    color: #061936;
    font-size: 15px;
}

.feature-topic-content li::before {
    left: 18px;
    top: 21px;
    width: 12px;
    height: 12px;
}

.academics-premium-section {
    background: #061936;
    color: #ffffff;
}

.academics-premium-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: 52px;
    align-items: center;
}

.academics-copy h2,
.academics-copy p,
.academics-premium-section .eyebrow {
    color: #ffffff;
}

.academics-copy h2 {
    font-size: clamp(34px, 4.2vw, 56px);
}

.academics-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

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

.academic-stage-list {
    display: grid;
    gap: 16px;
}

.academic-stage-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.academic-stage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 182, 66, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.academic-stage-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 8px;
    background: #f2b642;
    color: #061936;
    font-weight: 900;
}

.academic-stage-card h3 {
    color: #ffffff;
    font-size: 25px;
}

.academic-stage-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1080px) {
    .chairman-wrapper,
    .feature-page-intro,
    .academics-premium-grid {
        grid-template-columns: 1fr;
    }

    .chairman-badge {
        right: 20px;
    }

    .chairman-content {
        text-align: left;
    }

    .chairman-content blockquote {
        border-top: 0;
        border-left: 5px solid #f9900a;
        padding-left: 22px;
    }

    .feature-topic,
    .feature-topic:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .feature-topic:nth-child(even) .feature-topic-image {
        order: 0;
    }

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

@media (max-width: 640px) {
    .chairman-section {
        padding: 72px 0;
    }

    .image-card img {
        min-height: 320px;
    }

    .chairman-badge {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .chairman-content {
        text-align: left;
    }

    .chairman-content blockquote {
        border-top: 0;
        border-left: 5px solid #f9900a;
        padding: 18px;
    }

    .chairman-actions,
    .academic-actions {
        flex-direction: column;
    }

    .chairman-actions a,
    .academic-actions a {
        width: 100%;
    }

    .feature-topic-image {
        min-height: 280px;
    }

    .feature-topic-content {
        padding: 28px 18px;
    }

    .feature-topic-content ul,
    .academic-stage-card {
        grid-template-columns: 1fr;
    }

    .feature-topic-content li {
        min-height: 0;
    }

    .academic-stage-card span {
        width: 100%;
        height: auto;
        min-height: 56px;
    }
}

/* Reference-style features page and readable academics dropdown */
.home-page .submenu ul .nav-link,
.submenu ul .nav-link {
    color: #061936;
}

.home-page .submenu ul .nav-link:hover,
.submenu ul .nav-link:hover {
    background: #f5f8f7;
    color: #f9900a;
}

.submenu ul {
    min-width: 270px;
    padding: 14px;
}

.submenu ul .nav-link {
    margin-bottom: 4px;
    padding: 12px 14px;
    border-radius: 6px;
}

.feature-showcase-section {
    background: #f4f7fb;
    padding-top: 96px;
}

.feature-page-intro {
    align-items: center;
    margin-bottom: 70px;
}

.feature-page-intro h2 {
    max-width: 760px;
    font-size: clamp(34px, 4vw, 54px);
}

.feature-page-intro p {
    max-width: 560px;
    color: #344762;
    font-size: 19px;
    line-height: 1.7;
}

.feature-showcase {
    width: 100%;
    max-width: none;
    display: block;
}

.feature-topic {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 96px;
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.feature-topic::before {
    display: none;
}

.feature-topic:nth-child(even) {
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    padding: 86px max(16px, calc((100vw - 1300px) / 2));
    background: #071f58;
    color: #ffffff;
}

.feature-topic:nth-child(even) .feature-topic-image {
    order: 2;
}

.feature-topic:nth-child(even) .feature-topic-content h3,
.feature-topic:nth-child(even) .feature-topic-content p {
    color: #ffffff;
}

.feature-topic:nth-child(even) .feature-topic-content p {
    color: rgba(255, 255, 255, 0.82);
}

.feature-topic:nth-child(even) .feature-topic-content li {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.feature-topic-image {
    min-height: 520px;
    border-radius: 8px;
    box-shadow: 0 28px 74px rgba(6, 25, 54, 0.18);
}

.feature-topic-image::after {
    background: linear-gradient(180deg, rgba(6, 25, 54, 0.03), rgba(6, 25, 54, 0.38));
}

.feature-topic-image span {
    left: 26px;
    bottom: 26px;
    width: 74px;
    height: 74px;
    border-radius: 8px;
    background: #ffb632;
    color: #061936;
}

.feature-image-pills {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-left: 88px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 42px rgba(6, 25, 54, 0.16);
}

.feature-image-pills b {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(255, 248, 236, 0.94);
    color: #061936;
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
}

.feature-topic-content {
    display: block;
    padding: 0;
}

.feature-topic-content h3 {
    max-width: 660px;
    color: #062653;
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1.06;
}

.feature-topic-content p {
    max-width: 720px;
    color: #2f4058;
    font-size: 19px;
    line-height: 1.7;
}

.feature-topic-content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.feature-topic-content li {
    min-height: 88px;
    display: flex;
    align-items: center;
    padding: 18px 18px 18px 64px;
    border: 1px solid #dce4ea;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(6, 25, 54, 0.07);
    font-size: 16px;
    line-height: 1.35;
}

.feature-topic-content li::before {
    left: 22px;
    top: 50%;
    width: 30px;
    height: 30px;
    background: #f9900a;
    box-shadow: none;
    transform: translateY(-50%);
}

.feature-topic-content li::after {
    content: "";
    position: absolute;
    left: 32px;
    top: 50%;
    width: 10px;
    height: 6px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateY(-60%) rotate(-45deg);
}

.feature-topic-content .btn.premium {
    min-width: 220px;
    border-radius: 6px;
}

.academics-premium-section {
    background: #f4f7fb;
    color: #061936;
    padding: 82px 0;
}

.academics-premium-grid {
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
    align-items: start;
    gap: 38px;
}

.academics-copy {
    position: sticky;
    top: 110px;
    padding: 44px;
    border-radius: 8px;
    background: #061936;
    color: #ffffff;
    box-shadow: 0 24px 70px rgba(6, 25, 54, 0.14);
}

.academics-copy h2,
.academics-copy p,
.academics-premium-section .academics-copy .eyebrow {
    color: #ffffff;
}

.academic-stage-list {
    gap: 18px;
}

.academic-stage-card {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    min-height: 172px;
    border: 1px solid #dce4ea;
    background: #ffffff;
    color: #061936;
    box-shadow: 0 16px 42px rgba(6, 25, 54, 0.08);
}

.academic-stage-card:hover {
    border-color: rgba(249, 144, 10, 0.48);
    background: #ffffff;
}

.academic-stage-card h3 {
    margin-bottom: 10px;
    color: #061936;
    font-size: 28px;
    line-height: 1.15;
}

.academic-stage-card p {
    max-width: 720px;
    margin-bottom: 0;
    color: #526071;
    font-size: 17px;
    line-height: 1.72;
}

.academic-stage-card span {
    width: 106px;
    min-height: 106px;
    background: #fff0d7;
    color: #f06b16;
    text-align: center;
}

@media (max-width: 1080px) {
    .feature-topic,
    .feature-topic:nth-child(even) {
        max-width: 1300px;
        grid-template-columns: 1fr;
        padding: 0;
        background: transparent;
        color: #061936;
    }

    .feature-topic:nth-child(even) .feature-topic-image {
        order: 0;
    }

    .feature-topic:nth-child(even) .feature-topic-content h3 {
        color: #062653;
    }

    .feature-topic:nth-child(even) .feature-topic-content p {
        color: #2f4058;
    }

    .feature-topic:nth-child(even) .feature-topic-content li {
        border-color: #dce4ea;
        background: #ffffff;
        color: #061936;
    }
}

@media (max-width: 640px) {
    .feature-topic {
        gap: 26px;
        margin-bottom: 64px;
    }

    .feature-topic-image {
        min-height: 360px;
    }

    .feature-image-pills {
        left: 16px;
        right: 16px;
        bottom: 18px;
        grid-template-columns: 1fr;
        margin-left: 0;
        padding: 12px;
    }

    .feature-topic-image span {
        top: 18px;
        bottom: auto;
        width: 58px;
        height: 58px;
    }

    .feature-topic-content ul,
    .academics-premium-grid,
    .academic-stage-card {
        grid-template-columns: 1fr;
    }

    .academics-premium-grid {
        gap: 22px;
    }

    .academics-copy {
        position: static;
        padding: 28px 20px;
    }

    .academic-stage-card {
        gap: 16px;
        min-height: 0;
        padding: 20px;
    }

    .academic-stage-card h3 {
        font-size: 24px;
    }
}

.vision-mission-section{
    padding:100px 0;
    background:#f4f2ef;
    position:relative;
    overflow:hidden;
}

/* Decorative circles */

.vision-mission-section::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border:3px solid #efd9ae;
    border-radius:50%;
    left:-120px;
    bottom:30px;
}

.vision-mission-section::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border:3px solid #efd9ae;
    border-radius:50%;
    right:-90px;
    top:30px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#ff6a00;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:52px;
    color:#08224a;
    margin:10px 0;
    font-weight:700;
}

.section-title p{
    color:#666;
    font-size:18px;
}

/* Two cards */

.vm-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.vm-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    position:relative;
    overflow:hidden;
    transition:.4s ease;
    border:1px solid #eee;
}

.vm-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:linear-gradient(
        180deg,
        #ff5f3d,
        #f58eb8
    );
    transition:.4s;
}

.vm-card h3{
    font-size:40px;
    margin-bottom:25px;
    color:#222;
    transition:.4s;
}

.vm-card p{
    color:#555;
    font-size:18px;
    line-height:1.9;
    transition:.4s;
}

/* Hover Effect */

.vm-card:hover{
    background:linear-gradient(
        135deg,
        #ff5f3d,
        #f58eb8
    );
    transform:translateY(-8px);
}

.vm-card:hover h3,
.vm-card:hover p{
    color:#fff;
}

.vm-card:hover::before{
    width:100%;
    opacity:.15;
}

@media(max-width:991px){

    .vm-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:36px;
    }

    .vm-card h3{
        font-size:30px;
    }
}

.contact-card {
    width: 65%;
    margin: -40px auto 40px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}

.contact-card h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

/* First Row */
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.form-group.half {
    width: 50%;
}

.form-group.full {
    width: 100%;
    margin-bottom: 25px;
}

.form-group i {
    position: absolute;
    left: 0;
    top: 15px;
    color: #999;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    outline: none;
    padding: 12px 0 12px 35px;
    background: transparent;
    font-size: 16px;
}

.form-group textarea {
    min-height: 120px;
    resize: none;
}

.btn-submit {
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
}

.btn-submit i {
    margin-left: 8px;
}

/* Mobile */
@media(max-width:768px){

    .contact-card{
        width:90%;
        padding:25px;
    }

    .form-row{
        flex-direction:column;
        gap:20px;
    }

    .form-group.half{
        width:100%;
    }

    .contact-card h3{
        font-size:28px;
    }
}
/* ==========================
   CONTACT SECTION
========================== */

.contact-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-wrapper {
    border: 2px solid #f4b41a;
    background: #fff;
    position: relative;
    overflow: visible;
}

/* ==========================
   TOP STRIP
========================== */

.contact-strip {
    background: #f4b41a;
    padding: 35px 30px 90px;
}

.iconTxt {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.iconTxt i {
    color: #fff;
    font-size: 30px;
}

.iconTxt span {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.contact-strip p {
    color: #000;
    font-size: 18px;
    line-height: 1.8;
}

.contact-strip a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
}

/* ==========================
   FORM CARD
========================== */

.contact-card {
    width: 65%;
    margin: -45px auto 40px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.contact-card h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #222;
}

/* ==========================
   FORM FIELDS
========================== */

.input-group-custom {
    position: relative;
    margin-bottom: 30px;
    border-bottom: 1px solid #dcdcdc;
}

.input-group-custom i {
    position: absolute;
    left: 0;
    top: 14px;
    color: #999;
    font-size: 16px;
}

.input-group-custom input,
.input-group-custom textarea {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px 0 10px 35px;
    background: transparent;
    font-size: 16px;
}

.textarea-group i {
    top: 14px;
}

textarea {
    resize: none;
}

/* ==========================
   BUTTON
========================== */

.btn-submit {
    background: #ff9800;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.btn-submit:hover {
    background: #e68900;
}

.btn-submit i {
    margin-left: 8px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .contact-strip {
        padding-bottom: 120px;
    }

    .contact-card {
        width: 90%;
        margin-top: -70px;
        padding: 25px;
    }

    .contact-card h3 {
        font-size: 28px;
    }

    .iconTxt span {
        font-size: 20px;
    }
}

.events-section{
    padding:80px 0;
    background:#f6f8fb;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:clamp(34px, 4vw, 52px);
    font-weight:700;
    color:#1f1f1f;
    margin-bottom:20px;
}

.section-title p{
    max-width:950px;
    margin:auto;
    line-height:1.8;
    color:#666;
    font-size:17px;
}

.main-menu {
    display: block;
}

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

.event-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:25px;
    overflow:hidden;
    height:100%;
    transition:.3s;
    box-shadow:0 18px 46px rgba(6,25,54,.08);
}

.event-card:hover{
    transform:translateY(-5px);
}

.event-img{
    position:relative;
    padding:16px;
}

.event-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
}

.event-date{
    position:absolute;
    left:35px;
    bottom:30px;
    background:#fff;
    padding:10px 22px;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    box-shadow:0 3px 10px rgba(0,0,0,.12);
}

.event-content{
    padding:0 18px 25px;
}

.event-content h3{
    font-size:22px;
    font-weight:700;
    color:#333;
    margin:10px 0 15px;
}

.event-content p {
    margin:0;
    color:#5d6878;
    font-size:16px;
    line-height:1.65;
}

.event-footer{
    border-top:1px solid #ececec;
    text-align:center;
    padding:15px;
}

.event-footer a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:#ff6b35;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
}

.event-footer a:hover{
    color:#0a2b63;
}

.gallery-page-section {
    padding:80px 0;
    background:#f6f8fb;
}

.gallery-toolbar {
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:34px;
}

.gallery-toolbar h2 {
    margin-bottom:0;
}

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

.photo-card {
    margin:0;
    overflow:hidden;
    border:1px solid #e2e8ef;
    border-radius:8px;
    background:#fff;
    box-shadow:0 16px 42px rgba(6,25,54,.08);
}

.photo-card img {
    width:100%;
    height:285px;
    object-fit:cover;
}

.photo-card figcaption {
    padding:14px 16px;
    color:#061936;
    font-size:16px;
    font-weight:800;
}

@media(max-width:991px){

.section-title h2{
    font-size:38px;
}

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

.event-img img{
    height:220px;
}

.gallery-toolbar {
    align-items:flex-start;
    flex-direction:column;
}

}

@media(max-width:640px){
    .events-section,
    .gallery-page-section {
        padding:58px 0;
    }

    .events-grid,
    .photo-grid {
        grid-template-columns:1fr;
    }

    .event-card {
        border-radius:14px;
    }

    .event-img img,
    .photo-card img {
        height:240px;
    }
}

.container1{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:70px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:36px;
    color:#003366;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.method-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.method-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:.3s;
}

.method-card:hover{
    transform:translateY(-8px);
}

.method-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.method-content{
    padding:25px;
}

.method-content h3{
    color:#003366;
    margin-bottom:15px;
}

.method-content p{
    line-height:1.8;
    color:#555;
}

.highlight{
    margin-top:70px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.highlight img{
    width:100%;
    border-radius:15px;
}

.highlight-content h2{
    color:#003366;
    margin-bottom:20px;
}

.highlight-content ul{
    padding-left:20px;
}

.highlight-content li{
    margin-bottom:12px;
    line-height:1.8;
}

@media(max-width:768px){

.highlight{
    grid-template-columns:1fr;
}

.banner h1{
    font-size:34px;
}

}

section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#0d6efd;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:38px;
    margin-top:10px;
    color:#0b2f59;
}

.intro{
    background:#fff;
}

.intro p{
    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:17px;
}

.curriculum-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    color:#0b2f59;
    margin-bottom:15px;
}

.learning{
    background:#ffffff;
}

.learning-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.learning img{
    width:100%;
    border-radius:15px;
}

.learning ul{
    list-style:none;
}

.learning ul li{
    background:#f3f7ff;
    margin-bottom:15px;
    padding:15px 20px;
    border-left:4px solid #0d6efd;
    border-radius:6px;
}

.assessment{
    background:#eef4ff;
}

.assessment-box{
    background:#fff;
    padding:40px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.activities{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.activity{
    background:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.activity h4{
    color:#0b2f59;
}

.outcomes{
    background:#fff;
}

.outcome-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.outcome{
    background:#f5f8ff;
    padding:25px;
    border-radius:12px;
    font-weight:600;
}

.cta{
    background:#0b2f59;
    color:#fff;
    text-align:center;
}

.cta h2{
    margin-bottom:15px;
    font-size:36px;
}

.cta p{
    max-width:700px;
    margin:auto;
}

@media(max-width:768px){

.page-banner h1{
    font-size:36px;
}

.learning-wrap{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:30px;
}

}



.hero-content{
position:relative;
z-index:2;
color:#fff;
}

.hero-content span{
letter-spacing:4px;
font-size:14px;
}

.hero-content h1{
font-size:120px;
font-weight:700;
margin:15px 0;
}

.hero-content p{
max-width:700px;
margin:auto;
font-size:20px;
}

.school-story,
.timeline-section,
.founder-message,
.legacy{
padding:100px 0;
}

.section-heading{
text-align:center;
margin-bottom:60px;
}

.section-heading span{
color:#0d6efd;
font-weight:600;
}

.section-heading h2{
font-size:42px;
margin-top:10px;
}

.story-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.story-image img{
width:100%;
border-radius:20px;
}

.story-content p{
margin-bottom:20px;
font-size:17px;
line-height:1.9;
}

.timeline{
position:relative;
padding-left:40px;
border-left:4px solid #0d6efd;
}

.timeline-item{
background:#fff;
padding:25px;
margin-bottom:25px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.timeline-item h3{
color:#0d6efd;
margin-bottom:10px;
}

.foundation-stats{
padding:80px 0;
background:#0b2f59;
}

.foundation-stats .container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat-card{
background:#fff;
padding:40px;
text-align:center;
border-radius:15px;
}

.stat-card h2{
font-size:48px;
color:#0d6efd;
}

.message-box{
background:#fff;
padding:60px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
}

.message-box h2{
margin-bottom:20px;
}

.message-box p{
font-size:20px;
line-height:2;
font-style:italic;
}

.legacy{
background:#081c38;
color:#fff;
text-align:center;
}

.legacy h2{
font-size:50px;
margin-bottom:20px;
}

.legacy p{
max-width:700px;
margin:auto;
font-size:18px;
}

@media(max-width:768px){

.hero-content h1{
font-size:70px;
}

.story-grid{
grid-template-columns:1fr;
}

.foundation-stats .container{
grid-template-columns:1fr 1fr;
}

}


.hero-content{
position:relative;
z-index:2;
color:#fff;
max-width:800px;
padding:20px;
}

.hero-content span{
letter-spacing:3px;
font-weight:600;
}

.hero-content h1{
font-size:60px;
margin:20px 0;
}

.hero-content p{
font-size:18px;
line-height:1.8;
}

.primary-intro,
.learning-areas,
.approach,
.development{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title span{
color:#0d6efd;
font-weight:600;
}

.section-title h2{
font-size:40px;
margin-top:10px;
}

.primary-intro p{
max-width:850px;
margin:auto;
text-align:center;
line-height:1.9;
}

.area-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.area-card{
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.area-card h3{
margin-bottom:15px;
color:#0b2f59;
}

.approach{
background:#f7f9fc;
}

.approach-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.approach img{
width:100%;
border-radius:20px;
}

.approach h2{
margin-bottom:25px;
color:#0b2f59;
}

.approach ul{
list-style:none;
}

.approach ul li{
padding:15px;
margin-bottom:12px;
background:#fff;
border-left:4px solid #0d6efd;
border-radius:8px;
}

.dev-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.dev-card{
background:#fff;
padding:40px;
text-align:center;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
font-weight:600;
}

.primary-footer{
padding:100px 0;
background:#0b2f59;
color:#fff;
text-align:center;
}

.primary-footer h2{
font-size:42px;
margin-bottom:20px;
}

.primary-footer p{
max-width:700px;
margin:auto;
line-height:1.8;
}

@media(max-width:768px){

.hero-content h1{
font-size:38px;
}

.approach-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:30px;
}

}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    color:#fff;
    padding:20px;
}

.hero-content span{
    letter-spacing:4px;
    font-weight:600;
}

.hero-content h1{
    font-size:60px;
    margin:20px 0;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
}


.senior-intro,
.academic-program,
.senior-features,
.outcomes{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#0d6efd;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    margin-top:10px;
}

.senior-intro p{
    text-align:center;
    max-width:850px;
    margin:auto;
    line-height:1.9;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.program-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.program-card h3{
    margin-bottom:15px;
    color:#0b2f59;
}

.senior-features{
    background:#f6f8fc;
}

.feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.feature-grid img{
    width:100%;
    border-radius:20px;
}

.feature-grid ul{
    list-style:none;
}

.feature-grid ul li{
    background:#fff;
    padding:15px;
    margin-bottom:12px;
    border-left:4px solid #0d6efd;
    border-radius:8px;
}

.outcome-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.outcome-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    font-weight:600;
}

.senior-footer{
    padding:100px 0;
    background:#0b2f59;
    text-align:center;
    color:#fff;
}

.senior-footer h2{
    font-size:42px;
    margin-bottom:20px;
}

.senior-footer p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:30px;
    }
}

/* ==========================================================================
   Curriculum Section - Updated to match 1st Screenshot perfectly
   ========================================================================== */

/* Image & Media styling */
.section-img {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.curriculum-intro-section {
    padding: 72px 0;
    background: #fff;
}

/* Main Container Card with exact color gradient */
.curriculum-intro-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    gap: 44px;
    align-items: center;
    padding: 44px;
    border: 1px solid rgba(0, 40, 94, 0.10);
    border-radius: 8px;
    background: linear-gradient(135deg, #f7fbff 0%, #fff 58%, #fff8ef 100%);
    box-shadow: 0 18px 48px rgba(0, 40, 94, 0.08);
}

/* Top subtitle (PRE-PRIMARY TO 10TH CLASS) */
.curriculum-intro-copy > span {
    display: inline-block;
    margin-bottom: 14px;
    color: #e67e22; /* Hardcoded Orange Accent */
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Section Header text */
.curriculum-intro-copy h2 {
    max-width: 720px;
    margin-bottom: 18px;
    color: #00285e; /* Hardcoded Deep Blue Primary */
    font-size: 42px;
    line-height: 1.1em;
}

/* Paragraph text */
.curriculum-intro-copy p {
    max-width: 760px;
    color: #263243;
    font-size: 17px;
    line-height: 1.75em;
}

/* Two-column grid layout for the blocks */
.curriculum-intro-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

/* White feature boxes */
.curriculum-intro-points div {
    min-height: 150px;
    padding: 22px;
    border-radius: 8px;
    background: #fff;
    border-left: 5px solid #e67e22; /* Matches orange border strip on left side */
    box-shadow: 0 12px 30px rgba(0, 40, 94, 0.08);
}

/* Icon circles inside feature blocks */
.curriculum-intro-points i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    color: #fff !important;
    background: #00a896; /* Hardcoded Teal/Green icon circle background */
    border-radius: 50%;
    font-size: 19px;
}

/* Text headers inside feature blocks */
.curriculum-intro-points strong {
    display: block;
    margin-bottom: 7px;
    color: #00285e; /* Hardcoded Deep Blue */
    font-size: 21px;
    line-height: 1.1em;
}

/* Small description text inside feature blocks */
.curriculum-intro-points small {
    display: block;
    color: #4e5b6b;
    font-size: 14px;
    line-height: 1.55em;
}

/* Right side Image block wrapper */
.curriculum-intro-media {
    position: relative;
}

.curriculum-intro-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 40, 94, 0.14);
}

/* Bottom floating badge on top of image */
.curriculum-media-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 40, 94, 0.18);
}

/* Orange circle badge icon */
.curriculum-media-badge i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    color: #fff !important;
    background: #e67e22; /* Hardcoded Orange badge icon circle background */
    border-radius: 50%;
}

/* Text inside image badge */
.curriculum-media-badge strong {
    color: #00285e; /* Hardcoded Deep Blue */
    font-size: 22px;
    line-height: 1.15em;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media only screen and (max-width: 991px) {
    .curriculum-intro-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .curriculum-intro-copy h2 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 575px) {
    .curriculum-intro-section {
        padding: 45px 0;
    }

    .curriculum-intro-card {
        padding: 22px;
    }

    .curriculum-intro-copy h2 {
        font-size: 28px;
    }

    .curriculum-intro-points {
        grid-template-columns: 1fr;
    }

    .curriculum-media-badge {
        position: static;
        margin-top: 14px;
    }
}

/* ==========================================================================
   Font Awesome Pseudo Element Fallbacks
   ========================================================================== */
.fa-book-open-reader::before,
.fa-book-reader::before {
    content: "\f5da";
}

.fa-lightbulb::before {
    content: "\f0eb";
}

.fa-graduation-cap::before {
    content: "\f19d";
}

.fas {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

/* Premium academic pages: Foundation, Primary, Senior */
.academic-premium-page {
    position: relative;
    background:
        linear-gradient(135deg, #ffffff 0%, #f7fbff 48%, #eefaf7 100%);
    overflow: hidden;
}

.academic-premium-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(249, 144, 10, 0.08), transparent 32%),
        radial-gradient(circle at 90% 18%, rgba(0, 168, 157, 0.12), transparent 32%);
    pointer-events: none;
}

.academic-premium-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
    gap: 54px;
    align-items: center;
}

.academic-premium-copy {
    max-width: 760px;
}

.academic-premium-copy h2 {
    color: #061936;
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1.06;
}

.academic-premium-copy p {
    color: #526071;
    font-size: 18px;
    line-height: 1.75;
}

.academic-premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.academic-premium-media {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(6, 25, 54, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 30px 80px rgba(6, 25, 54, 0.13);
}

.academic-premium-media img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 8px;
}

.academic-media-badge {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    background: rgba(6, 25, 54, 0.92);
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(6, 25, 54, 0.24);
    backdrop-filter: blur(14px);
}

.academic-media-badge strong {
    display: block;
    margin-bottom: 6px;
    color: #f2b642;
    font-size: 24px;
}

.academic-media-badge span {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    line-height: 1.45;
}

.academic-focus-section {
    background: #ffffff;
}

.academic-section-heading {
    max-width: 860px;
    margin-bottom: 38px;
}

.academic-section-heading h2 {
    color: #061936;
    font-size: clamp(32px, 4.1vw, 54px);
}

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

.academic-card-grid article {
    min-height: 285px;
    padding: 30px;
    border: 1px solid #dce4ea;
    border-top: 5px solid #f9900a;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(6, 25, 54, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.academic-card-grid article:nth-child(2) {
    border-top-color: #00a89d;
}

.academic-card-grid article:nth-child(3) {
    border-top-color: #2d8fca;
}

.academic-card-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 70px rgba(6, 25, 54, 0.12);
}

.academic-card-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 8px;
    background: #fff0d7;
    color: #f06b16;
    font-weight: 900;
}

.academic-card-grid h3 {
    color: #061936;
    font-size: 25px;
}

.academic-card-grid p {
    margin-bottom: 0;
    color: #526071;
    font-size: 17px;
    line-height: 1.7;
}

.academic-layer-section {
    background:
        linear-gradient(120deg, rgba(6, 25, 54, 0.95), rgba(0, 103, 112, 0.88)),
        url("../img/about/school.png") center / cover no-repeat;
    color: #ffffff;
}

.academic-layer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 34px;
    align-items: stretch;
}

.academic-layer-panel,
.academic-stat-strip article {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.academic-layer-panel {
    padding: 42px;
}

.academic-layer-panel h2,
.academic-cta-band h2 {
    color: #ffffff;
}

.academic-layer-panel ul {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.academic-layer-panel li {
    position: relative;
    min-height: 52px;
    padding: 14px 18px 14px 54px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
}

.academic-layer-panel li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f9900a;
    transform: translateY(-50%);
}

.academic-layer-panel li::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 50%;
    width: 8px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateY(-62%) rotate(-45deg);
}

.academic-stat-strip {
    display: grid;
    gap: 16px;
}

.academic-stat-strip article {
    display: grid;
    align-content: center;
    min-height: 145px;
    padding: 24px;
}

.academic-stat-strip strong {
    color: #f2b642;
    font-size: 30px;
    line-height: 1;
}

.academic-stat-strip span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.academic-cta-band {
    padding: 86px 0;
    background: #061936;
    color: #ffffff;
    text-align: center;
}

.academic-cta-band h2 {
    max-width: 860px;
    margin: 0 auto 14px;
    font-size: clamp(32px, 4.2vw, 56px);
}

.academic-cta-band p {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.75;
}

.primary-premium-page {
    background:
        linear-gradient(135deg, #ffffff 0%, #f7fbff 52%, #fff7ec 100%);
}

.senior-premium-page {
    background:
        linear-gradient(135deg, #ffffff 0%, #f5fbff 50%, #edf8ff 100%);
}

@media (max-width: 1080px) {
    .academic-premium-hero,
    .academic-layer-grid {
        grid-template-columns: 1fr;
    }

    .academic-premium-media {
        max-width: 680px;
    }

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

@media (max-width: 640px) {
    .academic-premium-media {
        padding: 12px;
    }

    .academic-premium-media img {
        min-height: 300px;
    }

    .academic-media-badge {
        position: static;
        margin-top: 12px;
    }

    .academic-premium-actions,
    .academic-premium-actions a {
        width: 100%;
    }

    .academic-card-grid {
        grid-template-columns: 1fr;
    }

    .academic-layer-panel {
        padding: 24px;
    }

    .academic-layer-panel li {
        padding-right: 14px;
    }
}

/* Premium director layer for the main home page */
.director-premium-section {
    position: relative;
    padding: 118px 0;
    background:
        linear-gradient(120deg, rgba(6, 25, 54, 0.94) 0%, rgba(6, 25, 54, 0.9) 42%, rgba(0, 108, 116, 0.82) 100%),
        url("../img/about/school.png") center / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.director-premium-section::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    pointer-events: none;
}

.director-premium-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: linear-gradient(90deg, #f9900a, #f2b642, #00a89d);
}

.director-premium-section .chairman-wrapper {
    grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
    gap: 74px;
}

.director-premium-section .chairman-image-box {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.director-premium-section .image-card {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
}

.director-premium-section .image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background: linear-gradient(180deg, transparent 48%, rgba(6, 25, 54, 0.22));
    pointer-events: none;
}

.director-premium-section .image-card img {
    min-height: 520px;
    filter: saturate(1.08) contrast(1.03);
}

.director-premium-section .chairman-badge {
    right: 8px;
    bottom: 8px;
    width: min(275px, 72%);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.94);
    color: #061936;
}

.director-premium-section .chairman-badge strong {
    color: #f9900a;
}

.director-premium-section .chairman-badge span {
    color: #27384d;
}

.director-premium-section .chairman-content {
    max-width: none;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 30px 86px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.director-premium-section .section-tag {
    background: rgba(242, 182, 66, 0.16);
    color: #f2b642;
}

.director-premium-section .chairman-content h2 {
    color: #ffffff;
    font-size: clamp(36px, 4.1vw, 62px);
}

.director-premium-section .chairman-content blockquote {
    border-left-color: #f2b642;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: none;
}

.director-premium-section .chairman-content p {
    color: rgba(255, 255, 255, 0.78);
}

.director-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.director-proof-grid article {
    min-height: 132px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 4px solid #f9900a;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.director-proof-grid article:nth-child(2) {
    border-top-color: #00a89d;
}

.director-proof-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 19px;
}

.director-proof-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.55;
}

.director-premium-section .chairman-info {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.director-premium-section .chairman-info h4 {
    color: #ffffff;
}

.director-premium-section .chairman-info span {
    color: #f2b642;
}

@media (max-width: 1080px) {
    .director-premium-section .chairman-wrapper {
        grid-template-columns: 1fr;
    }

    .director-premium-section .chairman-image-box {
        max-width: 620px;
    }
}

@media (max-width: 640px) {
    .director-premium-section {
        padding: 72px 0;
    }

    .director-premium-section::before {
        inset: 14px;
    }

    .director-premium-section .chairman-content {
        padding: 24px;
    }

    .director-proof-grid {
        grid-template-columns: 1fr;
    }

    .director-premium-section .image-card img {
        min-height: 330px;
    }
}

/* Screenshot-style director objective section for Hamsavani home */
.hamsavani-objective-section {
    position: relative;
    padding: 86px 0 92px;
    background: #ffffff;
    color: #0b2344;
    overflow: hidden;
}

.hamsavani-objective-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 7px;
    height: 100%;
    background: #f9900a;
}

.hamsavani-objective-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    gap: 72px;
    align-items: start;
}

.hamsavani-objective-copy {
    max-width: 720px;
}

.objective-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #f9900a;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 7px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hamsavani-objective-copy h2 {
    margin-bottom: 22px;
    color: #00285e;
    font-size: clamp(42px, 4.2vw, 60px);
    line-height: 1;
}

.hamsavani-objective-copy h3 {
    margin-bottom: 22px;
    color: #10233f;
    font-size: 25px;
    font-weight: 900;
}

.hamsavani-objective-copy p {
    max-width: 680px;
    margin-bottom: 20px;
    color: #20314a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

.objective-focus-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 36px;
}

.objective-focus-list article {
    min-height: 126px;
    padding: 20px;
    border: 1px solid #dce4ea;
    border-radius: 8px;
    background: #ffffff;
}

.objective-focus-list span {
    display: block;
    margin-bottom: 12px;
    color: #00a89d;
    font-size: 14px;
    font-weight: 900;
}

.objective-focus-list strong {
    display: block;
    color: #00285e;
    font-size: 22px;
    line-height: 1.12;
}

.hamsavani-objective-profile {
    max-width: 540px;
    margin-left: auto;
    padding-top: 132px;
}

.hamsavani-objective-profile figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #d6d6d6;
}

.hamsavani-objective-profile img {
    width: 100%;
    height: 276px;
    object-fit: cover;
    object-position: center top;
}

.objective-profile-content {
    margin-top: 18px;
    padding: 24px 28px;
    border-left: 5px solid #f9900a;
    border-radius: 0 8px 8px 0;
    background: #ffffff;
}

.objective-profile-content h3 {
    margin: 0 0 8px;
    color: #101828;
    font-size: 27px;
    font-weight: 900;
    text-transform: uppercase;
}

.objective-profile-content p,
.objective-profile-content span {
    display: block;
    margin: 0;
    color: #526071;
    font-size: 18px;
    line-height: 1.38;
}

@media (max-width: 1080px) {
    .hamsavani-objective-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hamsavani-objective-profile {
        max-width: 620px;
        margin-left: 0;
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .hamsavani-objective-section {
        padding: 62px 0 70px;
    }

    .objective-eyebrow {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .hamsavani-objective-copy h2 {
        font-size: 38px;
    }

    .hamsavani-objective-copy p {
        font-size: 16px;
    }

    .objective-focus-list {
        grid-template-columns: 1fr;
    }

    .hamsavani-objective-profile img {
        height: 250px;
    }
}
