    :root {
        /* Core colours */
        --primary: #b32121;
        --primary-dark: #630000;
        --accent: #fcbf49;
        --bg: #fdf7f2;
        --bg-alt: #ffffff;
        --text-main: #222222;
        --text-muted: #666666;
        --header-space: 72px;
        --radius: 0.6rem;
        --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        --transition: 0.3s ease;
    }

    * {
        box-sizing: border-box;
    }

    /* Prevent accidental horizontal scrolling from positioned elements */
    html {
        overflow-x: hidden;
    }

    body {
        margin: 0;
        padding-top: var(--header-space);
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        color: var(--text-main);
        background: var(--bg);
        overflow-x: hidden;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    h1,
    h2,
    h3,
    h4 {
        margin: 0;
        font-weight: 600;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 2000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    }

    .nav {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        gap: 3.75rem;
    }

    .hamburger {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary);
        padding: 5px;
    }

    .logo {
        font-family: "Montserrat", system-ui, sans-serif;
        font-weight: 700;
        font-size: 1.2rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .logo-black {
        color: #000000;
    }

    .logo-red {
        color: var(--primary);
    }

    .nav ul {
        list-style: none;
        display: flex;
        gap: 1.6rem;
        margin: 0;
        padding: 0;
    }

    .nav ul li {
        cursor: pointer;
        font-size: 0.9rem;
        position: relative;
        padding-bottom: 6px;
        display: inline-block;
    }

    /* Underline that grows from center: use a pseudo-element */
    .nav ul li::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
        border-radius: 2px;
        pointer-events: none;
        opacity: 0.95;
    }

    .nav ul li:hover::after,
    .nav ul li:focus::after,
    .nav ul li.active::after {
        transform: scaleX(1);
    }

    /* Nav mentor form */
    .nav-mentor-form {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
    }

    .nav-mentor-form input {
        padding: 8px 10px;
        border-radius: 999px;
        border: 1px solid rgba(0, 0, 0, 0.18);
        font-size: 0.85rem;
        min-width: 140px;
    }

    .nav-mentor-form button {
        padding: 6px 16px;
        border-radius: 8px;
        border: none;
        font-weight: 600;
        font-size: 0.7rem;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #fff;
        cursor: pointer;
        transition: var(--transition);
        white-space: nowrap;
    }

    .nav-mentor-form button:hover {
        box-shadow: 0 12px 28px rgba(179, 33, 33, 0.3);
        transform: translateY(-2px);
    }

.nav-cta-btn {
    padding: 8px 14px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(179,33,33,0.12);
    white-space: nowrap;
}

.nav-cta-btn:hover {
    box-shadow: 0 14px 32px rgba(179,33,33,0.22);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-cta-btn {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
}

/* Mobile adjustments: show hamburger at top-right and hide logo image */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        z-index: 3000;
        font-size: 1.2rem;
        background: none;
        border: none;
    }

    /* keep logo text but hide the large image on mobile to save space */
    .logo img {
        display: none;
    }

    /* Hide full nav on mobile; hamburger will toggle it */
    #navMenu {
        display: none;
    }

    /* Prevent nav items wrapping and tighten header padding */
    .nav {
        flex-wrap: nowrap;
        padding: 8px 12px;
        align-items: center;
    }
}

/* Prevent hamburger overlapping CTA on small screens */
@media (max-width: 768px) {
    /* Reserve space on the right so the CTA shifts left */
    .nav-right {
        margin-right: 44px; /* smaller reserve so CTA sits a bit closer to hamburger */
    }

    /* If the CTA is too wide on small screens, slightly reduce its padding */
    .nav-cta-btn {
        padding-left: 10px;
        padding-right: 14px;
        min-width: 0;
    }

    /* Make sure the nav itself doesn't accidentally hide behind header elements */
    .nav {
        position: relative;
    }
}

    /* Hero */
    .hero {
        display: grid;
        max-width: 1200px;
        margin: 0 auto;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        padding: 4rem 1rem 5rem;
        gap: 2rem;
        align-items: center;
        position: relative;
        text-align: center;
    }

    /* .hero::before {
      content: "";
      position: absolute;
      top: -100px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(252, 191, 73, 0.4), transparent 70%);
      animation: pulse 6s infinite;
      z-index: -1;
    } */

    @keyframes pulse {
        0% {
            transform: scale(0.9);
        }

        50% {
            transform: scale(1);
        }

        100% {
            transform: scale(0.9);
        }
    }

    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content h1 span {
        background: linear-gradient(90deg, var(--primary), #00b0e5);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-muted);
        max-width: 520px;
        margin: 0 auto 1.5rem;
    }

    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1rem;
        justify-content: center;
    }

    .btn-main {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #fff;
        padding: 12px 22px;
        border: none;
        border-radius: 999px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-main:hover {
        box-shadow: 0 14px 32px rgba(179, 33, 33, 0.28);
        transform: translateY(-2px);
    }

    .btn-outline {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        color: #fff;
        padding: 12px 22px;
        border: none;
        border-radius: 999px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-outline:hover {
        background: var(--primary-dark);
        color: #fff;
        box-shadow: 0 14px 32px rgba(179, 33, 33, 0.28);
        transform: translateY(-2px);
    }

    .hero-image {
        text-align: center;
        position: relative;
    }

    .hero-image img {
        width: 90%;
        max-width: 420px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    /* Sections */
    section {
        padding: 2rem 1rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 0.6rem;
    }

    .section-header .tag {
        font-size: 0.85rem;
        color: var(--primary-dark);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 0.3rem;
        position: relative;
        display: inline-block;
        padding: 0 1rem;
        z-index: 1;
    }

    /* Faded horizontal lines on both sides of the small 'tag' label */
    .section-header .tag::before,
    .section-header .tag::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 250px;
        height: 2px;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .section-header .tag::before {
        right: 100%;
        margin-right: 12px;
        background: linear-gradient(to left, rgb(116, 0, 0), transparent);
    }

    .section-header .tag::after {
        left: 100%;
        margin-left: 12px;
        background: linear-gradient(to right, rgb(124, 0, 0), transparent);
    }

    @media (max-width: 480px) {
        .section-header .tag::before,
        .section-header .tag::after {
            width: 90px;
            margin-left: 8px;
            margin-right: 8px;
        }
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 1rem;
        color: var(--text-muted);
        max-width: 720px;
        margin: 0 auto 1rem; /* add space below the descriptive text */
    }

    /* About section */
    .about {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        /* row-gap then column-gap: increase vertical spacing, reduce horizontal spacing */
        gap: 2rem 1.25rem;
        align-items: center;
        text-align: center;
        margin-top: 1.25rem; /* adds space between the section header text and the image */
    }

    .about-image {
        position: relative;
    }

    .about-image::after {
        content: "";
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(252, 191, 73, 0.4), transparent 70%);
        border-radius: 50%;
        z-index: -1;
        animation: pulse 5s infinite;
    }

    .about-image img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
    }

    /* On wider screens leave more space between image and text */
    @media (min-width: 900px) {
        .about-text {
            text-align: left;
            padding-left: 0.6rem; /* reduce horizontal gap between image and text */
        }
    }

    .about-text strong {
        color: var(--primary);
    }

    /* Center the 'who' list block and keep list readable */
    .who-list {
        text-align: center;
    }

    .who-list ul {
        display: inline-block;
        margin: 0;
        padding-left: 1rem; /* keep a little indent for bullets */
        text-align: left; /* keep list items readable while the block is centered */
    }


    /* Pain points */
    .pain-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.6rem;
    }

    .pain-card {
        background: var(--bg-alt);
        border-radius: var(--radius);
        padding: 1.4rem 1.2rem;
        box-shadow: var(--shadow);
        transform: translateY(10px);
        opacity: 0;
        animation: fadeUp 0.6s forwards;
        transition: transform var(--transition), box-shadow var(--transition);
        text-align: center;
    }

    .pain-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    }

    .pain-card:nth-child(odd) {
        animation-delay: 0.2s;
    }

    .pain-card:nth-child(even) {
        animation-delay: 0.4s;
    }

    .pain-card h3 {
        margin-bottom: 0.5rem;
        color: var(--primary-dark);
    }

    .pain-card p {
        font-size: 0.88rem;
        color: var(--text-muted);
    }

    @keyframes fadeUp {
        0% {
            opacity: 0;
            transform: translateY(12px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Feature cards section */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.6rem;
        margin-top: 1.25rem; /* create breathing room between header text and cards */
    }

    .feature-card {
        background: var(--bg-alt);
        border-radius: var(--radius);
        padding: 1.6rem 1.4rem 1.8rem;
        box-shadow: var(--shadow);
        position: relative;
        transition: transform var(--transition), box-shadow var(--transition);
        text-align: center;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    }

    .feature-card .icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(179, 33, 33, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: var(--primary);
        margin: 0 auto 1rem;
    }

    .feature-card h3 {
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .feature-card button {
        background: var(--primary);
        color: #fff;
        border: none;
        padding: 8px 16px;
        border-radius: 999px;
        font-size: 0.85rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .feature-card button:hover {
        background: var(--primary-dark);
    }

    /* Flow-grid: ensure four cards sit on the same centered row on wide screens */
    .flow-grid {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        justify-content: center;
        /* keep all cards on one row when there's enough space */
        flex-wrap: nowrap;
        margin-top: 1rem;
    }

    /* Distribute available width evenly between 4 cards (subtract gaps)
       and cap each card to a reasonable maximum for visual consistency. */
    .flow-grid .card {
        flex: 0 0 calc((100% - (3 * 1.25rem)) / 4);
        max-width: calc((100% - (3 * 1.25rem)) / 4);
    }

    /* On narrower viewports, allow wrapping and use two-per-row or full width */
    @media (max-width: 1100px) {
        .flow-grid {
            flex-wrap: wrap;
        }
        .flow-grid .card {
            flex: 0 0 48%;
            max-width: 48%;
        }
    }

    @media (max-width: 620px) {
        .flow-grid .card {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    /* Batch table */
    .table-wrap {
        display: flex;
        justify-content: center;
        padding: 1.2rem 1rem;
    }

    .table-wrap table {
        width: 100%;
        max-width: 920px;
        border-collapse: collapse;
        box-shadow: 0 12px 30px rgba(0,0,0,0.06);
        border-radius: 10px;
        overflow: hidden;
    }

    .table-wrap thead th {
        background: rgba(179,33,33,0.06);
        color: var(--primary-dark);
        text-align: left;
        padding: 14px 18px;
        font-weight: 600;
    }

    .table-wrap tbody td {
        padding: 12px 18px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        font-size: 0.95rem;
    }

    .table-wrap tbody tr:nth-child(even) {
        background: #fbfbfb;
    }

    .table-wrap td .pill {
        display: inline-block;
        background: rgba(179,33,33,0.08);
        color: var(--primary-dark);
        padding: 4px 8px;
        border-radius: 999px;
        font-size: 0.8rem;
    }

    @media (max-width: 640px) {
        .table-wrap table { width: 100%; }
        .table-wrap thead th, .table-wrap tbody td { padding: 10px 12px; font-size: 0.9rem; }
    }

    /* Timeline */
    .timeline {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
        position: relative;
    }

    .timeline::before {
        content: "";
        position: absolute;
        left: 28px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(0, 0, 0, 0.1);
    }

    .timeline-item {
        padding-left: 60px;
        position: relative;
    }

    .timeline-item::before {
        content: "";
        position: absolute;
        left: 22px;
        top: 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--primary);
    }

    .timeline-item h3 {
        margin-bottom: 0.3rem;
        color: var(--primary-dark);
    }

    .timeline-item p {
        font-size: 0.88rem;
        color: var(--text-muted);
    }

    /* Testimonial section */
    .testimonials {
        background: #fff8f1;
        border-radius: var(--radius);
        padding: 3rem 2rem;
        box-shadow: var(--shadow);
        overflow: hidden;
        position: relative;
        text-align: center;
    }

    .testimonial-slider {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        gap: 5rem;
        padding-bottom: 1rem;
        justify-content: center;
    }

    .testimonial-card {
        flex: 0 0 300px;
        scroll-snap-align: center;
        background: var(--bg-alt);
        border-radius: var(--radius);
        padding: 1.4rem;
        box-shadow: var(--shadow);
        position: relative;
        text-align: left;
    }

    .testimonial-card::after {
        content: "\201C";
        position: absolute;
        top: -10px;
        left: 4px;
        font-size: 4rem;
        color: rgba(179, 33, 33, 0.15);
    }

    .testimonial-card p {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 0.8rem;
    }

    .testimonial-card strong {
        display: block;
        font-size: 0.85rem;
        color: var(--primary-dark);
    }

    /* Carousel arrows (desktop) */
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary);
        color: #fff;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .carousel-btn:hover {
        background: var(--primary-dark);
    }

    .carousel-btn.prev {
        left: 12px;
    }

    .carousel-btn.next {
        right: 12px;
    }

    /* Hide arrows on small screens; mobile will use touch/swipe */
    @media (max-width: 480px) {
        .carousel-btn {
            display: none;
        }
    }

    /* Floating action buttons (WhatsApp left, Call right) */
    .fab {
        position: fixed;
        bottom: 18px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        cursor: pointer;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        z-index: 1300;
        transition: transform var(--transition), box-shadow var(--transition);
        text-decoration: none;
    }

    .fab:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    }

    .fab.whatsapp {
        left: 16px;
        background: #94ffbb;
    }

    .fab.call {
        right: 16px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    }

    .fab svg {
        width: 22px;
        height: 22px;
        display: block;
    }

    /* Language toggle button (fixed below header on the right) */
    .lang-toggle-wrapper {
        position: fixed;
        top: calc(var(--header-space) + 8px);
        /* sits just below the fixed header */
        right: 16px;
        z-index: 2200; /* above header so button remains clickable on desktop */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lang-toggle {
        --lang-translate: -52px; /* default visual offset (keeps previous positioning) */
        background: #fff;
        color: var(--text-main);
        border: 1px solid rgba(0, 0, 0, 0.212);
        padding: 8px 12px;
        border-radius: 4px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.055);
        cursor: pointer;
        margin-top: 0;
        transform: translateY(var(--lang-translate));
        font-weight: 700;
        letter-spacing: 0.04em;
        transition: transform 180ms cubic-bezier(.2,.9,.2,1), box-shadow 180ms ease, background-color 180ms ease;
        will-change: transform;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 2201; /* ensure button itself sits above header overlay */
    }

    /* subtle hover that composes with the visual offset (uses CSS variable) */
    .lang-toggle:hover {
        transform: translateY(calc(var(--lang-translate) - 4px));
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
        background-color: rgba(0,0,0,0.02);
    }

    /* active / pressed state (also useful for touch when toggled) */
    .lang-toggle:active,
    .lang-toggle.is-active {
        transform: translateY(calc(var(--lang-translate) - 2px)) scale(0.998);
        box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    }

    @media (max-width: 480px) {
        .lang-toggle-wrapper {
            top: calc(var(--header-space) - 8px);
            right: 12px;
        }

        .lang-toggle {
            --lang-translate: 0; /* remove visual offset on small screens but keep transforms composable */
            padding: 6px 10px;
            font-size: 0.85rem;
            transform: translateY(var(--lang-translate));
            margin-top: 10px;
        }
    }

    /* Reduce size on very small screens */
    @media (max-width: 360px) {
        .fab {
            width: 48px;
            height: 48px;
        }

        .fab svg {
            width: 20px;
            height: 20px;
        }
    }

    /* Error notification */
    .error-notification {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        border-radius: var(--radius);
        padding: 2.5rem 2rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        z-index: 3000;
        text-align: center;
        max-width: 400px;
        width: 90%;
        animation: slideUp 0.5s ease;
        border-left: 4px solid #e74c3c;
    }

    .error-notification h2 {
        color: #e74c3c;
        margin-bottom: 0.5rem;
        font-size: 1.6rem;
    }

    .error-notification p {
        color: var(--text-muted);
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .error-notification .error-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(231, 76, 60, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 2rem;
        color: #e74c3c;
    }

    /* FAQ section */
    .faq {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: var(--bg-alt);
        margin-bottom: 1rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .faq-item summary {
        padding: 1rem 1.2rem;
        cursor: pointer;
        font-weight: 600;
        color: var(--primary-dark);
        list-style: none;
    }

    .faq-item summary::marker,
    .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .faq-item p {
        padding: 0 1.2rem 1rem;
        font-size: 0.88rem;
        color: var(--text-muted);
    }

    /* CTA final with animated gradient */
    .cta {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        background-size: 200% 200%;
        color: #fff;
        padding: 3rem 2rem;
        text-align: center;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        animation: ctaGlow 10s ease-in-out infinite;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    /* Alumni / Achievers section */
    .alumni {
        padding: 0.5rem 1rem;
        max-width: 1200px;
        margin: 0 auto 1.5rem;
    }

    .alumni-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.2rem;
        align-items: start;
        justify-items: center;
    }

    .alumni-card {
        text-align: center;
        transition: transform 220ms var(--transition), box-shadow 220ms var(--transition);
        will-change: transform;
    }

    .alumni-card img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        border: 6px solid #fff;
        box-shadow: 0 10px 26px rgba(0,0,0,0.12);
        transition: transform 220ms var(--transition), box-shadow 220ms var(--transition);
        display: block;
    }

    .alumni-card:hover img {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 20px 40px rgba(0,0,0,0.16);
    }

    .alumni-name {
        margin-top: 0.5rem;
        font-weight: 600;
        font-size: 0.85rem;
    }

    /* Highlighted name style (as requested) */
    .highlight {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 10px;
        background: linear-gradient(90deg, var(--primary), var(--primary-dark));
        color: white;
        box-shadow: 0 6px 18px rgba(179,33,33,0.06);
    }


    .cta::before {
        content: "";
        position: absolute;
        width: 200%;
        height: 200%;
        top: -50%;
        left: -50%;
        background: radial-gradient(circle, #c2524e 0%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
        animation: spin 20s linear infinite;
        z-index: -1;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .cta h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #ffd8c8;
    }

    .cta .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer {
        text-align: center;
        padding: 2rem 1rem;
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    /* Modal styles (unchanged, kept for future use if needed) */
    .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 2000;
    }

    .modal.active {
        display: flex;
    }

    .modal-content {
        background: var(--bg-alt);
        border-radius: var(--radius);
        max-width: 500px;
        width: 90%;
        padding: 2rem;
        box-shadow: var(--shadow);
        position: relative;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-content h3 {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    .modal-content p {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 1rem;
    }

    .close-modal {
        position: absolute;
        top: 10px;
        right: 14px;
        font-size: 1.4rem;
        color: var(--primary);
        cursor: pointer;
    }

    .modal form input,
    .modal form select,
    .modal form textarea {
        width: 100%;
        margin-bottom: 0.8rem;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        font-size: 0.9rem;
    }

    .modal form button {
        width: 100%;
        background: var(--primary);
        color: #fff;
        padding: 10px;
        border-radius: 8px;
        border: none;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }

    .modal form button:hover {
        background: var(--primary-dark);
    }

    .thank-you-notification {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        border-radius: var(--radius);
        padding: 2.5rem 2rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        z-index: 3000;
        text-align: center;
        max-width: 400px;
        width: 90%;
        animation: slideUp 0.5s ease;
    }

    .thank-you-notification h2 {
        color: var(--primary);
        margin-bottom: 0.5rem;
        font-size: 1.6rem;
    }

    .thank-you-notification p {
        color: var(--text-muted);
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .thank-you-notification .checkmark {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(179, 33, 33, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 2rem;
        color: var(--primary);
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translate(-50%, -40%);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }

    .notification-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 2999;
        display: none;
    }

    .notification-overlay.active {
        display: block;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
        .nav {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            padding: 8px 12px;
            gap: 0.65rem;
        }

        .logo {
            font-size: 1rem;
            order: 1;
            justify-items: center;
        }

        .nav-right {
            order: 2;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-left: auto;
        }

        .hamburger {
            display: block;
            order: 3;
        }

        .nav ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            width: 100%;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-top: 0.5rem;
            padding: 1rem 0;
            z-index: 1000;
        }

        .nav ul.active {
            display: flex;
            z-index: 1201;
        }

        .nav ul li {
            width: 100%;
            text-align: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav ul li:last-child {
            border-bottom: none;
        }

        .nav-mentor-form {
            order: 3;
            margin-left: auto;
        }

        .nav-mentor-form input {
            display: none;
        }

        .nav-mentor-form button {
            font-size: 0.85rem;
            padding: 6px 12px;
        }

        .hero {
            padding-top: 2rem;
            padding-bottom: 3rem;
            grid-template-columns: 1fr;
            text-align: center;
            gap: 1rem;
        }

        .hero-content h1 {
            font-size: 1.8rem;
        }

        .hero-content p {
            font-size: 0.9rem;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-main,
        .btn-outline {
            width: 100%;
            max-width: 250px;
            font-size: 0.9rem;
            padding: 10px 18px;
        }

        .hero-image img {
            width: 100%;
            max-width: 280px;
        }

        section {
            padding: 2rem 1rem;
        }

        .section-header {
            margin-bottom: 2rem;
        }

        .section-header h2 {
            font-size: 1.6rem;
        }

        .section-header p {
            font-size: 0.9rem;
        }

        .about {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .about-text {
            text-align: left;
        }

        .pain-grid,
        .features-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .pain-card,
        .feature-card {
            padding: 1rem;
        }

        .timeline::before {
            left: 18px;
        }

        .timeline-item {
            padding-left: 48px;
        }

        .timeline-item h3 {
            font-size: 1rem;
        }

        .timeline-item p {
            font-size: 0.85rem;
        }

        .testimonials {
            padding: 2rem 1rem;
        }

        /* Keep testimonials as a horizontal carousel on mobile with snap + touch scrolling */
        .testimonial-slider {
            flex-direction: row;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            gap: 1rem;
            padding-bottom: 0;
            justify-content: flex-start;
        }

        .testimonial-card {
            flex: 0 0 85%;
            max-width: 85%;
            scroll-snap-align: center;
            margin: 0;
        }

        .faq-item summary {
            font-size: 0.9rem;
            padding: 0.8rem 1rem;
        }

        .faq-item p {
            font-size: 0.85rem;
            padding: 0 1rem 0.8rem;
        }

        .cta {
            padding: 2rem 1rem;
        }

        .cta h2 {
            font-size: 1.5rem;
        }

        .cta p {
            font-size: 0.9rem;
        }

        .cta .cta-buttons {
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .cta .cta-buttons button {
            width: 100%;
            max-width: 250px;
            font-size: 0.9rem;
            padding: 10px 18px;
        }

        .footer {
            padding: 1.5rem 1rem;
            font-size: 0.75rem;
        }

        .modal-content {
            width: 95%;
            padding: 1.5rem;
        }
    }

    /* Demo lecture / video grid */
    .demo-lecture .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1rem;
        align-items: start;
        margin-top: 1rem;
    }

    .demo-lecture .video-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }

    .demo-lecture .video-card iframe {
        width: 100%;
        height: 100%;
        aspect-ratio: 16 / 9;
        display: block;
        border: 0;
    }

    @media (max-width: 480px) {
        .demo-lecture .video-grid {
            gap: 0.6rem;
        }
    }

    /* Extra small screens */
    @media (max-width: 480px) {


        .hamburger {
            font-size: 1.3rem;
        }

        .logo {
            font-size: 0.9rem;
        }

        .nav-mentor-form button {
            font-size: 0.8rem;
            padding: 5px 10px;
        }

        .hero {
            padding-top: 1.5rem;
            padding-bottom: 2rem;
            gap: 0.8rem;
            margin-top: 15px;
        }

        .hero-content h1 {
            font-size: 1.6rem;
        }

        .hero-content p {
            font-size: 0.85rem;
        }

        .hero-image img {
            max-width: 250px;
        }

        section {
            padding: 1.5rem 0.8rem;
        }

        .section-header h2 {
            font-size: 1.4rem;
        }

        .section-header p {
            font-size: 0.85rem;
        }

        .pain-card,
        .feature-card {
            padding: 0.8rem;
        }

        .timeline-item {
            padding-left: 40px;
        }

        .timeline::before {
            left: 15px;
        }

        .timeline-item::before {
            left: 9px;
        }

        .testimonials {
            padding: 1.5rem 0.8rem;
        }

        .testimonial-card {
            padding: 1rem;
        }

        .faq-item summary {
            padding: 0.7rem 0.8rem;
            font-size: 0.85rem;
        }

        .faq-item p {
            padding: 0 0.8rem 0.7rem;
            font-size: 0.8rem;
        }

        .cta {
            padding: 1.5rem 0.8rem;
        }

        .cta h2 {
            font-size: 1.3rem;
        }

        .cta p {
            font-size: 0.85rem;
        }

        .cta .cta-buttons button {
            max-width: 220px;
            font-size: 0.85rem;
            padding: 8px 16px;
        }

        .footer {
            padding: 1rem 0.8rem;
            font-size: 0.7rem;
        }

        .modal-content {
            width: 98%;
            padding: 1rem;
        }

        .modal-content h3 {
            font-size: 1.1rem;
        }

        .modal-content p {
            font-size: 0.85rem;
        }
    }