:root {
    --gold-1: #ffd200;
    --gold-2: #c89200;
    --cyan-a: #00f2fe;
    --cyan-b: #4fe1fe;
    --accent-a: #2db08d;
    --accent-b: #f6c200;
    --deep-1: #02142e;
    --deep-2: #0d2260;
    --deep-3: #3b2ca0;
    --deep-4: #601bae;

    --text-soft: rgba(255, 255, 255, 0.9);

    /* shared muted (last value wins) */
    --muted: #333;

    --navbar-height: 72px;

    --yellow: #ffca00;
    --black: #0b0b0b;
    --soft-black: #0f0f0f;
    --white: #fff;

    --card-radius: 14px;
    --pill-radius: 18px;
    --container-w: 820px;
    --font: "Poppins", system-ui;
}

html,
body {
    overflow-x: clip;
    /* modern, safer alternative */
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    /* background: linear-gradient(90deg, var(--deep-1), var(--deep-3), var(--deep-4)); */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Make navbar fixed to viewport */
#site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    z-index: 99999;
    /* very high so it sits above everything */
    background: rgb(255, 255, 255);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    transition: all .32s ease;
}

/* Ensure the content below doesn't slide under the fixed nav */
.hero-wrap,
.section-E,
main {
    /* Add top padding equal to navbar height (adjust if needed) */
    padding-top: calc(var(--navbar-height) + 16px);
    /* If a container already has top padding, adjust accordingly instead */
}

/* If you want the navbar to get a stronger background on scroll (optional) */
#site-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    color: #071225;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.navbar .logo {
    width: 100px;
    height: 40px;
    background: transparent;
    object-fit: contain;
}

.btn-book {
    background: linear-gradient(180deg, #00d2ff, #007aff);
    color: #fff;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Shimmer overlay */
.btn-book::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2.5s infinite;
}

/* Hover effect */
.btn-book:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 122, 255, 0.4);
}

.hero-section {
    background: linear-gradient(140deg, #0A1E35 0%, #0F273D 50%, #071624 100%);
    background-size: cover;
    color: #fff;
    overflow: visible;
    padding: 0px 0px 0px 70px;
    position: relative;
}

/* ✅ Mobile Background */
@media (max-width: 768px) {
    .hero-section {
        padding: 0px 0px 0px 0px;
    }

    .hero-wrap {
        padding: 12px 10px 10px 10px !important;
        background: linear-gradient(140deg, #0A1E35 0%, #0F273D 50%, #071624 100%);
        background-size: cover;
        min-height: 900px;
    }
}

/* Optional — if you want slightly darker overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

.hero-section>* {
    position: relative;
    z-index: 1;
}

/* HERO AREA */
.hero-wrap {
    margin: auto;
    position: relative;
    padding: 30px 8px 10px 4px;
    min-height: 720px;
    overflow: visible;
}

.stat-badge {
    background: linear-gradient(90deg, #1e9c96, #ffbb00);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-badge i {
    font-size: 1.5rem;
}

/* Hover effect */
.stat-badge:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #1e9c96, #ffbb00);
    color: #ffffff;
}

/* Tablet view */
@media (max-width: 992px) {
    .stat-badge {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }

    .stat-badge i {
        font-size: 1.3rem;
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .stat-badge {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        text-align: center;
        flex-direction: row;
        justify-content: center;
        white-space: normal;
        line-height: 1.4;
    }

    .stat-badge i {
        font-size: 1.2rem;
    }
}

/* Extra small (for very small screens) */
@media (max-width: 480px) {
    .stat-badge {
        font-size: 0.95rem;
        padding: 0.45rem 0.9rem;
    }

    .stat-badge i {
        font-size: 1.1rem;
    }
}

/* Top-center name + phrases (floating) */
.top-center {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: min(95%, 1100px);
    z-index: 20;
    pointer-events: none;
}

.mentor-name {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 6px 0 8px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: auto;
}

.phrases {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    font-weight: 700;
    color: #ffffff;
    font-size: 25px;
    text-transform: none;
}

.phrase {
    font-style: italic;
    background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phrases .phrase {
    position: relative;
    padding-right: 1px;
}

.phrases .phrase:not(:last-child)::after {
    margin-left: 2px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Main two-column hero content */
.hero-grid {
    display: flex;
    gap: 24px;
    padding: 10px;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 85vh;
}

.hero-left {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 85%;
}

.hero-right {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100%;
    justify-content: flex-end;
    padding-top: 145px !important;
}

@media (max-width: 768px) {
    .hero-right {
        padding-top: 0 !important;
        justify-content: center;
        max-width: 100%;
    }
}

.hero-sub {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.2;
}

.hero-main-title {
    font-size: 72px;
    line-height: 0.95;
    font-weight: 800;
    margin: 6px 0 10px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #f0e400, #00dfd8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-tagline {
    display: inline-block;
    padding: 10px;
    text-wrap: nowrap;
    margin-bottom: 18px;
    font-size: 28px;
    background: linear-gradient(90deg, #f0e400, #00dfd8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-taglinetwo {
    display: inline-block;
    padding: 10px;
    font-weight: 500;
    text-wrap: wrap;
    font-style: italic;
    font-size: 20px;
    background: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-taglinethree {
    display: inline-block;
    padding: 10px;
    font-style: italic;
    font-size: 20px;
    background: linear-gradient(90deg, #f0e400, #00dfd8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-details {
    color: #ffffff;
    font-size: 19px;
    font-style: italic;
    max-width: 760px;
    line-height: 1.7;
}

/* CTA white rounded box on right overlapping image */
.mentor-card {
    position: absolute;
    right: 30px;
    text-align: center;
    bottom: -28px;
    transform: translateY(0);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.96));
    color: #071225;
    padding: 18px 22px;
    border-radius: 20px;
    width: 460px;
    box-shadow: 0 16px 40px rgba(2, 8, 28, 0.24);
    text-align: left;
    z-index: 18;
}

.mentor-card h4 {
    margin: 0 0 8px;
    font-size: 27px;
    font-weight: 800;
    color: #d18d00;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.mentor-card p {
    margin: 0;
    color: #0b1b2b;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

/* portrait (hero) */
.portrait-wrap {
    width: 440px;
    max-width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.portrait {
    display: block;
    width: 520px;
    border-radius: 12px;
    transform: translateY(4%);
    object-fit: cover;
}

/* CTA box inside left column */
.cta-panel {
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 18px;
    width: fit-content;
    box-shadow: 0 14px 36px rgba(2, 8, 28, 0.28);
    color: var(--muted);
    font-weight: 600;
}

.price-line {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
}

.primary-cta {
    display: inline-block;
    margin-top: 12px;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    color: #071225;
    padding: 9px 18px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

/* register ribbon (centered) */
.register-ribbon {
    display: block;
    margin: 46px auto 12px;
    width: min(740px, 86%);
    text-align: center;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 18px;
    color: #071225;
    background: linear-gradient(90deg, #1e9c96, #ffbb00);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.register-ribbon em {
    font-style: normal;
    color: #071225;
    font-weight: 800;
}

/* bottom small details (muted) */
.hero-footline {
    margin-top: 12px;
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 80px;
}

/* sticky footer CTA bar like image */
.sticky-cta {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    color: #071225;
    font-weight: 700;
    padding: 12px 16px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -6px 24px rgba(2, 8, 28, 0.28);
}

.sticky-cta a {
    color: #071225;
    text-decoration: none;
    font-weight: 800;
}

/* mentor tags below portrait */
.mentor-tags {
    margin-top: 18px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    max-width: 420px;
}

.mentor-tags .tag {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sub-tagline-final {
    margin-top: -14px !important;
    font-size: 35px !important;
    margin-bottom: 9px !important;
    background: linear-gradient(190deg, #ff8800, #ff9a00) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.sub-tagline-final-two-update {
    margin-top: -14px !important;
    font-size: 35px !important;
    margin-bottom: 9px !important;
    background: #fff !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* responsive tweaks */
@media (max-width: 1100px) {
    .hero-left {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .hero-right {
        top: 0 !important;
        flex: 0 0 38%;
        max-width: 38%;
    }

    .portrait {
        width: 360px;
    }

    .hero-main-title {
        font-size: 52px;
    }
}

@media (max-width: 880px) {
    .hero-grid {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .top-center {
        top: -8px;
    }

    .hero-main-title {
        font-size: 48px;
        margin: 0px;
    }

    .mentor-name {
        font-size: 15px;
    }

    .sub-tagline {
        font-size: 18px;
        margin-bottom: 8px;
        font-weight: 400;
    }

    .sub-taglinetwo {
        text-wrap: wrap;
        font-style: italic;
        font-size: 15px;
    }

    .sub-tagline-final {
        margin-top: 4px !important;
        font-weight: 500 !important;
        font-size: 18px !important;
        margin-bottom: 9px !important;
        background: linear-gradient(190deg, #ff8800, #ff9a00) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }

    .sub-tagline-final-two-update {
        margin-top: 4px !important;
        font-weight: 500 !important;
        font-size: 18px !important;
        margin-bottom: 9px !important;
        background: #fff !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }

    .sub-taglinethree {
        padding: 10px;
        font-style: italic;
        font-size: 20px;
        background: #ffffff;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* MOBILE: show hero-left first, hero-right second */
@media (max-width: 768px) {
    .hero-grid {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .sub-taglinethree {
        padding: 10px;
        font-style: italic;
        font-size: 15px;
        background: #fff;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-left {
        order: 0;
        max-width: 100%;
        flex: 1 1 100%;
        text-align: center;
    }

    .hero-right {
        top: 0 !important;
        order: 1;
        max-width: 100%;
        flex: 1 1 100%;
        justify-content: center;
        position: relative;
    }

    /* portrait container becomes the anchor for overlay on mobile */
    .portrait-wrap {
        width: 92%;
        max-width: 420px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-bottom: 90px;
    }
}

@media (max-width:480px) {

    .hero-details {
        color: #ffffff;
        font-size: 15px;
    }

    .hero-main-title {
        font-size: 36px;
        margin: 0px;
    }

    .phrases {
        font-size: 15px;
        gap: 8px;
    }

    .mentor-card h4 {
        font-size: 16px;
    }

    .register-ribbon {
        font-size: 16px;
        padding: 12px;
        width: 94%;
    }
}

.webinar-offer {
    text-align: center;
    padding: 20px;
    color: white;
}

.highlight-box {
    display: inline-block;
    background: linear-gradient(180deg, #00d2ff, #007aff);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 14px 28px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 122, 255, 0.4);
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: highlight 5s infinite;
}

.rupees {
    font-size: 25px;
}

.highlight-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2.5s infinite;
}

.highlight-box:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 122, 255, 0.6);
}

/* Scale animation (pulse) */
@keyframes highlight {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.08);
    }

    40% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* ✅ Single shimmer animation used everywhere */
@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.transformation {
    font-size: 45px;
    color: #fff;
}

.offer-details {
    background: linear-gradient(90deg, #ff4d4d, #ff9a00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
}

.offer-details span {
    font-weight: 600;
}

@media (max-width: 768px) {
    .rupees {
        font-size: 16px;
    }

    .webinar-offer {
        text-align: center;
        color: white;
    }

    .highlight-box {
        font-size: 0.85rem;
        padding: 10px 20px;
        max-width: 400px;
    }

    .offer-details {
        font-size: 15px;
        margin-top: -10px;
    }

    .offer-details p {
        font-size: 15px;
        margin-top: 0px;
    }
}

/* ---------- MOBILE / TABLET: place mentor-card over bottom of portrait ---------- */
@media (max-width: 880px) {
    .webinar-offer {
        text-align: center;
        color: white;
    }

    .portrait-wrap {
        width: 92%;
        max-width: 420px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-bottom: 90px;
    }

    .portrait {
        transform: none;
        width: 100%;
        max-width: 420px;
        border-radius: 12px;
        display: block;
        object-fit: cover;
    }

    .mentor-card {
        position: absolute;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        width: calc(100% - 32px);
        max-width: 420px;
        margin: 0;
        text-align: center;
        border-radius: 16px;
        padding: 16px 18px;
        box-shadow: 0 16px 40px rgba(2, 8, 28, 0.20);
        z-index: 40;
    }

    .mentor-card h4 {
        font-size: 16px;
    }

    .mentor-card p {
        font-size: 14px;
        line-height: 1.35;
    }

    .mentor-tags {
        justify-content: center;
    }

    .top-center {
        top: -8px;
    }

    .hero-main-title {
        font-size: 42px;
    }

    .mentor-name {
        font-size: 15px;
    }
}

@media (max-width: 880px) and (orientation: landscape) {
    .hero-right .portrait {
        margin-top: 29px !important;
    }

    .phrases {
        display: inline-flex;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        pointer-events: auto;
        font-weight: 700;
        color: #fff;
        font-size: 15px;
        text-transform: none;
    }
}

@media (max-width: 480px) {
    .transformation {
        font-size: 24px;
        color: #fff;
        margin-bottom: 15px;
    }

    .mobile-2 {
        text-wrap: nowrap;
    }

    .rupees {
        font-size: 19px;
    }

    .webinar-offer {
        text-align: center;
        color: white;
    }

    .portrait-wrap {
        padding-bottom: 110px;
    }

    .mentor-card {
        bottom: 12px;
        width: calc(100% - 28px);
        padding: 12px 14px;
        border-radius: 12px;
    }

    .hero-main-title {
        font-size: 34px;
    }

    .hero-sub {
        margin-top: 35px;
        font-size: 25px;
        background: #fff;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 400;
    }

    .phrases {
        font-size: 15px;
        gap: 8px;
    }

    .mentor-card h4 {
        font-size: 15px;
    }

    .register-ribbon {
        font-size: 16px;
        padding: 12px;
        width: 94%;
    }
}

.hero-img {
    width: 95%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .hero-img {
        max-width: 50%;
        margin: 0 auto;
        z-index: 999;
    }
}

.strike-gradient {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #ff4d4d, #ff9a00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strike-gradient::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    /* background: linear-gradient(90deg, #ff4d4d, #ff9a00); */
    transform: translateY(-50%);
}

.mentor-hero {
    font-family: var(--font);
    padding: 64px 20px 0px;
    display: flex;
    justify-content: center;
}

.mentor-inner {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    text-align: center;
}

/* Portrait + arc (mentor section) */
.portrait-wrap {
    position: relative;
    display: block;
    width: 420px;
    margin: 0 auto 28px;
    height: 220px;
}

.mobile-view-paragraph {
    font-size: 15px;
    font-weight: 700;
}

.arc-bg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 320px;
    height: 274px;
    border-radius: 50% 50% 0 0;
    z-index: 1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.portrait {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -110px;
    width: 330px;
    z-index: 2;
    object-fit: cover;
    border-radius: 6px;
}

.portrait-text {
    margin-top: 340px;
    z-index: 3;
    position: relative;
}

.portrait-text .name {
    margin: 0;
    font-size: 18px;
    letter-spacing: .6px;
    color: #111;
    font-weight: 700;
}

.portrait-text .roles {
    margin: 8px 24px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

/* CTA Card */
.cta-card {
    margin: 18px auto 0;
    background: var(--white);
    color: #fff;
    border-radius: var(--card-radius);
    box-shadow: 0 18px 30px rgba(16, 16, 16, 0.18);
    overflow: visible;
    position: relative;
    max-width: 460px;
    text-align: center;
}

.cta-top {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -36px;
    width: calc(100% - 80px);
    pointer-events: none;
    z-index: 3;
}

.cta-pill {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: var(--yellow);
    color: var(--black);
    padding: 18px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    pointer-events: auto;
}

.cta-card::before {
    left: 22px;
}

.cta-card::after {
    right: 22px;
}

.cta-body {
    padding: 34px 16px 15px;
}

.cta-copy {
    font-size: 15px;
    margin: 0 0 10px;
    color: #000000;
    line-height: 1.6;
    max-width: 500px;
}

.btn-register {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform .12s ease, box-shadow .12s ease;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

/* Responsive (mentor section) */
@media (max-width: 900px) {
    .portrait-wrap {
        width: 360px;
        height: 360px;
    }

    .arc-bg {
        width: 360px;
        height: 360px;
    }

    .portrait {
        width: 270px;
        top: -26px;
    }

    .portrait-text {
        margin-top: 300px;
    }

    .cta-card::before,
    .cta-card::after {
        width: 42px;
        height: 42px;
        top: -8px;
        border-radius: 10px;
    }

    .cta-top {
        top: -32px;
        width: calc(100% - 60px);
    }

    .cta-pill {
        font-size: 16px;
        padding: 14px 16px;
    }

    .cta-body {
        padding: 28px 28px 2px 28px;
    }

    .cta-copy {
        font-size: 14px;
        margin-bottom: 18px;
    }
}

@media (max-width: 520px) {
    .mentor-inner {
        padding: 0 10px;
    }

    .portrait-wrap {
        width: 360px;
        height: 300px;
        margin-bottom: 8px;
    }

    .arc-bg {
        width: 300px;
        height: 320px;
    }

    .portrait {
        width: 300px;
        top: -48px;
    }

    .portrait-text {
        margin-top: 230px;
    }

    .portrait-text .roles {
        font-size: 13px;
        margin: 8px 8px 0;
    }

    .cta-card {
        margin-top: 8px;
        max-width: 300px;
    }

    .cta-top {
        top: -28px;
        width: calc(100% - 34px);
    }

    .cta-pill {
        max-width: 90%;
        font-size: 15px;
        padding: 12px 12px;
        border-radius: 10px;
    }

    .cta-body {
        padding: 28px 18px 5px;
    }

    .cta-copy {
        font-size: 14px;
        padding: 0px;
    }

    .btn-register {
        padding: 12px 18px;
        font-size: 14px;
        border-radius: 10px;
    }
}

.mobile-tagline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.mobile-tagline p {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    margin: 5px 0;
}

.nowrap-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.title {
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}

.portrait-luminosity {
    max-width: 550px;
    width: 100%;
    margin-top: -170px;
    height: auto;
}


.portrait-luminosity.loaded {
    opacity: 1;
    transform: translateY(0);
}

.text-gold-gradient {
    background: linear-gradient(90deg, #f0e400, #00dfd8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .portrait-luminosity {
        max-width: 550px;
        width: 100%;
        height: auto;
        margin-top: -95px;
    }

    .transformation {
        color: #fff;
    }

    .title {
        font-weight: 500 !important;
        color: #fff;
        line-height: 1.15;
        font-size: 20px;
    }

    .gradient-color-unleash {
        background: linear-gradient(90deg, #f0e400, #00dfd8) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        font-weight: 600 !important;
    }

    .text-gold-gradient {
        background: linear-gradient(90deg, #f0e400, #00dfd8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        font-size: 30px;
    }
}