
      

       :root {
            --primary: #ed1c24;
            --primary-dark: #c9151c;
            --secondary: #ef493d;
            --accent: #fff200;

            --dark: #151515;
            --text: #555555;
            --light: #f8f8f8;
            --white: #ffffff;

            --border: #e5e5e5;

            --shadow: 0 12px 35px rgba(0, 0, 0, 0.09);

            --radius: 16px;
            --container: 1180px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "DM Sans", sans-serif;
            color: var(--text);
            background: #fff;
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: "Plus Jakarta Sans", sans-serif;
            color: var(--dark);
            line-height: 1.25;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input,
        select {
            font-family: inherit;
        }

        .container {
            width: min(1180px, calc(100% - 40px));
            margin: auto;
        }

        .section {
            padding: 90px 0;
        }

        .section-light {
            background: var(--light);
        }

        .section-heading {
            max-width: 750px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .section-heading .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            font-size: 13px;
            margin-bottom: 12px;
        }

        .section-heading h2 {
            font-size: clamp(30px, 4vw, 42px);
            margin-bottom: 15px;
        }

        .section-heading p {
            font-size: 17px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            border: none;
            cursor: pointer;
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 700;
            transition: .25s ease;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-orange {
            background: var(--secondary);
            color: #fff;
        }

        .btn-orange:hover {
            background: #d95e16;
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 1px solid rgba(255, 255, 255, .4);
            color: #fff;
            background: transparent;
        }

        .btn-outline:hover {
            background: #fff;
            color: var(--primary);
        }

        /* =========================================================
           HEADER
        ========================================================= */

        .topbar {
            background: var(--dark);
            color: #fff;
            font-size: 13px;
        }

        .topbar-inner {
            min-height: 38px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .topbar span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .topbar-right {
            display: flex;
            gap: 20px;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, .97);
            border-bottom: 1px solid #edf2f3;
            backdrop-filter: blur(12px);
        }

        .nav {
            height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-mark {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--primary);
            color: white;
            display: grid;
            place-items: center;
            font-size: 19px;
            font-weight: 800;
        }

        .logo-text strong {
            display: block;
            font-family: "Plus Jakarta Sans";
            font-size: 20px;
            color: var(--dark);
        }

        .logo-text small {
            color: var(--primary);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .5px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 25px;
            list-style: none;
        }

        .nav-links a {
            font-size: 14px;
            color: var(--dark);
            font-weight: 600;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .mobile-toggle {
            display: none;
            border: none;
            background: transparent;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
        }

        /* =========================================================
           HERO
        ========================================================= */

        .hero {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 90% 15%,
                    rgba(237, 28, 36, 0.10),
                    transparent 30%),
                linear-gradient(135deg,
                    #fffafa 0%,
                    #ffffff 65%);

            padding: 180px 0 85px!important;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.08fr .92fr;
            align-items: center;
            gap: 65px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 13px;
            border-radius: 30px;
            background: rgba(8, 127, 140, .1);
            color: var(--primary);
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .hero h1 {
            font-size: clamp(38px, 5vw, 62px);
            letter-spacing: -2px;
            margin-bottom: 22px;
        }

        .hero h1 span {
            font-weight: 800;
            color: #ff0000;
            ;

        }

        .hero-text {
            max-width: 680px;
            font-size: 18px;
            margin-bottom: 27px;
        }

        .hero-buttons {
            display: flex;
            gap: 13px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .hero-points {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .hero-point {
            padding: 14px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid var(--border);
            box-shadow: 0 8px 25px rgba(16, 42, 67, .05);
        }

        .hero-point i {
            color: var(--primary);
            margin-right: 5px;
        }

        .hero-point strong {
            display: block;
            color: var(--dark);
            font-size: 14px;
        }

        .hero-point span {
            font-size: 12px;
        }

        /* Hero Form */

        .demo-card {
            background: #fff;
            border-radius: 22px;
            padding: 30px;
            box-shadow: 0 25px 70px rgba(16, 42, 67, .14);
            border: 1px solid #edf2f3;
        }

        .demo-card-top {
            margin-bottom: 23px;
        }

        .demo-card-top span {
            color: var(--secondary);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .demo-card-top h3 {
            font-size: 26px;
            margin-top: 5px;
        }

        .demo-form {
            display: grid;
            gap: 13px;
        }

        .input-group {
            position: relative;
        }

        .input-group i {
            position: absolute;
            left: 16px;
            top: 17px;
            color: #8a9aa8;
        }

        .input-group input,
        .input-group select {
            width: 100%;
            height: 52px;
            border: 1px solid var(--border);
            border-radius: 9px;
            padding: 0 15px 0 44px;
            outline: none;
            color: var(--dark);
            background: #fff;
        }

        .input-group input:focus,
        .input-group select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(8, 127, 140, .08);
        }

        .demo-note {
            text-align: center;
            font-size: 12px;
            color: #7b8794;
        }

        /* =========================================================
           INTRO
        ========================================================= */

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 55px;
            align-items: center;
        }

        .intro-content h2 {
            font-size: clamp(30px, 4vw, 42px);
            margin-bottom: 20px;
        }

        .intro-content p {
            margin-bottom: 17px;
        }

        .intro-highlight {
            padding: 20px;
            background: var(--light);
            border-left: 4px solid var(--primary);
            border-radius: 8px;
            margin-top: 25px;
        }

        .intro-image {
            width: 100%;
            height: 100%;
            min-height: 430px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 45px rgba(16, 42, 67, 0.12);
            border: 1px solid var(--border);
        }

        .intro-image img {
            width: 100%;
            height: 100%;
            min-height: 430px;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 900px) {
            .intro-image {
                min-height: 350px;
            }

            .intro-image img {
                min-height: 350px;
            }
        }

        @media (max-width: 650px) {
            .intro-image {
                min-height: 280px;
                border-radius: 15px;
            }

            .intro-image img {
                min-height: 280px;
            }
        }

        /* =========================================================
           EXAM FORMAT
        ========================================================= */

        .table-wrap {
            overflow-x: auto;
            border-radius: 16px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

        .exam-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            min-width: 800px;
        }

        .exam-table th {
            background: var(--dark);
            color: #fff;
            padding: 18px 20px;
            text-align: left;
            font-size: 14px;
        }

        .exam-table td {
            padding: 18px 20px;
            border-bottom: 1px solid var(--border);
            vertical-align: top;
        }

        .exam-table tr:last-child td {
            border-bottom: none;
        }

        .exam-table td:first-child {
            font-weight: 800;
            color: var(--primary);
        }

        .exam-table td strong {
            color: var(--dark);
        }

        .format-note {
            margin-top: 18px;
            background: #fff8f3;
            border: 1px solid #ffe1cf;
            padding: 18px;
            border-radius: 12px;
        }

        /* =========================================================
           SYLLABUS
        ========================================================= */

        .syllabus-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .syllabus-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 25px;
            display: flex;
            gap: 18px;
            transition: .25s ease;
        }

        .syllabus-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .syllabus-number {
            min-width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: grid;
            place-items: center;
            font-weight: 800;
        }

        .syllabus-card h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .syllabus-card p {
            font-size: 14px;
        }

        /* =========================================================
           ELIGIBILITY
        ========================================================= */

        .eligibility {
            background: linear-gradient(135deg, var(--dark), #174b68);
            color: #fff;
        }

        .eligibility .section-heading h2,
        .eligibility .section-heading p {
            color: #fff;
        }

        .eligibility-list {
            max-width: 850px;
            margin: auto;
            display: grid;
            gap: 15px;
        }

        .eligibility-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .06);
            border-radius: 12px;
        }

        .eligibility-item i {
            color: #63d8dd;
            margin-top: 5px;
        }

        /* =========================================================
           WHY MENTOR
        ========================================================= */

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
        }

        .why-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 17px;
            padding: 28px;
            box-shadow: 0 7px 25px rgba(16, 42, 67, .04);
            transition: .25s ease;
        }

        .why-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .why-icon {
            width: 54px;
            height: 54px;
            display: grid;
            place-items: center;
            border-radius: 13px;
            background: rgba(8, 127, 140, .1);
            color: var(--primary);
            font-size: 21px;
            margin-bottom: 17px;
        }

        .why-card h3 {
            font-size: 19px;
            margin-bottom: 8px;
        }

        /* =========================================================
           CTA
        ========================================================= */

        .cta {
            padding: 75px 0;
        }

        .cta-box {
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            padding: 55px;

            background:
                radial-gradient(circle at 90% 20%,
                    rgba(255, 255, 255, 0.12),
                    transparent 30%),
                linear-gradient(110deg,
                    #ed1c24 0%,
                    #c82035 28%,
                    #713d52 57%,
                    #1d5368 100%);

            color: #ffffff;

            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 30px;
        }

        .cta-box::after {
            content: "";
            position: absolute;

            width: 330px;
            height: 330px;

            border-radius: 50%;

            border: 55px solid rgba(255, 255, 255, 0.07);

            right: -80px;
            top: -135px;

            pointer-events: none;
        }

        .cta-box h2 {
            color: #fff;
            font-size: clamp(28px, 4vw, 42px);
            margin-bottom: 10px;
        }

        .cta-box p {
            color: rgba(255, 255, 255, .86);
            max-width: 680px;
        }

        .cta-box .btn-orange {
            background: #ff4b3e;
            color: #fff;
        }

        .cta-box .btn-orange:hover {
            background: #ff6257;
        }

        /* =========================================================
           FAQ
        ========================================================= */

        .faq-container {
            max-width: 900px;
            margin: auto;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 13px;
            margin-bottom: 13px;
            overflow: hidden;
            background: #fff;
        }

        .faq-question {
            width: 100%;
            border: none;
            background: transparent;
            padding: 21px 24px;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            text-align: left;
            color: var(--dark);
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
        }

        .faq-question i {
            color: var(--primary);
            transition: .25s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }

        .faq-answer-inner {
            padding: 0 24px 22px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

       

        

        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media(max-width: 900px) {

            .nav-links {
                position: absolute;
                left: 0;
                right: 0;
                top: 78px;
                background: #fff;
                flex-direction: column;
                align-items: flex-start;
                padding: 22px 20px;
                box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
                display: none;
            }

            .nav-links.open {
                display: flex;
            }

            .mobile-toggle {
                display: block;
            }

            .hero-grid,
            .intro-grid,
            .why-grid {
                grid-template-columns: 1fr;
            }

            .hero-grid {
                gap: 45px;
            }

            .syllabus-grid {
                grid-template-columns: 1fr;
            }

            .cta-box {
                grid-template-columns: 1fr;
                padding: 40px 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width: 650px) {

            .container {
                width: min(100% - 28px, 1180px);
            }

            .section {
                padding: 65px 0;
            }

            .topbar-right {
                display: none;
            }

            .topbar-inner {
                justify-content: center;
            }

            .nav {
                height: 68px;
            }

            .nav-links {
                top: 68px;
            }

            .hero {
                padding: 55px 0 65px;
            }

            .hero h1 {
                letter-spacing: -1px;
            }

            .hero-points {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: 1fr 1fr;
            }

            .stat-card {
                padding: 20px 10px;
            }

            .stat-card strong {
                font-size: 25px;
            }

            .demo-card {
                padding: 23px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .cta-box {
                padding: 32px 23px;
            }
        }
