:root {
    --primary: #1268cf;
    --primary-dark: #082f6b;
    --primary-deep: #061d42;
    --primary-light: #edf5ff;
    --accent: #d7ad55;
    --accent-light: #f5e6bd;
    --dark: #071f4d;
    --text: #536582;
    --light: #f5f8fd;
    --white: #ffffff;
    --border: #dbe6f5;
    --shadow: 0 20px 60px rgba(7, 31, 77, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
}


/* ========================================
   HEADER / NAVBAR
======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.navbar {
    min-height: 96px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.brand-logo {
    width: 185px;
    height: 72px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    margin: 0 7px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}


/* ========================================
   BUTTONS
======================================== */

.btn-brand {
    background: linear-gradient(
        135deg,
        var(--primary),
        #0875e8
    );
    border: 1px solid var(--primary);
    color: var(--white);
    border-radius: 10px;
    padding: 11px 23px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(18, 104, 207, 0.20);
    transition: all 0.25s ease;
}

.btn-brand:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-brand {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    padding: 11px 23px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-outline-brand:hover {
    background: var(--primary);
    color: var(--white);
}


/* ========================================
   PREMIUM HERO
======================================== */

.premium-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 35%,
            rgba(18, 104, 207, 0.11),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #ffffff 50%,
            #f3f7ff 100%
        );
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-one {
    width: 500px;
    height: 500px;
    right: -180px;
    top: -220px;
    border: 80px solid rgba(18, 104, 207, 0.035);
}

.hero-glow-two {
    width: 350px;
    height: 350px;
    right: 10%;
    bottom: -180px;
    background: rgba(18, 104, 207, 0.035);
    filter: blur(20px);
}

.premium-hero-row {
    min-height: calc(100vh - 82px);
    padding-top: 70px;
    padding-bottom: 70px;
}


/* LEFT CONTENT */

.premium-hero-content {
    position: relative;
    z-index: 5;
    max-width: 680px;
}

.premium-eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.premium-title {
    color: var(--dark);
    font-size: clamp(50px, 5vw, 76px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 28px;
}

.premium-title span {
    display: block;
    color: var(--primary);
}

.premium-description {
    color: var(--text);
    font-size: 18px;
    line-height: 1.85;
    max-width: 640px;
    margin-bottom: 0;
}


/* HERO BUTTONS */

.premium-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 32px;
}

.premium-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    background: linear-gradient(
        135deg,
        #1268cf,
        #0877eb
    );
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(18, 104, 207, 0.22);
    transition: all 0.25s ease;
}

.premium-primary-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.premium-primary-btn span {
    transition: transform 0.25s ease;
}

.premium-primary-btn:hover span {
    transform: translateX(4px);
}

.premium-secondary-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark);
    font-weight: 700;
    transition: all 0.25s ease;
}

.premium-secondary-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: #ffffff;
}


/* TRUST ROW */

.premium-trust-row {
    display: flex;
    align-items: center;
    margin-top: 38px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
}

.trust-item span {
    color: var(--text);
    font-size: 13px;
    margin-top: 3px;
}

.trust-divider {
    width: 1px;
    height: 38px;
    background: var(--border);
    margin: 0 25px;
}


/* ========================================
   RIGHT PREMIUM VISUAL
======================================== */

.premium-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 45px;
}

.visual-decoration {
    position: absolute;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(18, 104, 207, 0.13),
            rgba(18, 104, 207, 0.03) 65%,
            transparent 70%
        );
}


/* MAIN BLUE CARD */

.premium-learning-card {
    position: relative;
    z-index: 3;

    width: 400px;
    min-height: 455px;

    padding: 38px;

    border-radius: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(64, 154, 255, 0.45),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #061d42 0%,
            #0a3475 50%,
            #1268cf 100%
        );

    box-shadow:
        0 35px 75px rgba(7, 31, 77, 0.25);

    overflow: hidden;
}

.premium-learning-card::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -90px;
    bottom: -110px;
    border: 40px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
}


/* CARD TOP */

.learning-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 13px;
}

.mini-logo-box {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    padding: 8px;

    border-radius: 14px;
}

.mini-logo-box img {
    width: 100%;
    height: 100%;
    max-width: 40px;
    max-height: 40px;

    object-fit: contain;

    display: block;
}

.learning-badge {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
}


/* CARD CONTENT */

.learning-card-content {
    position: relative;
    z-index: 2;
    margin: 45px 0;
}

.gold-label {
    display: block;
    color: var(--accent-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 13px;
}

.learning-card-content h2 {
    color: #ffffff;
    font-size: 37px;
    line-height: 1.12;
    font-weight: 750;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.learning-card-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* CARD BOTTOM */

.learning-card-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.learning-card-bottom > div:first-child {
    display: flex;
    flex-direction: column;
}

.small-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.learning-card-bottom strong {
    color: #ffffff;
    font-size: 14px;
}

.arrow-circle {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.13);

    color: #ffffff;

    font-size: 20px;
}


/* ========================================
   FLOATING CARDS
======================================== */

.premium-floating-card {
    position: absolute;
    z-index: 6;

    display: flex;
    align-items: center;
    gap: 13px;

    min-width: 205px;

    padding: 17px 19px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid rgba(219, 230, 245, 0.9);

    box-shadow:
        0 18px 45px rgba(7, 31, 77, 0.14);
}

.premium-floating-card > div:last-child {
    display: flex;
    flex-direction: column;
}

.premium-floating-card strong {
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
}

.premium-floating-card span {
    color: var(--text);
    font-size: 12px;
    margin-top: 3px;
}

.floating-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 18px;
}

.floating-number {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--primary);

    color: #ffffff !important;

    font-size: 20px !important;
}


/*
   Keep both floating cards close to
   the main card, not at the edges
   of the Bootstrap column.
*/

.floating-top {
    top: 80px;
    right: -5px;
}

.floating-bottom {
    bottom: 70px;
    left: -5px;
}


/* ========================================
   HERO TABLET
======================================== */

@media (max-width: 1199px) {

    .premium-learning-card {
        width: 360px;
    }

    .floating-top {
        right: -15px;
    }

    .floating-bottom {
        left: -15px;
    }
}


@media (max-width: 991px) {

    .premium-hero-row {
        min-height: auto;
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .premium-hero-content {
        max-width: 720px;
    }

    .premium-visual {
        margin-top: 60px;
        min-height: 570px;
    }

    .premium-learning-card {
        width: 410px;
    }

    .floating-top {
        right: 8%;
    }

    .floating-bottom {
        left: 8%;
    }
}


/* ========================================
   HERO MOBILE
======================================== */

@media (max-width: 767px) {

    .premium-hero-row {
        padding-top: 50px;
        padding-bottom: 55px;
    }

    .premium-title {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .premium-description {
        font-size: 16px;
    }

    .premium-hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .premium-primary-btn,
    .premium-secondary-btn {
        justify-content: center;
        width: 100%;
    }

    .premium-trust-row {
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        width: 31%;
    }

    .trust-item strong {
        font-size: 14px;
    }

    .trust-item span {
        font-size: 11px;
    }

    .premium-visual {
        min-height: 600px;
        padding: 30px 0;
    }

    .premium-learning-card {
        width: 88%;
        min-height: 430px;
        padding: 30px;
    }

    .learning-card-content h2 {
        font-size: 31px;
    }

    .premium-floating-card {
        min-width: 175px;
        padding: 13px 15px;
    }

    .floating-top {
        top: 20px;
        right: 0;
    }

    .floating-bottom {
        bottom: 15px;
        left: 0;
    }
}


/* ========================================
   GENERAL SECTIONS
======================================== */

.section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    color: var(--primary);
    background: var(--primary-light);
    padding: 7px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-heading h2,
.why-section h2,
.about-section h2 {
    color: var(--dark);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.section-heading p,
.section-description,
.about-section p {
    color: var(--text);
    line-height: 1.8;
    font-size: 17px;
}


/* ========================================
   PROGRAMS
======================================== */

.programs-section {
    background: var(--white);
}

.program-card {
    position: relative;
    height: 100%;
    padding: 34px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s ease;
    overflow: hidden;
}

.program-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    top: 0;
    background: linear-gradient(
        90deg,
        var(--primary),
        #48a1ff
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.program-card h3 {
    color: var(--dark);
    font-size: 21px;
    font-weight: 750;
}

.program-card p {
    color: var(--text);
    line-height: 1.75;
}

.program-card a {
    color: var(--primary);
    font-weight: 700;
}


/* ========================================
   WHY US
======================================== */

.why-section {
    background:
        linear-gradient(
            135deg,
            #f4f8ff 0%,
            #f9fbff 100%
        );
}

.feature-card {
    height: 100%;
    padding: 30px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.feature-card > span {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--primary-light);
    font-size: 25px;
}

.feature-card h4 {
    color: var(--dark);
    margin-top: 20px;
    font-weight: 750;
}

.feature-card p {
    color: var(--text);
    line-height: 1.7;
}


/* ========================================
   ABOUT
======================================== */

.about-section {
    background: var(--white);
}

.about-visual {
    position: relative;
    min-height: 410px;
    padding: 50px;
    border-radius: 28px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(69, 156, 255, 0.45),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #061d42 0%,
            #0a3475 52%,
            #1268cf 100%
        );

    box-shadow:
        0 28px 65px rgba(7, 31, 77, 0.18);
}

.about-visual::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 40px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    right: -60px;
    top: -80px;
}

.about-visual span {
    position: relative;
    z-index: 2;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.about-visual h3 {
    position: relative;
    z-index: 2;
    max-width: 450px;
    color: var(--white);
    font-size: 36px;
    line-height: 1.25;
    font-weight: 750;
    margin-top: 14px;
}


/* ========================================
   FREE DEMO CTA
======================================== */

.demo-section {
    padding: 30px 0 100px;
}

.demo-box {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(66, 158, 255, 0.38),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061d42 0%,
            #0a3475 48%,
            #1268cf 100%
        );

    color: var(--white);
    border-radius: 28px;
    padding: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    box-shadow:
        0 28px 65px rgba(7, 31, 77, 0.20);
}

.demo-box h2 {
    color: var(--white);
    font-size: 40px;
    max-width: 680px;
    font-weight: 800;
    letter-spacing: -1px;
}

.demo-box p {
    color: rgba(255, 255, 255, 0.78);
    margin: 15px 0 0;
}

.light-label {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}


/* ========================================
   CONTACT
======================================== */

.contact-section {
    background:
        linear-gradient(
            180deg,
            #f5f8fd,
            #f9fbff
        );
}

.contact-card {
    max-width: 700px;
    margin: auto;
    padding: 48px;
    text-align: center;
    border-radius: 22px;

    background: var(--white);
    border: 1px solid var(--border);

    box-shadow:
        0 20px 55px rgba(7, 31, 77, 0.07);
}

.contact-card h3 {
    color: var(--dark);
    font-weight: 750;
}

.contact-card p {
    color: var(--text);
    margin-bottom: 27px;
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(18, 104, 207, 0.28),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #03122d 0%,
            #061d42 48%,
            #082858 100%
        );

    color: rgba(255, 255, 255, 0.72);
    padding: 72px 0 26px;
}

.site-footer h4,
.site-footer h5 {
    color: var(--white);
}

.site-footer h4 {
    font-weight: 750;
}

.site-footer a:not(.btn) {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    margin: 8px 0;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .navbar-collapse {
        padding: 20px 0;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-item {
        width: 100%;
        margin: 4px 0 !important;
    }

    .premium-hero-row {
        min-height: auto;
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .premium-visual {
        margin-top: 50px;
    }

    .premium-learning-card {
        width: 85%;
    }

    .demo-box {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .brand-tagline {
        display: none;
    }

    @media (max-width: 767px) {

        .brand-logo {
            width: 145px;
            height: 58px;
        }
    
        .navbar {
            min-height: 76px;
        }
    
        .min-vh-75 {
            padding-top: 55px;
            padding-bottom: 55px;
        }
    
        /* keep the rest of your existing mobile CSS */
    }

    .premium-hero-row {
        padding-top: 50px;
        padding-bottom: 55px;
    }

    .premium-title {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .premium-description {
        font-size: 16px;
    }

    .premium-features {
        gap: 12px;
        flex-direction: column;
    }

    .premium-visual {
        min-height: 450px;
    }

    .premium-learning-card {
        width: 92%;
        min-height: 350px;
        padding: 35px 27px;
    }

    .premium-card-content h3 {
        font-size: 29px;
    }

    .premium-stat {
        padding: 13px 16px;
    }

    .premium-stat strong {
        font-size: 18px;
    }

    .stat-one {
        left: 0;
        top: 45px;
    }

    .stat-two {
        right: 0;
        bottom: 40px;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .about-visual {
        min-height: 330px;
        padding: 35px;
    }

    .about-visual h3 {
        font-size: 29px;
    }

    .demo-section {
        padding-bottom: 70px;
    }

    .demo-box {
        padding: 38px 27px;
    }

    .demo-box h2 {
        font-size: 31px;
    }

    .contact-card {
        padding: 36px 25px;
    }
}
/* ========================================
   PREMIUM HERO - FLOATING CARDS FIX
======================================== */

/* Give the visual extra space below for floating elements */
.premium-visual {
    padding-bottom: 90px;
}

/* Personal Guidance card */
.floating-top {
    top: 70px;
    right: -20px;
    z-index: 5;
}

/* Free Demo card - positioned below the blue card content */
.floating-bottom {
    bottom: 0;
    left: 20px;
    z-index: 5;
}

/* Keep bottom content inside blue card above decorations */
.learning-card-bottom {
    position: relative;
    z-index: 3;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1199px) and (min-width: 768px) {

    .premium-visual {
        padding-bottom: 100px;
    }

    .floating-top {
        top: 50px;
        right: 0;
    }

    .floating-bottom {
        bottom: 0;
        left: 0;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .premium-visual {
        min-height: auto;
        padding: 50px 0 30px;
        display: flex;
        flex-direction: column;
    }

    .premium-learning-card {
        width: 100%;
    }

    .premium-floating-card {
        position: relative;
        min-width: 0;
        width: 90%;
    }

    .floating-top {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: -20px 0 20px auto;
    }

    .floating-bottom {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 20px auto 0 0;
    }
}
/* ========================================
   PREMIUM HERO - RIGHT VISUAL REFINEMENT
======================================== */

/* Bring the whole visual slightly toward the center */
.premium-visual {
    transform: translateX(-35px);
}

/* Make the main blue card slightly shorter */
.premium-learning-card {
    min-height: 500px;
}

/* Reduce excess internal vertical spacing */
.learning-card-content {
    margin: 45px 0 35px;
}

/* Keep bottom information comfortably positioned */
.learning-card-bottom {
    margin-top: auto;
}

/* Bring Personal Guidance card inward */
.floating-top {
    top: 45px;
    right: 25px;
}


/* Don't shift the visual on tablet/mobile */
@media (max-width: 1199px) {

    .premium-visual {
        transform: none;
    }
}
/* =========================================
   PREMIUM PROGRAMS SECTION
========================================= */

.premium-programs-section {
    position: relative;
    background: #ffffff;
    padding: 110px 0;
    overflow: hidden;
}

.premium-programs-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(18, 104, 207, 0.05);
    top: -200px;
    left: -180px;
    pointer-events: none;
}

.premium-programs-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 65px;
}

.premium-programs-heading h2 {
    color: var(--dark);
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.premium-programs-heading h2 span {
    color: var(--primary);
}

.premium-programs-heading p {
    max-width: 650px;
    margin: 0 auto;
}


/* PROGRAM CARD */

.premium-program-card {
    position: relative;
    height: 100%;
    min-height: 390px;
    padding: 36px 32px 32px;

    display: flex;
    flex-direction: column;

    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    box-shadow: 0 8px 30px rgba(7, 31, 77, 0.04);
}

.premium-program-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;

    background: rgba(18, 104, 207, 0.05);

    right: -70px;
    top: -70px;

    transition: 0.3s ease;
}

.premium-program-card:hover {
    transform: translateY(-8px);
    border-color: rgba(18, 104, 207, 0.25);

    box-shadow:
        0 25px 60px rgba(7, 31, 77, 0.10);
}

.premium-program-card:hover::before {
    transform: scale(1.25);
}


/* CARD NUMBER */

.program-number {
    position: absolute;
    top: 28px;
    right: 30px;

    color: rgba(7, 31, 77, 0.12);

    font-size: 44px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: -2px;
}


/* ICON */

.premium-program-icon {
    position: relative;
    z-index: 1;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 18px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 22px;
    font-weight: 800;

    transition: 0.3s ease;
}

.premium-program-card:hover .premium-program-icon {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(-4deg);
}


/* CARD CONTENT */

.premium-program-content {
    position: relative;
    z-index: 1;
}

.premium-program-content h3 {
    color: var(--dark);
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 14px;
}

.premium-program-content p {
    color: var(--text);
    line-height: 1.75;
    font-size: 15.5px;
    margin-bottom: 28px;
}


/* PROGRAM LINK */

.program-link {
    position: relative;
    z-index: 1;

    margin-top: auto;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    color: var(--primary);
    font-size: 15px;
    font-weight: 700;

    transition: 0.25s ease;
}

.program-link span {
    transition: transform 0.25s ease;
}

.program-link:hover {
    color: var(--primary-dark);
}

.program-link:hover span {
    transform: translateX(5px);
}


/* FEATURED HIFZ CARD */

.featured-program {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071f4d 0%,
            #0a3475 55%,
            #1268cf 100%
        );

    border-color: transparent;

    box-shadow:
        0 20px 50px rgba(7, 31, 77, 0.18);
}

.featured-program::before {
    background: rgba(255, 255, 255, 0.06);
}

.featured-program .program-number {
    color: rgba(255, 255, 255, 0.10);
}

.featured-program .premium-program-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.featured-program .premium-program-content h3 {
    color: #ffffff;
}

.featured-program .premium-program-content p {
    color: rgba(255, 255, 255, 0.72);
}

.featured-program .program-link {
    color: #ffffff;
}

.featured-program:hover {
    border-color: transparent;

    box-shadow:
        0 30px 70px rgba(7, 31, 77, 0.25);
}

.featured-program:hover .premium-program-icon {
    background: #ffffff;
    color: var(--primary);
}


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

@media (max-width: 991px) {

    .premium-programs-section {
        padding: 90px 0;
    }

    .premium-program-card {
        min-height: 370px;
    }
}


@media (max-width: 767px) {

    .premium-programs-section {
        padding: 70px 0;
    }

    .premium-programs-heading {
        margin-bottom: 45px;
    }

    .premium-programs-heading h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .premium-program-card {
        min-height: auto;
        padding: 30px 26px;
    }

    .program-number {
        font-size: 38px;
        top: 25px;
        right: 25px;
    }

    .premium-program-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        margin-bottom: 24px;
    }
}
/* =========================================
   PREMIUM WHY CHOOSE US SECTION
========================================= */

.premium-why-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(18, 104, 207, 0.07),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f5f9ff 0%,
            #ffffff 55%,
            #f8fbff 100%
        );

    overflow: hidden;
}


/* =========================================
   LEFT CONTENT
========================================= */

.premium-why-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.premium-why-title {
    color: var(--dark);
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.premium-why-title span {
    display: block;
    color: var(--primary);
}

.premium-why-description {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}


/* =========================================
   1:1 HIGHLIGHT
========================================= */

.why-highlight {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 22px 24px;
    margin-bottom: 30px;

    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(7, 31, 77, 0.06);
}

.why-highlight-number {
    width: 70px;
    height: 70px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0a3475,
            #1268cf
        );

    color: #ffffff;

    border-radius: 18px;

    font-size: 22px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(18, 104, 207, 0.20);
}

.why-highlight-text {
    display: flex;
    flex-direction: column;
}

.why-highlight-text strong {
    color: var(--dark);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
}

.why-highlight-text span {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

.why-demo-btn {
    margin-top: 4px;
}


/* =========================================
   RIGHT EXPERIENCE PANEL
========================================= */

.why-experience-panel {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #071f4d 0%,
            #0a3475 55%,
            #0d4f9f 100%
        );

    padding: 18px 38px;
    border-radius: 30px;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(7, 31, 77, 0.20);
}

.why-panel-decoration {
    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    top: -150px;
    right: -100px;

    background:
        rgba(255, 255, 255, 0.06);

    pointer-events: none;
}


/* =========================================
   FEATURE ROWS
========================================= */

.why-feature-row {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 45px 64px 1fr;
    align-items: center;
    gap: 20px;

    padding: 30px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}

.why-feature-row:last-child {
    border-bottom: none;
}


/* NUMBER */

.why-feature-number {
    color: rgba(255, 255, 255, 0.35);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* ICON */

.why-feature-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background:
        rgba(255, 255, 255, 0.10);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 18px;
    font-weight: 800;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* CONTENT */

.why-feature-content h3 {
    color: #ffffff;

    font-size: 19px;
    font-weight: 750;

    margin: 0 0 7px;
}

.why-feature-content p {
    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.65;

    margin: 0;

    max-width: 470px;
}


/* HOVER */

.why-feature-row:hover .why-feature-icon {
    background: #ffffff;
    color: var(--primary);
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .premium-why-section {
        padding: 90px 0;
    }

    .premium-why-content {
        max-width: 650px;
        margin-bottom: 20px;
    }

    .why-experience-panel {
        padding: 15px 32px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .premium-why-section {
        padding: 70px 0;
    }

    .premium-why-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .premium-why-description {
        font-size: 16px;
    }

    .why-highlight {
        padding: 18px;
        gap: 15px;
    }

    .why-highlight-number {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        font-size: 19px;
    }

    .why-experience-panel {
        padding: 10px 22px;
        border-radius: 24px;
    }

    .why-feature-row {
        grid-template-columns: 50px 1fr;
        gap: 15px;

        padding: 25px 0;
    }

    .why-feature-number {
        display: none;
    }

    .why-feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .why-feature-content h3 {
        font-size: 18px;
    }

    .why-feature-content p {
        font-size: 13.5px;
    }
}
/* =========================
   PREMIUM ABOUT SECTION
========================= */

.premium-about-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 120px 0;
}

.about-bg-shape {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(18, 104, 207, 0.045);
    right: -260px;
    top: -180px;
}

.premium-about-content {
    max-width: 590px;
}

.premium-about-title {
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--dark);
    margin-bottom: 28px;
}

.premium-about-title span {
    display: block;
    color: var(--primary);
}

.premium-about-lead {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 18px;
}

.premium-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 35px;
}


/* ABOUT HIGHLIGHTS */

.about-highlight-row {
    display: flex;
    align-items: stretch;
    margin-top: 35px;
}

.about-highlight {
    display: flex;
    flex-direction: column;
    padding: 0 22px;
}

.about-highlight:first-child {
    padding-left: 0;
}

.about-highlight strong {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

.about-highlight span {
    color: var(--text);
    font-size: 13px;
    margin-top: 5px;
}

.about-highlight-divider {
    width: 1px;
    background: var(--border);
}


/* ABOUT VISUAL */

.premium-about-visual {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-panel {
    position: relative;
    width: 88%;
    min-height: 500px;
    padding: 65px 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 255, 255, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #071f4d 0%,
            #0a3475 48%,
            #1268cf 100%
        );

    border-radius: 32px;

    box-shadow:
        0 35px 80px rgba(7, 31, 77, 0.18);

    overflow: hidden;
}

.about-main-panel::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 45px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    right: -90px;
    bottom: -100px;
}

.about-panel-number {
    position: absolute;
    right: 45px;
    top: 30px;
    font-size: 65px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
}

.about-panel-label {
    color: #f0d28a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.about-main-panel h3 {
    position: relative;
    z-index: 2;
    max-width: 480px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 750;
    margin-bottom: 25px;
}

.about-main-panel p {
    position: relative;
    z-index: 2;
    max-width: 450px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}


/* PANEL BOTTOM */

.about-panel-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 45px;
}

.about-panel-bottom > span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.about-arrow {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);

    font-size: 22px;
}


/* FLOATING CARD */

.about-floating-card {
    position: absolute;
    right: -20px;
    top: 75px;

    display: flex;
    align-items: center;
    gap: 15px;

    min-width: 280px;
    padding: 20px 24px;

    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border);
    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(7, 31, 77, 0.14);

    z-index: 5;
}

.about-floating-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--primary);
    background: var(--primary-light);

    border-radius: 13px;
    font-size: 20px;
}

.about-floating-card > div:last-child {
    display: flex;
    flex-direction: column;
}

.about-floating-card strong {
    color: var(--dark);
    font-size: 16px;
}

.about-floating-card span {
    color: var(--text);
    font-size: 13px;
    margin-top: 4px;
}


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

@media (max-width: 991px) {

    .premium-about-section {
        padding: 90px 0;
    }

    .premium-about-content {
        max-width: 100%;
    }

    .premium-about-visual {
        margin-top: 30px;
    }

    .about-floating-card {
        right: 0;
    }
}


@media (max-width: 767px) {

    .premium-about-section {
        padding: 70px 0;
    }

    .premium-about-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

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

    .about-highlight {
        padding: 0;
    }

    .about-highlight-divider {
        width: 100%;
        height: 1px;
    }

    .premium-about-visual {
        min-height: auto;
        display: block;
    }

    .about-main-panel {
        width: 100%;
        min-height: 470px;
        padding: 50px 30px;
    }

    .about-main-panel h3 {
        font-size: 32px;
    }

    .about-floating-card {
        position: relative;
        top: auto;
        right: auto;

        width: calc(100% - 30px);
        min-width: 0;

        margin: -30px auto 0;
    }
}
/* ABOUT FLOATING CARD FINAL POSITION */

.about-floating-card {
    top: 40px;
    right: -35px;
}
/* =========================================
   IMPACT & TESTIMONIALS SECTION
========================================= */

.testimonials-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(18, 104, 207, 0.07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f7faff 0%,
            #ffffff 55%,
            #f7faff 100%
        );
}


/* =========================================
   SECTION HEADING
========================================= */

.testimonial-heading {
    margin-bottom: 55px;
}

.testimonial-title {
    color: var(--dark);
    font-size: clamp(42px, 4.5vw, 62px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 0;
}

.testimonial-title span {
    display: block;
    color: var(--primary);
}

.testimonial-intro {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   IMPACT STRIP
========================================= */

.impact-strip {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 38px 45px;
    margin-bottom: 100px;

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 95% 0%,
            rgba(255, 255, 255, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071f4d 0%,
            #0a3475 50%,
            #1268cf 100%
        );

    color: #ffffff;

    box-shadow:
        0 25px 60px rgba(7, 31, 77, 0.18);
}

.impact-main {
    display: flex;
    align-items: center;
    gap: 22px;
}

.impact-main > strong {
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
    color: #ffffff;
}

.impact-main div {
    display: flex;
    flex-direction: column;
}

.impact-main span {
    color: #f0d28a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.impact-main p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    margin: 5px 0 0;
}

.impact-item {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.impact-item strong {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.impact-item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    margin-top: 5px;
}

.impact-divider {
    width: 1px;
    height: 55px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.16);
}


/* =========================================
   STUDENT STORIES HEADING
========================================= */

.testimonial-video-heading {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.testimonial-video-heading > span {
    display: inline-block;

    color: var(--primary);
    background: var(--primary-light);

    padding: 7px 14px;
    margin-bottom: 15px;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.testimonial-video-heading h3 {
    color: var(--dark);
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.testimonial-video-heading p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================
   VIDEO CARDS
========================================= */

.testimonial-video-grid {
    align-items: stretch;
}

.video-testimonial-card {
    position: relative;

    height: 100%;

    background: #ffffff;

    border: 1px solid #dbe7f6;
    border-radius: 26px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(7, 31, 77, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

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

    border-color:
        rgba(18, 104, 207, 0.35);

    box-shadow:
        0 28px 65px rgba(7, 31, 77, 0.13);
}


/* =========================================
   PREMIUM TESTIMONIAL VIDEO
========================================= */

.video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    padding: 12px;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #edf5ff 0%,
            #f8fbff 100%
        );

    border-bottom:
        1px solid #e0eaf7;
}

.video-wrapper::before {
    content: "STUDENT STORY";

    position: absolute;
    top: 28px;
    left: 28px;

    z-index: 2;

    padding: 7px 12px;

    border-radius: 30px;

    background:
        rgba(7, 31, 77, 0.82);

    color: #ffffff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;

    pointer-events: none;
}

.video-wrapper video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 17px;

    background: #071f4d;
}

/* CARD CONTENT */

.video-card-content {
    padding: 28px 28px 30px;
}

.video-label {
    display: inline-block;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}

.video-card-content h4 {
    color: var(--dark);

    font-size: 21px;
    font-weight: 800;

    margin-bottom: 12px;
}

.video-card-content p {
    color: var(--text);

    font-size: 14px;
    line-height: 1.7;

    margin: 0;
}


/* FEATURED MIDDLE VIDEO */

.featured-video-card {
    border-color: rgba(18, 104, 207, 0.30);

    box-shadow:
        0 22px 55px rgba(7, 31, 77, 0.12);
}

.featured-video-card:hover {
    transform: translateY(-8px);
}
/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .video-wrapper {
    height: 480px;
}

    .testimonials-section {
        padding: 90px 0;
    }

    .impact-strip {
        flex-wrap: wrap;
        gap: 30px;

        padding: 35px;

        margin-bottom: 80px;
    }

    .impact-main {
        width: 100%;
    }

    .impact-divider {
        display: none;
    }

    .impact-item {
        padding: 0;
        width: calc(33.333% - 20px);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .video-wrapper {
    height: auto;
    aspect-ratio: 9 / 16;
    padding: 8px;
}

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

    .testimonial-heading {
        margin-bottom: 40px;
    }

    .testimonial-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .testimonial-intro {
        margin-top: 10px;
        font-size: 16px;
    }

    .impact-strip {
        display: block;

        padding: 30px 25px;

        margin-bottom: 65px;
    }

    .impact-main {
        display: block;
        margin-bottom: 30px;
    }

    .impact-main > strong {
        display: block;
        font-size: 44px;
        margin-bottom: 15px;
    }

    .impact-item {
        width: 100%;

        padding: 18px 0;

        border-top:
            1px solid rgba(255, 255, 255, 0.12);
    }

    .testimonial-video-heading {
        margin-bottom: 35px;
    }

    .testimonial-video-heading h3 {
        font-size: 32px;
    }

    .video-wrapper {
        aspect-ratio: 9 / 12;
    }

    .video-card-content {
        padding: 24px;
    }
}

/* =========================
   PREMIUM FREE DEMO SECTION
========================= */

.premium-demo-section {
    padding: 40px 0 100px;
    background: #ffffff;
}

.premium-demo-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 65px 70px;
    background: linear-gradient(
        135deg,
        #071f4d 0%,
        #0a3475 48%,
        #1268cf 100%
    );
    box-shadow: 0 30px 70px rgba(7, 31, 77, 0.18);
}

/* Decorative background circles */

.demo-decoration {
    position: absolute;
    border-radius: 50%;
    border: 45px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.demo-decoration-one {
    width: 300px;
    height: 300px;
    right: -100px;
    top: -150px;
}

.demo-decoration-two {
    width: 220px;
    height: 220px;
    left: 40%;
    bottom: -170px;
}


/* LEFT CONTENT */

.premium-demo-content {
    position: relative;
    z-index: 2;
}

.premium-demo-label {
    display: inline-block;
    color: #d7ad55;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.premium-demo-content h2 {
    color: #ffffff;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
    max-width: 650px;
    margin-bottom: 22px;
}

.premium-demo-content h2 span {
    display: block;
    color: #7eb8ff;
}

.premium-demo-content > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 35px;
}


/* DEMO BENEFITS */

.demo-benefits {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.demo-benefit {
    display: flex;
    flex-direction: column;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.demo-benefit:first-child {
    padding-left: 0;
}

.demo-benefit:last-child {
    border-right: none;
}

.demo-benefit strong {
    color: #7eb8ff;
    font-size: 14px;
    margin-bottom: 5px;
}

.demo-benefit span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}


/* RIGHT CTA CARD */

.demo-cta-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 22px;
    padding: 38px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

.demo-number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #0a3475,
        #1268cf
    );
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

.demo-small-label {
    color: #1268cf;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.demo-cta-content h3 {
    color: #071f4d;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 750;
    margin: 12px 0 14px;
}

.demo-cta-content p {
    color: #536582;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}


/* CTA BUTTON */

.demo-cta-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1268cf;
    color: #ffffff;
    border-radius: 10px;
    padding: 14px 20px;
    font-weight: 700;
    border: 1px solid #1268cf;
    transition: 0.25s ease;
}

.demo-cta-button:hover {
    background: #0a3475;
    border-color: #0a3475;
    color: #ffffff;
    transform: translateY(-2px);
}

.demo-cta-button span {
    font-size: 20px;
}


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

@media (max-width: 991px) {

    .premium-demo-box {
        padding: 55px 45px;
    }

    .demo-cta-card {
        max-width: 520px;
    }
}

@media (max-width: 767px) {

    .premium-demo-section {
        padding: 30px 0 70px;
    }

    .premium-demo-box {
        padding: 45px 25px;
        border-radius: 22px;
    }

    .premium-demo-content h2 {
        font-size: 36px;
    }

    .demo-benefits {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .demo-benefit,
    .demo-benefit:first-child {
        padding: 0;
        border-right: none;
    }

    .demo-cta-card {
        padding: 30px 25px;
    }
}
/* =========================
   PREMIUM CONTACT SECTION
========================= */

.premium-contact-section {
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(18, 104, 207, 0.10),
            transparent 28%
        ),
        #f7faff;
}

.premium-contact-wrapper {
    position: relative;
}


/* LEFT CONTENT */

.premium-contact-content {
    padding-right: 40px;
}

.premium-contact-label {
    display: inline-block;
    color: #1268cf;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    margin-bottom: 22px;
}

.premium-contact-content h2 {
    color: #071f4d;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.premium-contact-content h2 span {
    display: block;
    color: #1268cf;
}

.premium-contact-content > p {
    color: #536582;
    font-size: 17px;
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 38px;
}


/* CONTACT HIGHLIGHTS */

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-highlight-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf5ff;
    color: #1268cf;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 800;
}

.contact-highlight strong {
    display: block;
    color: #071f4d;
    font-size: 17px;
    margin-bottom: 5px;
}

.contact-highlight p {
    color: #536582;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


/* RIGHT CONTACT CARD */

.premium-contact-card {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #071f4d 0%,
            #0a3475 52%,
            #1268cf 100%
        );

    padding: 55px;
    border-radius: 26px;

    box-shadow:
        0 30px 70px rgba(7, 31, 77, 0.18);
}

.premium-contact-card::after {
    content: "";
    position: absolute;

    width: 230px;
    height: 230px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    border:
        45px solid rgba(255, 255, 255, 0.05);

    pointer-events: none;
}

.contact-card-label {
    position: relative;
    z-index: 2;

    display: inline-block;

    color: #d7ad55;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;

    margin-bottom: 20px;
}

.premium-contact-card h3 {
    position: relative;
    z-index: 2;

    color: #ffffff;

    font-size: 34px;
    line-height: 1.25;
    font-weight: 750;

    max-width: 430px;

    margin-bottom: 18px;
}

.premium-contact-card > p {
    position: relative;
    z-index: 2;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.8;

    max-width: 480px;

    margin-bottom: 30px;
}


/* DIVIDER */

.contact-card-divider {
    position: relative;
    z-index: 2;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.15);

    margin: 30px 0;
}


/* RESPONSE INFO */

.contact-response {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 30px;
}

.response-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}

.contact-response strong {
    display: block;

    color: #ffffff;

    font-size: 16px;

    margin-bottom: 3px;
}

.contact-response span {
    display: block;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 13px;
}


/* WHATSAPP BUTTON */

.premium-whatsapp-btn {
    position: relative;
    z-index: 2;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    color: #071f4d;

    border: 1px solid #ffffff;

    border-radius: 10px;

    padding: 15px 20px;

    font-weight: 700;

    transition: 0.25s ease;
}

.premium-whatsapp-btn:hover {
    background: #edf5ff;
    color: #1268cf;

    transform: translateY(-2px);
}

.contact-arrow {
    font-size: 20px;
}


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

@media (max-width: 991px) {

    .premium-contact-section {
        padding: 80px 0;
    }

    .premium-contact-content {
        padding-right: 0;
    }

    .premium-contact-card {
        padding: 45px;
    }
}


@media (max-width: 767px) {

    .premium-contact-section {
        padding: 65px 0;
    }

    .premium-contact-content h2 {
        font-size: 36px;
    }

    .premium-contact-card {
        padding: 35px 25px;
        border-radius: 22px;
    }

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

    .contact-highlight {
        gap: 14px;
    }
}
/* =========================
   WHATSAPP REGION MODAL
========================= */

.whatsapp-modal {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(7, 31, 77, 0.25);
}

.whatsapp-modal-header {
    padding: 30px 32px 22px;
    border-bottom: 1px solid #dbe6f5;
    background: #ffffff;
}

.whatsapp-modal-label {
    display: block;
    color: #1268cf;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}

.whatsapp-modal-header .modal-title {
    color: #071f4d;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.whatsapp-modal-header .btn-close {
    box-shadow: none;
}


/* MODAL BODY */

.whatsapp-modal-body {
    padding: 26px 32px 32px;
    background: #f8fbff;
}

.whatsapp-modal-description {
    color: #536582;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}


/* REGION OPTIONS */

.whatsapp-region-option {
    display: flex;
    align-items: center;
    gap: 16px;

    width: 100%;

    background: #ffffff;
    border: 1px solid #dbe6f5;
    border-radius: 14px;

    padding: 17px 18px;
    margin-bottom: 12px;

    text-decoration: none;

    transition: 0.25s ease;
}

.whatsapp-region-option:last-child {
    margin-bottom: 0;
}

.whatsapp-region-option:hover {
    border-color: #1268cf;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(7, 31, 77, 0.08);
}


/* REGION ICON */

.region-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #edf5ff;
    color: #1268cf;

    font-size: 13px;
    font-weight: 800;
}


/* REGION TEXT */

.region-details {
    flex: 1;
}

.region-details strong {
    display: block;

    color: #071f4d;

    font-size: 16px;
    font-weight: 700;

    margin-bottom: 3px;
}

.region-details span {
    display: block;

    color: #536582;

    font-size: 13px;
}


/* ARROW */

.region-arrow {
    color: #1268cf;
    font-size: 20px;
    font-weight: 600;

    transition: 0.25s ease;
}

.whatsapp-region-option:hover .region-arrow {
    transform: translateX(4px);
}


/* MOBILE */

@media (max-width: 575px) {

    .whatsapp-modal-header {
        padding: 25px 22px 20px;
    }

    .whatsapp-modal-body {
        padding: 22px;
    }

    .whatsapp-modal-header .modal-title {
        font-size: 24px;
    }

    .whatsapp-region-option {
        padding: 14px;
    }

    .region-icon {
        width: 46px;
        height: 46px;
    }
}
/* =========================================
   PREMIUM FOOTER
========================================= */

.site-footer {
    background: linear-gradient(
        135deg,
        #061a3d 0%,
        #08285a 55%,
        #0b3d82 100%
    );
    color: #ffffff;
    padding: 75px 0 25px;
}

.footer-brand h4 {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-brand p,
.footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 440px;
}

.footer-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.footer-highlight strong {
    font-size: 1.8rem;
    color: #ffffff;
}

.footer-highlight span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-links h5,
.footer-cta h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-label {
    display: block;
    color: #f3c55a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.footer-demo-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 55px;
    padding-top: 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.footer-bottom-text {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.72rem;
}


/* MOBILE */

@media (max-width: 767px) {

    .site-footer {
        padding-top: 55px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}
/* =========================================
   LEADERSHIP SECTION
========================================= */

.leadership-section {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Heading */

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

.leadership-heading h2 {
    margin: 18px 0 20px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    color: #082759;
}

.leadership-heading h2 span {
    color: #1473e6;
}

.leadership-heading p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #536b8e;
}


/* =========================================
   FOUNDER CARD
========================================= */

.founder-card {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 55px 65px;
    border-radius: 32px;
    background: linear-gradient(
        135deg,
        #082759 0%,
        #0d428d 55%,
        #1473e6 100%
    );
    box-shadow: 0 30px 70px rgba(8, 39, 89, 0.18);
    overflow: hidden;
}

/* Decorative circles */

.founder-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 45px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    right: -80px;
    top: -100px;
}

.founder-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 35px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    left: -80px;
    bottom: -100px;
}


/* Founder Image */

.founder-image-wrap {
    position: relative;
    z-index: 2;
    max-width: 290px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 21px;
}


/* Founder Content */

.founder-content {
    position: relative;
    z-index: 2;
    padding-left: 15px;
}

.leadership-role {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffd56a;
}

.founder-content h3 {
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
}

.founder-content p {
    max-width: 650px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}


/* Founder Legacy */

.founder-legacy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.founder-legacy span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.founder-legacy strong {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}


/* =========================================
   LEADERSHIP TEAM
========================================= */

.leadership-team {
    max-width: 1180px;
    margin: 75px auto 0;
}

.leadership-team-heading {
    margin-bottom: 35px;
    text-align: center;
}

.leadership-team-heading span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1473e6;
}

.leadership-team-heading h3 {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    color: #082759;
}


/* Leader Cards */

.leader-card {
    position: relative;
    height: 100%;
    min-height: 340px;
    padding: 42px 36px;
    border: 1px solid #dce8f8;
    border-radius: 26px;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-7px);
    border-color: #1473e6;
    box-shadow: 0 25px 55px rgba(8, 39, 89, 0.12);
}

.leader-number {
    position: absolute;
    top: 25px;
    right: 28px;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: #edf3fb;
}

.leader-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    border-radius: 18px;
    background: #edf5ff;
    font-size: 22px;
    font-weight: 800;
    color: #1473e6;
}

.leader-role {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #1473e6;
}

.leader-card h4 {
    max-width: 280px;
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
    color: #082759;
}

.leader-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #607595;
}


/* Featured Middle Card */

.leader-card-featured {
    background: linear-gradient(
        145deg,
        #082759 0%,
        #0d428d 55%,
        #1473e6 100%
    );
    border-color: transparent;
    box-shadow: 0 25px 55px rgba(8, 39, 89, 0.15);
}

.leader-card-featured .leader-number {
    color: rgba(255, 255, 255, 0.1);
}

.leader-card-featured .leader-icon {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.leader-card-featured .leader-role {
    color: #ffd56a;
}

.leader-card-featured h4 {
    color: #ffffff;
}

.leader-card-featured p {
    color: rgba(255, 255, 255, 0.72);
}


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

@media (max-width: 991px) {

    .leadership-section {
        padding: 80px 0;
    }

    .founder-card {
        padding: 45px 35px;
    }

    .founder-content {
        padding-left: 0;
        text-align: center;
    }

    .founder-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .leadership-team {
        margin-top: 55px;
    }
}


@media (max-width: 576px) {

    .leadership-heading h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .founder-card {
        padding: 35px 22px;
        border-radius: 24px;
    }

    .founder-content h3 {
        font-size: 30px;
    }

    .leader-card {
        min-height: auto;
        padding: 34px 28px;
    }
}
/* ========================================
   TOP PERFORMERS
======================================== */

.performers-section {
    background: #f8fbff;
    padding: 100px 0;
}

.performers-section .section-heading {
    max-width: 720px;
    margin: 0 auto 60px;
}

.performers-section .section-heading h2 {
    font-size: 46px;
    font-weight: 700;
    color: #082653;
    margin-top: 12px;
    margin-bottom: 16px;
}

.performers-section .section-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: #587092;
}


/* GRID */

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


/* CARD */

.performer-card {
    position: relative;
    min-height: 390px;
    padding: 38px 30px 30px;
    background: #ffffff;
    border: 1px solid #d7e5f8;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.performer-card:hover {
    transform: translateY(-8px);
    border-color: #1672df;
    box-shadow: 0 22px 45px rgba(9, 49, 105, 0.12);
}


/* FEATURED CARD */

.performer-card.featured {
    background: linear-gradient(
        145deg,
        #082b63 0%,
        #0c438d 55%,
        #1672df 100%
    );

    border-color: transparent;
    color: #ffffff;

    box-shadow: 0 22px 45px rgba(10, 62, 137, 0.18);
}


/* NUMBER */

.performer-number {
    position: absolute;
    top: 22px;
    right: 24px;

    font-size: 38px;
    font-weight: 700;

    color: #edf3fb;
}

.performer-card.featured .performer-number {
    color: rgba(255, 255, 255, 0.12);
}


/* ICON */

.performer-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 18px;

    background: #edf5ff;

    color: #1269d3;

    font-size: 25px;
    font-weight: 700;
}

.performer-card.featured .performer-icon {
    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.16);

    color: #ffffff;
}


/* LABEL */

.performer-label {
    display: block;

    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #1269d3;
}

.performer-card.featured .performer-label {
    color: #ffd35a;
}


/* NAME */

.performer-card h3 {
    font-size: 22px;
    font-weight: 700;

    line-height: 1.3;

    color: #082653;

    margin-bottom: 8px;
}

.performer-card.featured h3 {
    color: #ffffff;
}


/* PROGRAM */

.performer-program {
    font-size: 16px;

    color: #627899;

    margin-bottom: 30px;
}

.performer-card.featured .performer-program {
    color: rgba(255, 255, 255, 0.75);
}


/* FOOTER */

.performer-footer {
    margin-top: auto;

    padding-top: 22px;

    border-top: 1px solid #e3ebf6;

    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.performer-card.featured .performer-footer {
    border-color: rgba(255, 255, 255, 0.18);
}

.performer-footer div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.performer-footer span {
    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.3px;

    color: #8293ab;
}

.performer-footer strong {
    font-size: 17px;

    color: #082653;
}

.performer-card.featured .performer-footer span {
    color: rgba(255, 255, 255, 0.6);
}

.performer-card.featured .performer-footer strong {
    color: #ffffff;
}


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

@media (max-width: 1199px) {

   /* .performers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
*/
}


@media (max-width: 767px) {

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

    .performers-section .section-heading {
        margin-bottom: 40px;
    }

    .performers-section .section-heading h2 {
        font-size: 34px;
    }

   /* .performers-grid {
        grid-template-columns: 1fr;
    }*/

    .performer-card {
        min-height: 350px;
    }

}
/* ========================================
   TOP PERFORMERS CAROUSEL
======================================== */

.performers-carousel-wrapper {
    position: relative;
    width: 100%;
    padding-top: 70px;
}

/* CAROUSEL */

.performers-carousel {
    display: flex;
    gap: 24px;

    width: 100%;

    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    padding: 10px 4px 35px;

    scrollbar-width: none;
}

.performers-carousel::-webkit-scrollbar {
    display: none;
}


/* 4 CARDS VISIBLE */

.performers-carousel .performer-card {
    flex: 0 0 calc((100% - 72px) / 4);
    scroll-snap-align: start;
}


/* NAVIGATION BUTTONS */

.performer-nav {
    position: absolute;
    top: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d5e3f5;
    border-radius: 50%;

    background: #ffffff;
    color: #1269d3;

    font-size: 22px;
    font-weight: 600;

    cursor: pointer;
    z-index: 5;

    transition: all 0.25s ease;

    box-shadow: 0 8px 22px rgba(8, 38, 83, 0.08);
}

.performer-prev {
    right: 60px;
}

.performer-next {
    right: 0;
}

.performer-nav:hover {
    background: #1269d3;
    border-color: #1269d3;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(18, 105, 211, 0.22);
}

.performer-nav:hover {
    background: #1269d3;
    border-color: #1269d3;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(18, 105, 211, 0.22);
}


/* FIX SECTION POSITION WITH STICKY HEADER */

#top-performers {
    scroll-margin-top: 100px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1199px) {

    .performers-carousel .performer-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

   
    .performers-carousel .performer-card {
        flex: 0 0 100%;
    }

    .performer-nav {
        width: 40px;
        height: 40px;

        font-size: 18px;
    }

}
/* ========================================
   OUR EXPERIENCE
======================================== */

.experience-section {
    background: #f7faff;
     padding: 70px 0 110px;
    scroll-margin-top: 100px;
}


/* Section heading */

.experience-section .section-heading {
    max-width: 820px;
    margin: 0 auto 65px;
}

.experience-section .section-heading p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #536987;
    line-height: 1.8;
}


/* Main layout */

.experience-content {
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 55px;
    align-items: stretch;
}


/* Left content */

.experience-intro {
    background: linear-gradient(
        145deg,
        #082b63 0%,
        #0e438c 55%,
        #1673df 100%
    );

    border-radius: 28px;
    padding: 50px 45px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(7, 43, 99, 0.14);
}

.experience-intro::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border: 35px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    right: -90px;
    top: -90px;
}

.experience-small-label {
    display: block;
    color: #ffd34e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.experience-intro h3 {
    color: #ffffff;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.experience-intro p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}


/* Statistics */

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.experience-stat {
    background: #ffffff;
    border: 1px solid #dbe8f8;
    border-radius: 24px;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.experience-stat:hover {
    transform: translateY(-7px);
    border-color: #1475df;
    box-shadow: 0 20px 45px rgba(13, 76, 150, 0.12);
}

.experience-stat.featured {
    background: linear-gradient(
        145deg,
        #0b3978,
        #1675df
    );
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(13, 76, 150, 0.18);
}

.experience-stat-number {
    display: block;
    color: #1475df;
    font-size: 52px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 24px;
}

.experience-stat.featured .experience-stat-number {
    color: #ffffff;
}

.experience-stat h4 {
    color: #082b63;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.experience-stat p {
    color: #637792;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.experience-stat.featured h4 {
    color: #ffffff;
}

.experience-stat.featured p {
    color: rgba(255, 255, 255, 0.75);
}


/* Responsive */

@media (max-width: 1100px) {

    .experience-content {
        grid-template-columns: 1fr;
    }

    .experience-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 768px) {

    .experience-section {
        padding: 75px 0;
    }

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

    .experience-intro {
        padding: 40px 30px;
    }

    .experience-intro h3 {
        font-size: 29px;
    }

    .experience-stat {
        min-height: 230px;
    }
}
/* ========================================
   PURPOSE & PRINCIPLES
======================================== */

.purpose-section {
    padding: 100px 0;
    background: #ffffff;
}


/* SECTION HEADING */

.purpose-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.purpose-heading h2 {
    margin: 12px 0 20px;
    color: #082653;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.purpose-heading h2 span {
    display: block;
    color: #1473e6;
}

.purpose-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #587092;
    font-size: 17px;
    line-height: 1.8;
}


/* ========================================
   VISION + MISSION
======================================== */

.purpose-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
}


/* SHARED PANEL */

.vision-panel,
.mission-panel {
    position: relative;
    min-height: 480px;
    padding: 55px 50px;
    border-radius: 28px;
    overflow: hidden;
}


/* ========================================
   VISION
======================================== */

.vision-panel {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(75, 155, 255, 0.30),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #061e49 0%,
            #0a397b 55%,
            #1268cf 100%
        );

    color: #ffffff;

    box-shadow:
        0 25px 60px rgba(7, 39, 89, 0.18);
}

.vision-panel::after {
    content: "";
    position: absolute;

    width: 240px;
    height: 240px;

    right: -100px;
    bottom: -120px;

    border-radius: 50%;

    border:
        40px solid rgba(255, 255, 255, 0.05);
}


/* ========================================
   MISSION
======================================== */

.mission-panel {
    background: #f8fbff;

    border:
        1px solid #dbe8f8;
}


/* PANEL NUMBER */

.purpose-panel-number {
    position: absolute;

    top: 30px;
    right: 35px;

    font-size: 60px;
    line-height: 1;

    font-weight: 800;

    color: rgba(255, 255, 255, 0.10);
}

.mission-panel .purpose-panel-number {
    color: #e6eef9;
}


/* LABEL */

.purpose-panel-label {
    display: inline-block;

    margin-bottom: 20px;

    color: #ffd35a;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.mission-panel .purpose-panel-label {
    color: #1473e6;
}


/* HEADINGS */

.vision-panel h3,
.mission-panel h3 {
    position: relative;
    z-index: 2;

    max-width: 480px;

    margin-bottom: 22px;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 800;
}

.vision-panel h3 {
    color: #ffffff;
}

.mission-panel h3 {
    color: #082653;
}


/* VISION TEXT */

.vision-panel > p {
    position: relative;
    z-index: 2;

    max-width: 500px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 16px;
    line-height: 1.8;
}


/* VISION QUOTE */

.vision-quote {
    position: relative;
    z-index: 2;

    margin-top: 35px;
    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.16);
}

.vision-quote span {
    display: block;

    margin-bottom: 7px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.vision-quote strong {
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
}


/* ========================================
   MISSION LIST
======================================== */

.mission-list {
    margin-top: 30px;
}

.mission-item {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 18px 0;

    border-bottom:
        1px solid #dce7f5;
}

.mission-item:last-child {
    border-bottom: none;
}

.mission-item span {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eaf3ff;

    color: #1473e6;

    font-size: 12px;
    font-weight: 800;
}

.mission-item p {
    margin: 0;

    color: #587092;

    font-size: 15px;
    line-height: 1.7;
}


/* ========================================
   CORE VALUES
======================================== */

.values-section {
    max-width: 1180px;

    margin: 75px auto 0;
}

.values-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}

.values-small-label {
    display: block;

    margin-bottom: 8px;

    color: #1473e6;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.values-heading h3 {
    margin: 0;

    color: #082653;

    font-size: 34px;
    font-weight: 800;
}

.values-heading > p {
    max-width: 330px;

    margin: 0;

    color: #637792;

    font-size: 15px;

    text-align: right;
}


/* VALUES GRID */

.values-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    border-top:
        1px solid #dce7f5;

    border-bottom:
        1px solid #dce7f5;
}


/* VALUE ITEM */

.value-item {
    position: relative;

    padding: 35px 25px;

    border-right:
        1px solid #dce7f5;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.value-item:last-child {
    border-right: none;
}

.value-item:hover {
    background: #f5f9ff;

    transform:
        translateY(-4px);
}

.value-number {
    display: block;

    margin-bottom: 22px;

    color: #1473e6;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}

.value-item h4 {
    min-height: 52px;

    margin-bottom: 13px;

    color: #082653;

    font-size: 18px;
    line-height: 1.4;

    font-weight: 750;
}

.value-item p {
    margin: 0;

    color: #637792;

    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .purpose-main {
        grid-template-columns: 1fr;
    }

    .vision-panel,
    .mission-panel {
        min-height: auto;
    }

    .values-grid {
        grid-template-columns:
            repeat(2, 1fr);

        border-bottom: none;
    }

    .value-item {
        border-bottom:
            1px solid #dce7f5;
    }

    .value-item:nth-child(2n) {
        border-right: none;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

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

    .purpose-heading {
        margin-bottom: 45px;
    }

    .purpose-heading h2 {
        font-size: 38px;
    }

    .vision-panel,
    .mission-panel {
        padding: 40px 28px;
        border-radius: 22px;
    }

    .vision-panel h3,
    .mission-panel h3 {
        font-size: 28px;
    }

    .values-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .values-heading > p {
        text-align: left;
    }

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

    .value-item {
        border-right: none;
    }

    .value-item h4 {
        min-height: auto;
    }
}
/* =========================================
   ADMISSION PAGE
========================================= */

.admission-page {
    position: relative;
    padding: 90px 0 120px;
    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(18, 104, 207, 0.10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f7faff 0%,
            #ffffff 45%
        );
}


/* =========================================
   PAGE HEADER
========================================= */

.admission-header {
    max-width: 800px;
    margin: 0 auto 65px;
    text-align: center;
}

.admission-header h1 {
    margin: 10px 0 20px;

    color: #082653;

    font-size: clamp(44px, 5vw, 64px);
    line-height: 1.05;

    font-weight: 800;
    letter-spacing: -2px;
}

.admission-header h1 span {
    color: #1473e6;
}

.admission-header > p {
    max-width: 650px;
    margin: 0 auto;

    color: #587092;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.admission-layout {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 35px;

    max-width: 1180px;

    margin: 0 auto;

    align-items: stretch;
}


/* =========================================
   LEFT INFORMATION PANEL
========================================= */

.admission-info-panel {
    position: relative;

    padding: 55px 45px;

    border-radius: 30px;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(72, 151, 255, 0.32),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #061e49 0%,
            #0a397b 55%,
            #1268cf 100%
        );

    box-shadow:
        0 25px 60px rgba(7, 39, 89, 0.18);
}

.admission-info-panel::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -120px;
    bottom: -130px;

    border-radius: 50%;

    border:
        45px solid rgba(255, 255, 255, 0.05);
}

.admission-small-label {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 20px;

    color: #ffd35a;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.admission-info-panel > h2 {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.15;

    font-weight: 800;
}

.admission-info-panel > p {
    position: relative;
    z-index: 2;

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   BENEFITS
========================================= */

.admission-benefits {
    position: relative;
    z-index: 2;

    margin-top: 40px;
}

.admission-benefit {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    padding: 22px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.14);
}

.admission-benefit > span {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.11);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    color: #ffd35a;

    font-size: 11px;
    font-weight: 800;
}

.admission-benefit strong {
    display: block;

    margin-bottom: 5px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
}

.admission-benefit p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   HELP BOX
========================================= */

.admission-help {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 4px;

    margin-top: 35px;

    padding: 22px;

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(255, 255, 255, 0.12);
}

.admission-help span {
    color:
        rgba(255, 255, 255, 0.55);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.admission-help strong {
    color: #ffffff;

    font-size: 14px;
}


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

.admission-form-card {
    padding: 50px;

    background: #ffffff;

    border:
        1px solid #dbe7f6;

    border-radius: 30px;

    box-shadow:
        0 20px 55px rgba(7, 31, 77, 0.08);
}


/* FORM HEADING */

.admission-form-heading {
    margin-bottom: 38px;

    padding-bottom: 28px;

    border-bottom:
        1px solid #e2ebf6;
}

.admission-form-heading > span {
    display: block;

    margin-bottom: 8px;

    color: #1473e6;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.admission-form-heading h2 {
    margin-bottom: 8px;

    color: #082653;

    font-size: 32px;
    font-weight: 800;
}

.admission-form-heading p {
    margin: 0;

    color: #637792;

    font-size: 15px;
}


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

.admission-form-card .form-group {
    margin-bottom: 24px;
}

.admission-form-card .form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.admission-form-card label {
    display: block;

    margin-bottom: 9px;

    color: #18385f;

    font-size: 13px;
    font-weight: 700;
}

.admission-form-card label span {
    color: #1473e6;
}


/* INPUTS */

.admission-form-card .form-control {
    width: 100%;

    min-height: 52px;

    padding: 13px 16px;

    border:
        1px solid #d6e2f1;

    border-radius: 11px;

    background: #fbfdff;

    color: #17365d;

    font-size: 14px;

    outline: none;

    box-shadow: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.admission-form-card textarea.form-control {
    min-height: 120px;

    resize: vertical;
}

.admission-form-card .form-control::placeholder {
    color: #9aabc0;
}

.admission-form-card .form-control:focus {
    background: #ffffff;

    border-color: #1473e6;

    box-shadow:
        0 0 0 4px rgba(20, 115, 230, 0.09);
}


/* SELECT */

.admission-form-card select.form-control {
    cursor: pointer;
}


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

.admission-submit-btn {
    width: 100%;

    min-height: 56px;

    margin-top: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #0b4da3,
            #1473e6
        );

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 14px 30px rgba(18, 104, 207, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.admission-submit-btn:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 18px 38px rgba(18, 104, 207, 0.28);
}

.admission-submit-btn span {
    font-size: 19px;

    transition:
        transform 0.25s ease;
}

.admission-submit-btn:hover span {
    transform:
        translateX(4px);
}


/* FORM NOTE */

.admission-form-note {
    max-width: 500px;

    margin:
        18px auto 0;

    color: #8797ab;

    font-size: 11px;
    line-height: 1.6;

    text-align: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .admission-page {
        padding:
            75px 0 90px;
    }

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

    .admission-info-panel {
        padding:
            45px 40px;
    }

    .admission-info-panel > h2 {
        font-size: 34px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .admission-page {
        padding:
            60px 0 70px;
    }

    .admission-header {
        margin-bottom: 45px;
    }

    .admission-header h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .admission-info-panel {
        padding:
            38px 26px;

        border-radius: 24px;
    }

    .admission-info-panel > h2 {
        font-size: 30px;
    }

    .admission-form-card {
        padding:
            35px 24px;

        border-radius: 24px;
    }

    .admission-form-heading h2 {
        font-size: 28px;
    }

    .admission-form-card .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}
/* ==========================================
   REGISTRATION SECTION
========================================== */

.registration-section {
    padding: 100px 0;
    background: linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.registration-header {
    text-align: center;
    margin-bottom: 70px;
}

.registration-badge {
    display: inline-block;
    background: rgba(13,110,253,.08);
    color: #0d6efd;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.registration-header h2 {
    font-size: 52px;
    font-weight: 800;
    color: #0f2b67;
    margin-bottom: 15px;
}

.registration-header p {
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    color: #6c757d;
}

.registration-card,
.admission-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 45px;
    height: 100%;
    color: #fff;
    transition: .4s;
}

.registration-card {
    background: linear-gradient(135deg,#0d6efd,#4f8cff);
}

.admission-card {
    background: linear-gradient(135deg,#122d72,#1f4fc9);
}

.registration-card:hover,
.admission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.card-icon {
    font-size: 55px;
    margin-bottom: 25px;
}

.registration-card h3,
.admission-card h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.registration-card p,
.admission-card p {
    font-size: 18px;
    opacity: .95;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 17px;
}

.registration-btn,
.admission-btn {
    background: #fff;
    color: #0d6efd;
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 700;
    border: none;
}

.registration-btn:hover,
.admission-btn:hover {
    background: #f8f9fa;
    color: #0d6efd;
}

@media(max-width:768px){

    .registration-header h2{
        font-size:36px;
    }

    .registration-card,
    .admission-card{
        padding:35px;
    }

    .registration-card h3,
    .admission-card h3{
        font-size:30px;
    }
}
/* =========================================================
   ACADEMY JOIN SECTION
   ========================================================= */

   .academy-join-section {
    position: relative;
    padding: 78px 0 70px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(37, 99, 235, 0.05),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(245, 158, 11, 0.045),
            transparent 28%
        ),
        #fbfdff;

    overflow: hidden;
}


/* SUBTLE BACKGROUND CURVES */

.academy-join-section::before {
    content: "";
    position: absolute;

    width: 360px;
    height: 360px;

    left: -220px;
    top: 120px;

    border: 1px solid rgba(37, 99, 235, 0.20);
    border-radius: 50%;

    pointer-events: none;
}


.academy-join-section::after {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    right: -280px;
    top: -120px;

    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 50%;

    pointer-events: none;
}


/* CONTAINER */

.academy-join-container {
    width: min(1250px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADER
   ========================================================= */

.academy-join-header {
    text-align: center;
    margin-bottom: 42px;
}


.academy-join-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 8px 18px;

    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.85);

    color: #c78300;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.9px;
    text-transform: uppercase;
}


.academy-join-eyebrow span {
    color: #e5a100;
    font-size: 15px;
}


.academy-join-header h2 {
    margin: 18px 0 10px;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.5px;

    color: #102653;

    font-family: Georgia, "Times New Roman", serif;
}


.academy-join-header p {
    margin: 0 auto;

    max-width: 760px;

    font-size: 17px;
    line-height: 1.7;

    color: #52627b;
}


/* =========================================================
   TWO MAIN CARDS
   ========================================================= */

.academy-join-cards {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;
}


/* CARD BASE */

.academy-action-card {
    position: relative;

    min-height: 455px;

    padding: 38px 48px 34px;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.09);

    border: 1px solid rgba(255, 255, 255, 0.9);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.academy-action-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.14);
}


/* BLUE CARD */

.academy-registration-card {
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(255,255,255,0.70),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #f5f9ff 0%,
            #eef5ff 55%,
            #e7f0ff 100%
        );
}


/* GOLD CARD */

.academy-admission-card {
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(255,255,255,0.75),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fffdf8 0%,
            #fff8e9 55%,
            #fff3d9 100%
        );
}


/* =========================================================
   DECORATIONS
   ========================================================= */

.academy-card-decoration {
    position: absolute;

    pointer-events: none;
}


.academy-blue-dots {
    width: 90px;
    height: 70px;

    left: 25px;
    top: 30px;

    opacity: 0.45;

    background-image:
        radial-gradient(
            #7da8ff 1.5px,
            transparent 1.5px
        );

    background-size: 16px 16px;
}


.academy-gold-dots {
    width: 90px;
    height: 70px;

    right: 25px;
    top: 30px;

    opacity: 0.45;

    background-image:
        radial-gradient(
            #eab84e 1.5px,
            transparent 1.5px
        );

    background-size: 16px 16px;
}


/* BOTTOM CURVE */

.academy-blue-curve {
    width: 260px;
    height: 150px;

    right: -100px;
    bottom: -70px;

    border-radius: 50%;

    border: 2px solid rgba(37, 99, 235, 0.28);

    box-shadow:
        0 0 0 35px rgba(37, 99, 235, 0.04),
        0 0 0 70px rgba(37, 99, 235, 0.025);

    transform: rotate(-20deg);
}


.academy-gold-curve {
    width: 260px;
    height: 150px;

    left: -100px;
    bottom: -70px;

    border-radius: 50%;

    border: 2px solid rgba(225, 157, 20, 0.28);

    box-shadow:
        0 0 0 35px rgba(225, 157, 20, 0.04),
        0 0 0 70px rgba(225, 157, 20, 0.025);

    transform: rotate(20deg);
}


/* =========================================================
   ICON
   ========================================================= */

.academy-action-icon {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    font-size: 29px;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.12);
}


.academy-blue-icon {
    background: linear-gradient(
        135deg,
        #1474ed,
        #2465d7
    );

    color: white;
}


.academy-gold-icon {
    background: linear-gradient(
        135deg,
        #f5b000,
        #df9200
    );

    color: white;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.academy-action-content {
    position: relative;
    z-index: 2;

    max-width: 620px;
}


.academy-action-content h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(29px, 3vw, 38px);

    line-height: 1.2;

    color: #102653;

    font-weight: 700;

    letter-spacing: -0.7px;
}


/* DECORATIVE LINE */

.academy-title-line {
    display: flex;
    align-items: center;

    width: 170px;

    gap: 10px;

    margin: 12px 0 18px;
}


.academy-title-line span {
    height: 1px;

    flex: 1;

    background: rgba(37, 99, 235, 0.35);
}


.academy-title-line b {
    color: #2563eb;

    font-size: 15px;
}


.academy-gold-line span {
    background: rgba(225, 157, 20, 0.35);
}


.academy-gold-line b {
    color: #e19d14;
}


.academy-action-content p {
    max-width: 590px;

    margin: 0;

    color: #475875;

    font-size: 16px;

    line-height: 1.65;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.academy-action-benefits {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 28px;
}


.academy-benefit {
    display: flex;

    align-items: center;

    gap: 10px;
}


.academy-benefit-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.85);

    border-radius: 12px;

    color: #1769df;

    font-size: 21px;

    box-shadow:
        0 7px 18px rgba(15, 23, 42, 0.08);

    border: 1px solid rgba(37, 99, 235, 0.07);
}


.academy-admission-card .academy-benefit-icon {
    color: #df9800;

    border-color: rgba(225, 157, 20, 0.10);
}


.academy-benefit span {
    color: #233653;

    font-size: 13px;

    line-height: 1.35;

    font-weight: 700;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.academy-action-button {
    position: relative;
    z-index: 3;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 22px;

    min-width: 250px;

    margin-top: 28px;

    padding: 14px 22px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.academy-action-button strong {
    font-size: 21px;

    line-height: 1;

    transition: transform 0.25s ease;
}


.academy-action-button:hover {
    transform: translateY(-2px);

    text-decoration: none;
}


.academy-action-button:hover strong {
    transform: translateX(5px);
}


/* BLUE BUTTON */

.academy-registration-button {
    background: linear-gradient(
        135deg,
        #1268df,
        #1f5ed0
    );

    color: white;

    box-shadow:
        0 10px 22px rgba(37, 99, 235, 0.20);
}


.academy-registration-button:hover {
    color: white;

    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.28);
}


/* GOLD BUTTON */

.academy-admission-button {
    background: linear-gradient(
        135deg,
        #f3ad05,
        #df9700
    );

    color: white;

    box-shadow:
        0 10px 22px rgba(225, 157, 20, 0.20);
}


.academy-admission-button:hover {
    color: white;

    box-shadow:
        0 14px 30px rgba(225, 157, 20, 0.28);
}


/* =========================================================
   FEATURE STRIP
   ========================================================= */

.academy-feature-strip {
    margin-top: 38px;

    padding: 25px 32px;

    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;

    gap: 25px;

    background: rgba(255,255,255,0.92);

    border-radius: 16px;

    border: 1px solid rgba(15, 23, 42, 0.06);

    box-shadow:
        0 12px 35px rgba(15, 23, 42, 0.06);
}


.academy-feature-item {
    display: flex;

    align-items: center;

    gap: 14px;
}


.academy-feature-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f1f6ff;

    color: #1667dd;

    font-size: 23px;

    border: 1px solid rgba(37, 99, 235, 0.08);
}


.academy-feature-item strong {
    display: block;

    color: #162c55;

    font-size: 15px;

    margin-bottom: 4px;
}


.academy-feature-item span {
    display: block;

    color: #66748a;

    font-size: 12px;

    line-height: 1.4;
}


.academy-feature-divider {
    width: 1px;

    height: 48px;

    background: #dce4ef;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .academy-action-card {
        padding: 34px;
    }

    .academy-action-benefits {
        gap: 12px;
    }

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

    .academy-feature-divider {
        display: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .academy-join-section {
        padding: 60px 0;
    }

    .academy-join-container {
        width: min(100% - 28px, 600px);
    }

    .academy-join-header {
        margin-bottom: 32px;
    }

    .academy-join-header h2 {
        font-size: 36px;
    }

    .academy-join-header p {
        font-size: 15px;
    }

    .academy-join-cards {
        grid-template-columns: 1fr;
    }

    .academy-action-card {
        min-height: auto;

        padding: 32px 28px;
    }

    .academy-action-content h3 {
        font-size: 30px;
    }

    .academy-action-benefits {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .academy-benefit {
        max-width: 250px;
    }

    .academy-action-button {
        width: 100%;

        min-width: 0;
    }

    .academy-feature-strip {
        grid-template-columns: 1fr;

        gap: 22px;

        padding: 25px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .academy-join-header h2 {
        font-size: 31px;
    }

    .academy-join-eyebrow {
        font-size: 11px;

        padding: 7px 12px;
    }

    .academy-action-card {
        border-radius: 18px;

        padding: 28px 22px;
    }

    .academy-action-icon {
        width: 60px;
        height: 60px;
    }

    .academy-action-content h3 {
        font-size: 27px;
    }

}
/* =========================================================
   ACADEMY JOIN SECTION
   ========================================================= */

   .academy-join-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0 72px;
    background:
        radial-gradient(circle at 10% 30%, rgba(33, 107, 225, .07), transparent 24%),
        radial-gradient(circle at 90% 12%, rgba(240, 172, 18, .08), transparent 25%),
        #fbfdff;
}

.academy-join-section::before,
.academy-join-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
}

.academy-join-section::before {
    left: -315px;
    top: 42px;
    border: 1px solid #e7a812;
    box-shadow: 0 0 0 76px rgba(231, 168, 18, .025);
}

.academy-join-section::after {
    right: -310px;
    top: -155px;
    border: 1px solid #e7a812;
    box-shadow: 0 0 0 92px rgba(23, 101, 217, .04);
}

.academy-join-dots {
    position: absolute;
    width: 80px;
    height: 92px;
    background-image: radial-gradient(#e5a100 1.7px, transparent 1.7px);
    background-size: 19px 19px;
    opacity: .7;
}

.academy-join-dots-left {
    top: 28px;
    left: 25px;
}

.academy-join-container {
    position: relative;
    z-index: 1;
    width: min(1248px, calc(100% - 40px));
    margin: 0 auto;
}

.academy-join-header {
    margin-bottom: 37px;
    text-align: center;
}

.academy-join-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(231, 168, 18, .42);
    border-radius: 50px;
    color: #db9200;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 7px 18px rgba(20, 47, 90, .05);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.academy-join-eyebrow i {
    color: #e6a10b;
    font-size: 14px;
}

.academy-join-header h2 {
    margin: 19px 0 9px;
    color: #092657;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 700;
    letter-spacing: -1.3px;
    line-height: 1.12;
}

.academy-join-header p {
    max-width: 710px;
    margin: 0 auto;
    color: #52627b;
    font-size: 16px;
    line-height: 1.7;
}

.academy-join-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.academy-action-card {
    position: relative;
    min-height: 468px;
    overflow: hidden;
    padding: 38px 50px 35px;
    border: 1px solid rgba(225, 234, 247, .95);
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(8, 40, 90, .13);
    transition: transform .28s ease, box-shadow .28s ease;
}

.academy-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 48px rgba(8, 40, 90, .17);
}

.academy-registration-card {
    background:
        radial-gradient(circle at 69% -9%, rgba(202, 222, 255, .55), transparent 30%),
        linear-gradient(135deg, #f9fcff 0%, #eef5ff 55%, #e7f0ff 100%);
}

.academy-admission-card {
    background:
        radial-gradient(circle at 28% -10%, rgba(255, 255, 255, .95), transparent 30%),
        linear-gradient(135deg, #fffdf8 0%, #fff8e7 54%, #fff2d8 100%);
}

.academy-card-dots,
.academy-card-curve {
    position: absolute;
    pointer-events: none;
}

.academy-card-dots {
    top: 28px;
    width: 85px;
    height: 82px;
    opacity: .46;
    background-size: 17px 17px;
}

.academy-blue-dots {
    left: 26px;
    background-image: radial-gradient(#75a3f5 1.6px, transparent 1.6px);
}

.academy-gold-dots {
    right: 27px;
    background-image: radial-gradient(#e6af3b 1.6px, transparent 1.6px);
}

.academy-card-curve {
    bottom: -110px;
    width: 220px;
    height: 185px;
    border: 1px solid;
    border-radius: 50%;
}

.academy-blue-curve {
    right: -88px;
    border-color: rgba(20, 104, 220, .48);
    box-shadow:
        0 0 0 28px rgba(20, 104, 220, .045),
        0 0 0 56px rgba(20, 104, 220, .026);
}

.academy-gold-curve {
    left: -88px;
    border-color: rgba(224, 158, 20, .50);
    box-shadow:
        0 0 0 28px rgba(224, 158, 20, .045),
        0 0 0 56px rgba(224, 158, 20, .026);
}

.academy-action-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 66px;
    height: 66px;
    margin: 0 auto 21px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 11px 20px rgba(12, 54, 126, .18);
}

.academy-blue-icon {
    background: linear-gradient(135deg, #2679e9, #0753c8);
}

.academy-gold-icon {
    background: linear-gradient(135deg, #f5b512, #df9200);
}

.academy-action-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.academy-action-content h3 {
    margin: 0;
    color: #092657;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(29px, 2.6vw, 38px);
    font-weight: 700;
}

.academy-title-line {
    display: flex;
    align-items: center;
    width: 285px;
    max-width: 75%;
    gap: 10px;
    margin: 17px auto 18px;
}

.academy-title-line span {
    height: 1px;
    flex: 1;
    background: rgba(20, 104, 220, .40);
}

.academy-title-line i {
    color: #1268cf;
    font-size: 13px;
}

.academy-gold-line span {
    background: rgba(224, 158, 20, .47);
}

.academy-gold-line i {
    color: #df9800;
}

.academy-action-content p {
    max-width: 440px;
    margin: 0 auto;
    color: #40516c;
    font-size: 15px;
    line-height: 1.62;
}

.academy-action-benefits {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-top: 34px;
}

.academy-benefit {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #122e5d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
}

.academy-benefit-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border: 1px solid rgba(26, 93, 185, .09);
    border-radius: 11px;
    color: #0965dc;
    background: rgba(255, 255, 255, .80);
    box-shadow: 0 6px 15px rgba(7, 39, 89, .08);
    font-size: 23px;
}

.academy-admission-card .academy-benefit-icon {
    color: #df9800;
    border-color: rgba(224, 158, 20, .10);
}

.academy-action-button {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 255px;
    max-width: 100%;
    gap: 26px;
    margin: 29px auto 0;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.academy-action-button:hover {
    color: #fff;
    transform: translateY(-2px);
}

.academy-action-button i {
    font-size: 20px;
}

.academy-registration-button {
    background: linear-gradient(135deg, #0a55c9, #1369dd);
    box-shadow: 0 11px 20px rgba(16, 91, 204, .24);
}

.academy-admission-button {
    background: linear-gradient(135deg, #efa909, #dc9200);
    box-shadow: 0 11px 20px rgba(220, 146, 0, .24);
}

.academy-feature-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 26px;
    margin-top: 38px;
    padding: 25px 42px;
    border: 1px solid #e5ebf4;
    border-radius: 15px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 12px 26px rgba(7, 40, 90, .07);
}

.academy-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.academy-feature-item > i {
    color: #1268cf;
    font-size: 36px;
}

.academy-feature-item strong,
.academy-feature-item span {
    display: block;
}

.academy-feature-item strong {
    color: #0c2a5b;
    font-size: 13px;
}

.academy-feature-item span {
    margin-top: 4px;
    color: #60708a;
    font-size: 12px;
    line-height: 1.42;
}

.academy-feature-divider {
    width: 1px;
    height: 48px;
    background: #dce4ef;
}

@media (max-width: 1050px) {
    .academy-action-card {
        padding: 34px 28px;
    }

    .academy-action-benefits {
        gap: 10px;
    }

    .academy-feature-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .academy-feature-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .academy-join-section {
        padding: 62px 0;
    }

    .academy-join-container {
        width: min(100% - 28px, 600px);
    }

    .academy-join-cards {
        grid-template-columns: 1fr;
    }

    .academy-action-card {
        min-height: auto;
        padding: 33px 25px;
    }

    .academy-action-benefits {
        grid-template-columns: 1fr;
        max-width: 270px;
        margin-right: auto;
        margin-left: auto;
    }

    .academy-action-button {
        width: 100%;
    }

    .academy-feature-strip {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .academy-join-dots-left {
        left: -22px;
    }
}
.academy-icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.academy-svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.academy-main-svg {
    width: 34px;
    height: 34px;
}

.academy-benefit-icon .academy-svg {
    width: 25px;
    height: 25px;
}

.academy-rupee {
    display: grid;
    place-items: center;
    color: #df9800;
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
}

.academy-feature-item > .academy-feature-svg {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    color: #1268cf;
}
/* =========================================================
   HERO — PREMIUM VISUAL REFINEMENT
   Paste at the very end of site.css
   ========================================================= */

   .premium-hero {
    isolation: isolate;
    background:
        radial-gradient(circle at 7% 84%, rgba(18, 104, 207, .075), transparent 22%),
        radial-gradient(circle at 88% 20%, rgba(215, 173, 85, .10), transparent 22%),
        linear-gradient(135deg, #fbfdff 0%, #ffffff 48%, #f3f7ff 100%);
}

.premium-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -170px;
    right: -165px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(18, 104, 207, .12);
    border-radius: 50%;
    box-shadow:
        0 0 0 54px rgba(18, 104, 207, .035),
        0 0 0 108px rgba(18, 104, 207, .018);
}

.premium-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -220px;
    left: -185px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(215, 173, 85, .25);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(215, 173, 85, .025);
}

.premium-hero-row {
    min-height: min(790px, calc(100vh - 82px));
    padding-top: 82px;
    padding-bottom: 82px;
}

.premium-eyebrow {
    gap: 10px;
    margin-bottom: 26px;
    padding: 10px 16px;
    border: 1px solid rgba(215, 173, 85, .45);
    border-radius: 50px;
    color: #af780f;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 9px 22px rgba(9, 42, 92, .06);
    font-size: 11px;
    letter-spacing: 1.5px;
}

.premium-eyebrow::before {
    content: "✦";
    color: #d7ad55;
    font-size: 15px;
}

.premium-title {
    max-width: 760px;
    margin-bottom: 28px;
    color: #082653;
    font-size: clamp(48px, 5.1vw, 78px);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -3.5px;
    line-height: 1.05;
}

.premium-title span {
    color: #146bd4;
}

.premium-description {
    max-width: 650px;
    color: #596d8c;
    font-size: 18px;
    line-height: 1.82;
}

.premium-primary-btn {
    min-height: 56px;
    padding: 14px 26px;
    border-radius: 11px;
    background: linear-gradient(135deg, #0d56bd, #1674e6);
    box-shadow: 0 15px 30px rgba(18, 104, 207, .26);
}

.premium-secondary-btn {
    min-height: 56px;
    padding: 14px 24px;
    border-color: #d7e3f3;
    border-radius: 11px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 18px rgba(9, 42, 92, .04);
}

.premium-trust-row {
    margin-top: 42px;
}

.trust-item strong {
    color: #0b2c60;
    font-size: 18px;
}

.trust-item span {
    color: #6b7d97;
}

.trust-divider {
    height: 45px;
    margin: 0 29px;
    background: #d7e3f3;
}

.premium-visual {
    min-height: 600px;
}

.visual-decoration {
    width: 470px;
    height: 470px;
    background:
        radial-gradient(circle, rgba(28, 112, 224, .16), rgba(28, 112, 224, .025) 62%, transparent 70%);
}

.premium-learning-card {
    width: 420px;
    min-height: 490px;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 32px;
    background:
        radial-gradient(circle at 92% 8%, rgba(94, 170, 255, .52), transparent 32%),
        radial-gradient(circle at 8% 100%, rgba(0, 0, 0, .17), transparent 40%),
        linear-gradient(145deg, #061e49 0%, #0b3c83 52%, #1769cd 100%);
    box-shadow:
        0 32px 65px rgba(6, 37, 88, .25),
        inset 0 1px 0 rgba(255, 255, 255, .12);
}

.premium-learning-card::after {
    content: "";
    position: absolute;
    top: 35px;
    right: 34px;
    width: 76px;
    height: 76px;
    opacity: .38;
    background-image: radial-gradient(#b7d2ff 1.6px, transparent 1.6px);
    background-size: 15px 15px;
}

.mini-logo-box {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
}

.learning-badge {
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    letter-spacing: 1.8px;
}

.learning-card-content {
    margin: 52px 0;
}

.gold-label {
    color: #ffdc86;
    font-size: 12px;
    letter-spacing: 1.8px;
}

.learning-card-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.learning-card-content p {
    max-width: 310px;
    color: rgba(255, 255, 255, .80);
    font-size: 15px;
}

.arrow-circle {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .15);
}

.premium-floating-card {
    padding: 18px 20px;
    border-radius: 17px;
    border-color: rgba(220, 231, 247, .95);
    box-shadow: 0 20px 42px rgba(7, 31, 77, .15);
}

.floating-icon {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
    border-radius: 14px;
    background: #eef5ff;
}

.floating-top {
    top: 72px;
    right: -14px;
}

.floating-bottom {
    bottom: 60px;
    left: -14px;
}

@media (max-width: 991px) {
    .premium-hero-row {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .premium-hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .premium-hero-buttons,
    .premium-trust-row {
        justify-content: center;
    }

    .premium-visual {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .premium-hero-row {
        padding-top: 55px;
        padding-bottom: 60px;
    }

    .premium-title {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -2px;
    }

    .premium-description {
        font-size: 16px;
    }

    .premium-hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .premium-primary-btn,
    .premium-secondary-btn {
        justify-content: center;
        width: 100%;
    }

    .premium-visual {
        min-height: auto;
        padding: 35px 0 20px;
    }

    .premium-learning-card {
        width: min(100%, 400px);
        min-height: 450px;
        padding: 32px 28px;
    }

    .learning-card-content h2 {
        font-size: 35px;
    }

    .premium-floating-card {
        display: none;
    }

    .trust-divider {
        margin: 0 15px;
    }
}
/* =========================================================
   PROGRAMS SECTION — COMPACT PREMIUM REFINEMENT
   Paste at the end of site.css
   ========================================================= */

   .premium-programs-section {
    padding: 70px 0 82px;
    background:
        radial-gradient(circle at 4% 12%, rgba(18, 104, 207, .07), transparent 19%),
        radial-gradient(circle at 96% 85%, rgba(215, 173, 85, .08), transparent 18%),
        #ffffff;
}

.premium-programs-section::before {
    width: 290px;
    height: 290px;
    top: -155px;
    left: -125px;
    background: rgba(18, 104, 207, .055);
}

.premium-programs-section::after {
    content: "";
    position: absolute;
    right: 4%;
    top: 64px;
    width: 82px;
    height: 82px;
    opacity: .48;
    pointer-events: none;
    background-image: radial-gradient(#d7ad55 1.6px, transparent 1.6px);
    background-size: 16px 16px;
}

.premium-programs-heading {
    margin-bottom: 40px;
}

.premium-programs-heading h2 {
    max-width: 800px;
    margin: 0 auto 16px;
    color: #09295c;
    font-size: clamp(38px, 3.7vw, 54px);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -1.7px;
    line-height: 1.12;
}

.premium-programs-heading p {
    max-width: 630px;
    color: #62738d;
    font-size: 16px;
    line-height: 1.7;
}

.premium-program-card {
    min-height: 355px;
    padding: 30px 30px 27px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(7, 31, 77, .06);
}

.premium-program-card::before {
    width: 135px;
    height: 135px;
    right: -62px;
    top: -62px;
}

.premium-program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(7, 31, 77, .12);
}

.program-number {
    top: 23px;
    right: 25px;
    font-size: 39px;
}

.premium-program-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 21px;
    border-radius: 16px;
    font-size: 21px;
}

.premium-program-content h3 {
    margin-bottom: 11px;
    color: #0b2b5c;
    font-size: 23px;
}

.premium-program-content p {
    margin-bottom: 20px;
    color: #5d6f8a;
    font-size: 15px;
    line-height: 1.7;
}

.program-link {
    padding-top: 12px;
    border-top: 1px solid #e7eef8;
    font-size: 14px;
}

.featured-program {
    background:
        radial-gradient(circle at 88% 8%, rgba(117, 178, 255, .25), transparent 30%),
        linear-gradient(135deg, #071f4d 0%, #0b3c84 57%, #1468cd 100%);
    box-shadow: 0 18px 40px rgba(7, 31, 77, .18);
}

.featured-program .premium-program-content h3 {
    color: #ffffff;
}

.featured-program .premium-program-content p {
    color: rgba(255, 255, 255, .78);
}

.featured-program .program-link {
    border-top-color: rgba(255, 255, 255, .17);
}

@media (max-width: 991px) {
    .premium-programs-section {
        padding: 62px 0 70px;
    }

    .premium-programs-heading {
        margin-bottom: 32px;
    }

    .premium-program-card {
        min-height: 335px;
    }
}

@media (max-width: 767px) {
    .premium-programs-section {
        padding: 55px 0 62px;
    }

    .premium-programs-heading {
        margin-bottom: 28px;
    }

    .premium-programs-heading h2 {
        font-size: 36px;
    }

    .premium-programs-heading p {
        font-size: 15px;
    }

    .premium-program-card {
        min-height: auto;
        padding: 28px 25px 25px;
    }

    .premium-programs-section::after {
        right: -20px;
        top: 32px;
    }
}
/* =========================================================
   WHY CHOOSE US — COMPACT PREMIUM REFINEMENT
   ========================================================= */

   .premium-why-section {
    padding: 78px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(18, 104, 207, .09), transparent 22%),
        radial-gradient(circle at 91% 86%, rgba(215, 173, 85, .08), transparent 21%),
        linear-gradient(135deg, #f7faff 0%, #ffffff 52%, #f8fbff 100%);
}

.premium-why-section::before {
    content: "";
    position: absolute;
    right: 5%;
    top: 52px;
    width: 78px;
    height: 78px;
    opacity: .5;
    pointer-events: none;
    background-image: radial-gradient(#d7ad55 1.6px, transparent 1.6px);
    background-size: 16px 16px;
}

.premium-why-content {
    max-width: 525px;
}

.premium-why-title {
    margin-bottom: 18px;
    color: #09295c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 3.6vw, 53px);
    font-weight: 700;
    letter-spacing: -1.5px;
}

.premium-why-description {
    margin-bottom: 25px;
    color: #5c6f8b;
    font-size: 16px;
    line-height: 1.75;
}

.why-highlight {
    gap: 17px;
    margin-bottom: 23px;
    padding: 18px 20px;
    border-color: #dce8f7;
    border-radius: 16px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 12px 28px rgba(7, 31, 77, .07);
}

.why-highlight-number {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0a4ca8, #1974df);
    box-shadow: 0 10px 20px rgba(18, 104, 207, .20);
    font-size: 18px;
}

.why-highlight-text strong {
    color: #0b2c5f;
    font-size: 16px;
}

.why-highlight-text span {
    color: #647792;
    font-size: 13px;
}

.why-demo-btn {
    min-height: 52px;
    padding: 13px 22px;
    border-radius: 10px;
}

.why-experience-panel {
    padding: 14px 34px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 8%, rgba(94, 169, 255, .30), transparent 30%),
        linear-gradient(145deg, #061e49 0%, #0a397c 57%, #125dbc 100%);
    box-shadow: 0 25px 55px rgba(7, 31, 77, .20);
}

.why-panel-decoration {
    width: 235px;
    height: 235px;
    top: -118px;
    right: -88px;
}

.why-feature-row {
    grid-template-columns: 34px 56px 1fr;
    gap: 17px;
    padding: 22px 0;
}

.why-feature-number {
    color: rgba(255, 255, 255, .42);
    font-size: 11px;
}

.why-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    color: #ffdd88;
    font-size: 17px;
}

.why-feature-content h3 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 17px;
}

.why-feature-content p {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.6;
}

.why-feature-row:hover .why-feature-icon {
    color: #1268cf;
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .premium-why-section {
        padding: 66px 0;
    }

    .premium-why-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .premium-why-section {
        padding: 55px 0;
    }

    .premium-why-title {
        font-size: 36px;
    }

    .why-experience-panel {
        padding: 10px 22px;
        border-radius: 20px;
    }

    .why-feature-row {
        grid-template-columns: 50px 1fr;
        gap: 14px;
        padding: 20px 0;
    }

    .why-feature-number {
        display: none;
    }
}
/* =========================================================
   ABOUT SECTION — COMPACT PREMIUM REFINEMENT
   ========================================================= */

   .premium-about-section {
    padding: 78px 0;
    background:
        radial-gradient(circle at 94% 15%, rgba(18, 104, 207, .08), transparent 21%),
        radial-gradient(circle at 8% 88%, rgba(215, 173, 85, .07), transparent 19%),
        #ffffff;
}

.about-bg-shape {
    width: 370px;
    height: 370px;
    right: -185px;
    top: -150px;
    background: rgba(18, 104, 207, .055);
}

.premium-about-content {
    max-width: 560px;
}

.premium-about-title {
    margin-bottom: 18px;
    color: #09295c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 3.7vw, 54px);
    font-weight: 700;
    letter-spacing: -1.7px;
}

.premium-about-lead {
    margin-bottom: 14px;
    color: #445c7d;
    font-size: 17px;
    line-height: 1.72;
}

.premium-about-text {
    margin-bottom: 26px;
    color: #687992;
    font-size: 15px;
    line-height: 1.75;
}

.about-highlight-row {
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid #dfe9f6;
    border-radius: 16px;
    background: #fbfdff;
    box-shadow: 0 10px 25px rgba(7, 31, 77, .05);
}

.about-highlight {
    padding: 0 20px;
}

.about-highlight strong {
    color: #0b2c5f;
    font-size: 17px;
}

.about-highlight span {
    color: #677993;
    font-size: 12px;
}

.premium-about-visual {
    min-height: 470px;
}

.about-main-panel {
    width: 90%;
    min-height: 410px;
    padding: 44px 45px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 25px;
    background:
        radial-gradient(circle at 89% 10%, rgba(96, 174, 255, .34), transparent 29%),
        linear-gradient(135deg, #061e49 0%, #0a397d 56%, #1464c7 100%);
    box-shadow: 0 27px 58px rgba(7, 31, 77, .20);
}

.about-main-panel::after {
    width: 190px;
    height: 190px;
    border-width: 34px;
    right: -72px;
    bottom: -87px;
}

.about-panel-number {
    top: 22px;
    right: 32px;
    font-size: 54px;
}

.about-panel-label {
    margin-bottom: 16px;
    color: #ffda85;
    font-size: 11px;
    letter-spacing: 1.7px;
}

.about-main-panel h3 {
    max-width: 420px;
    margin-bottom: 17px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.18;
}

.about-main-panel p {
    max-width: 405px;
    font-size: 14px;
    line-height: 1.7;
}

.about-panel-bottom {
    margin-top: 28px;
}

.about-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .16);
    font-size: 20px;
}

.about-floating-card {
    right: -12px;
    top: 52px;
    min-width: 245px;
    padding: 16px 18px;
    border-radius: 15px;
    box-shadow: 0 17px 38px rgba(7, 31, 77, .15);
}

.about-floating-icon {
    width: 43px;
    height: 43px;
    border-radius: 12px;
    font-size: 18px;
}

.about-floating-card strong {
    color: #0b2c5f;
    font-size: 14px;
}

.about-floating-card span {
    font-size: 12px;
}

@media (max-width: 991px) {
    .premium-about-section {
        padding: 66px 0;
    }

    .premium-about-visual {
        margin-top: 38px;
        min-height: 440px;
    }

    .about-main-panel {
        width: min(90%, 600px);
    }
}

@media (max-width: 767px) {
    .premium-about-section {
        padding: 55px 0;
    }

    .premium-about-title {
        font-size: 36px;
    }

    .about-highlight-row {
        gap: 15px;
        padding: 18px;
    }

    .premium-about-visual {
        min-height: auto;
        padding-top: 20px;
    }

    .about-main-panel {
        width: 100%;
        min-height: 385px;
        padding: 34px 27px;
        border-radius: 21px;
    }

    .about-main-panel h3 {
        font-size: 30px;
    }

    .about-floating-card {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 28px);
        margin: -25px auto 0;
    }
}
/* =========================================================
   LEADERSHIP — COMPACT PREMIUM REFINEMENT
   ========================================================= */

   .leadership-section {
    padding: 78px 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(18, 104, 207, .07), transparent 20%),
        radial-gradient(circle at 93% 83%, rgba(215, 173, 85, .08), transparent 19%),
        #ffffff;
}

.leadership-heading {
    margin-bottom: 38px;
}

.leadership-heading h2 {
    margin: 14px 0 14px;
    color: #09295c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 3.7vw, 54px);
    font-weight: 700;
    letter-spacing: -1.7px;
}

.leadership-heading p {
    color: #61738e;
    font-size: 16px;
    line-height: 1.7;
}

.founder-card {
    padding: 42px 50px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 25px;
    background:
        radial-gradient(circle at 88% 10%, rgba(99, 177, 255, .30), transparent 27%),
        linear-gradient(135deg, #061e49 0%, #0a397c 57%, #1465c9 100%);
    box-shadow: 0 25px 55px rgba(8, 39, 89, .19);
}

.founder-image-wrap {
    max-width: 245px;
    padding: 8px;
    border-radius: 22px;
}

.founder-image {
    border-radius: 16px;
}

.founder-content {
    padding-left: 24px;
}

.leadership-role {
    margin-bottom: 11px;
    color: #ffda85;
    font-size: 11px;
    letter-spacing: 1.7px;
}

.founder-content h3 {
    margin-bottom: 13px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 33px;
    font-weight: 700;
}

.founder-content p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.founder-legacy {
    margin-top: 20px;
    padding-top: 17px;
}

.leadership-team {
    margin-top: 52px;
}

.leadership-team-heading {
    margin-bottom: 28px;
}

.leadership-team-heading h3 {
    color: #09295c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 700;
}

.leader-card {
    min-height: 292px;
    padding: 31px 29px;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(7, 31, 77, .05);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(8, 39, 89, .11);
}

.leader-number {
    top: 21px;
    right: 23px;
    font-size: 36px;
}

.leader-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 15px;
    font-size: 19px;
}

.leader-role {
    margin-bottom: 8px;
    font-size: 10px;
}

.leader-card h4 {
    margin-bottom: 10px;
    color: #0b2c5f;
    font-size: 20px;
}

.leader-card p {
    color: #647792;
    font-size: 14px;
    line-height: 1.65;
}

.leader-card-featured {
    background:
        radial-gradient(circle at 88% 8%, rgba(100, 177, 255, .28), transparent 27%),
        linear-gradient(145deg, #07204c 0%, #0b3d83 58%, #1467ce 100%);
}

@media (max-width: 991px) {
    .leadership-section {
        padding: 66px 0;
    }

    .founder-content {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .leadership-section {
        padding: 55px 0;
    }

    .leadership-heading {
        margin-bottom: 28px;
    }

    .leadership-heading h2 {
        font-size: 36px;
    }

    .founder-card {
        padding: 31px 23px;
        border-radius: 21px;
    }

    .founder-content h3 {
        font-size: 29px;
    }

    .leader-card {
        padding: 28px 24px;
    }
}
/* =========================================================
   PREMIUM LEADERSHIP SECTION
   ========================================================= */

   .leadership-premium-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at 5% 14%, rgba(18, 104, 207, .08), transparent 18rem),
        radial-gradient(circle at 94% 87%, rgba(215, 173, 85, .09), transparent 16rem),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #f8fbff 100%);
}

.leadership-premium-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -170px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(18, 104, 207, .13);
    border-radius: 50%;
    box-shadow:
        0 0 0 48px rgba(18, 104, 207, .035),
        0 0 0 96px rgba(18, 104, 207, .018);
}

.leadership-premium-dots {
    position: absolute;
    top: 210px;
    left: 5%;
    width: 84px;
    height: 84px;
    opacity: .45;
    background-image: radial-gradient(#d7ad55 1.5px, transparent 1.5px);
    background-size: 16px 16px;
}

.leadership-premium-heading {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.leadership-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1268cf;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.leadership-kicker::before {
    content: "✦";
    font-size: 14px;
}

.leadership-kicker-gold {
    color: #f1c75f;
}

.leadership-premium-heading h2 {
    margin: 16px 0 14px;
    color: #09295c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 4vw, 56px);
    font-weight: 700;
    letter-spacing: -1.8px;
    line-height: 1.1;
}

.leadership-premium-heading h2 span {
    color: #146bd4;
}

.leadership-premium-heading p {
    margin: 0;
    color: #62748f;
    font-size: 16px;
    line-height: 1.75;
}

/* Founder feature */

.founder-legacy-feature {
    display: grid;
    grid-template-columns: 310px 1fr;
    max-width: 1120px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 10%, rgba(101, 177, 255, .31), transparent 28%),
        linear-gradient(135deg, #061e49 0%, #0a397d 55%, #1466cb 100%);
    box-shadow: 0 28px 60px rgba(7, 31, 77, .20);
}

.founder-portrait-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 372px;
    padding: 34px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(3, 23, 59, .58), rgba(10, 63, 139, .34));
}

.founder-portrait-panel::before {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -84px;
    width: 210px;
    height: 210px;
    border: 34px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.portrait-label,
.portrait-years {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.portrait-label {
    margin-bottom: 16px;
    color: #f2ca69;
}

.portrait-years {
    margin-top: 16px;
}

.founder-photo-frame {
    position: relative;
    z-index: 1;
    width: 185px;
    height: 185px;
    margin: 0 auto;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
}

.founder-premium-photo {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 26%;
    filter: contrast(1.04) saturate(.82);
}

.founder-story {
    position: relative;
    padding: 55px 60px 48px;
}

.founder-story::after {
    content: "✦";
    position: absolute;
    right: 48px;
    bottom: 35px;
    color: rgba(255, 255, 255, .11);
    font-size: 90px;
}

.founder-story h3 {
    position: relative;
    z-index: 1;
    margin: 11px 0 18px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 3vw, 43px);
    font-weight: 700;
    letter-spacing: -1px;
}

.founder-story blockquote {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 0 20px;
    color: #ffdd8d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.55;
}

.founder-story > p {
    position: relative;
    z-index: 1;
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.75;
}

.founder-foundation {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.founder-foundation span {
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.founder-foundation strong {
    color: #fff;
    font-size: 15px;
}

.founder-foundation i {
    color: #f2ca69;
    font-style: normal;
}

/* Leadership cards */

.leadership-team-intro {
    margin: 65px auto 30px;
    text-align: center;
}

.leadership-team-intro h3 {
    margin: 10px 0 0;
    color: #09295c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(29px, 3vw, 39px);
    font-weight: 700;
}

.leadership-premium-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 23px;
    max-width: 1120px;
    margin: 0 auto;
}

.chairman-profile-card,
.leadership-text-card {
    position: relative;
    min-height: 370px;
    overflow: hidden;
    border: 1px solid #dce8f7;
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 13px 30px rgba(7, 31, 77, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.chairman-profile-card:hover,
.leadership-text-card:hover {
    box-shadow: 0 23px 42px rgba(7, 31, 77, .13);
    transform: translateY(-6px);
}

.chairman-photo-wrap {
    position: relative;
    height: 194px;
    overflow: hidden;
    background: #e9f2ff;
}

.chairman-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(5, 36, 83, .52));
}

.chairman-premium-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 27%;
}

.chairman-role-badge {
    position: absolute;
    z-index: 1;
    right: 16px;
    bottom: 15px;
    padding: 7px 11px;
    border-radius: 50px;
    color: #fff;
    background: rgba(5, 42, 98, .84);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.chairman-profile-content {
    position: relative;
    padding: 25px 26px 27px;
}

.member-number {
    position: absolute;
    top: 21px;
    right: 23px;
    color: #e9f0fa;
    font-size: 37px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.member-role {
    display: block;
    margin-bottom: 9px;
    color: #1268cf;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.chairman-profile-content h4,
.leadership-text-card h4 {
    max-width: 290px;
    margin: 0 0 11px;
    color: #0a2b5f;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.32;
}

.chairman-profile-content h4 small {
    display: block;
    margin-top: 3px;
    color: #59708f;
    font-size: 13px;
    font-weight: 600;
}

.chairman-profile-content p,
.leadership-text-card p {
    margin: 0;
    color: #637793;
    font-size: 13.5px;
    line-height: 1.65;
}

.leadership-text-card {
    padding: 35px 28px 28px;
}

.leadership-text-card::before {
    content: "";
    position: absolute;
    right: -48px;
    top: -48px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(18, 104, 207, .055);
}

.leadership-rector-card {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(circle at 90% 8%, rgba(97, 176, 255, .27), transparent 28%),
        linear-gradient(145deg, #061e49 0%, #0a397d 58%, #1465c9 100%);
}

.leadership-rector-card::before {
    background: rgba(255, 255, 255, .07);
}

.leadership-role-symbol {
    position: relative;
    z-index: 1;
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 27px;
    place-items: center;
    border-radius: 17px;
    color: #1268cf;
    background: #edf5ff;
    font-size: 21px;
    font-weight: 800;
}

.leadership-rector-card .leadership-role-symbol {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .12);
}

.leadership-rector-card .member-number {
    color: rgba(255, 255, 255, .10);
}

.leadership-rector-card .member-role {
    color: #f2ca69;
}

.leadership-rector-card h4 {
    color: #fff;
}

.leadership-rector-card p {
    color: rgba(255, 255, 255, .72);
}

.leadership-card-line {
    position: absolute;
    right: 28px;
    bottom: 49px;
    left: 28px;
    height: 1px;
    background: #e3ebf6;
}

.leadership-rector-card .leadership-card-line {
    background: rgba(255, 255, 255, .16);
}

.leadership-card-note {
    position: absolute;
    right: 28px;
    bottom: 25px;
    left: 28px;
    color: #7a8ba3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leadership-rector-card .leadership-card-note {
    color: rgba(255, 255, 255, .57);
}

@media (max-width: 991px) {
    .founder-legacy-feature {
        grid-template-columns: 250px 1fr;
    }

    .founder-story {
        padding: 42px 38px;
    }

    .leadership-premium-grid {
        grid-template-columns: 1fr 1fr;
    }

    .chairman-profile-card {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 245px 1fr;
    }

    .chairman-photo-wrap {
        height: 100%;
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    .leadership-premium-section {
        padding: 62px 0;
    }

    .founder-legacy-feature,
    .leadership-premium-grid,
    .chairman-profile-card {
        display: block;
    }

    .founder-portrait-panel {
        min-height: auto;
        padding: 29px;
        text-align: center;
    }

    .founder-story {
        padding: 34px 25px;
    }

    .founder-story h3 {
        font-size: 31px;
    }

    .founder-story blockquote {
        font-size: 17px;
    }

    .leadership-team-intro {
        margin-top: 48px;
    }

    .leadership-premium-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .chairman-photo-wrap {
        height: 235px;
    }

    .leadership-text-card,
    .chairman-profile-card {
        min-height: 330px;
    }
}