/* ════════════════════════════════════════════════════════════════════════════
   Home page skin — CSS VERBATIM from Subash's home-page.html comp (both <style>
   blocks merged in order: block 1 lines 26-386, block 2 lines 391-2075).
   ALL rules scoped under body.home so nothing leaks into the Bricks header /
   footer chrome. Do NOT re-skin — fixes go through the comp first.
   Loaded on the front page by includes/home_styles.php (front-page enqueue).

   SCOPING: comp :root{--token} → body.home{--token} (NOT :root). The bare
   body{} rule is scoped to body.home{}. html{} and @keyframes global.
   @media inner selectors scoped. body.home .swiper-* keeps carousel page-scoped.
   ════════════════════════════════════════════════════════════════════════════ */

        body.home{
            --bg-navy: #13217c;
            --primary-blue: #3b5bff;
            --cta-magenta: #cc00cc;
            --accent-blue: #e6ebff;
            --text-white: #fffdfe;
            --text-dark: #333;
            --text-gray: #808080;
            --success-green: #2d8a4e;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            --container-width: 1920px;
        }

        body.home *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html{
            scroll-behavior: smooth;
        }

        body.home{
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.5;
            background-color: #e6ebff;
        }

        body.home h1, body.home h2, body.home h3, body.home h4, body.home h5, body.home h6{
            font-family: var(--font-heading);
            font-weight: 600;
        }

        body.home h2.section-title{
            font-size: 36px;
            line-height: 48px;
            color: var(--primary-blue);
            text-align: center;
            margin-bottom: 15px;
        }

        body.home .section-subtitle{
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
            color: var(--text-dark);
            text-align: center;
        }

        body.home .container{
            width: 100%;
            max-width: var(--container-width);
            padding: 0 80px;
            margin: 0 auto;
        }

        body.home section{
            display: flex;
            justify-content: center;
            padding: 60px 0;
        }

        body.home .section-for-desktop{
            display: flex;
            justify-content: center;
            padding: 60px 0;
        }

        body.home .text-center{
            text-align: center;
        }

        body.home .btn{
            display: inline-block;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 18px;
            text-decoration: none;
            cursor: pointer;
            transition: all .3s ease;
            border: none;
            font-family: var(--font-heading);
            text-align: center;
        }

        body.home .btn-magenta{
            background-color: var(--cta-magenta);
            color: var(--text-white);
        }

        body.home .btn-magenta:hover{
            background-color: #a600a6;
        }

        body.home .btn-blue{
            background-color: var(--primary-blue);
            border-radius: 10px;
            font-size: 18px;
            color: var(--text-white);
        }

        body.home .btn-blue:hover{
            background-color: #13217c;
        }

        body.home .btn-ghost-blue{
            background: 0 0;
            border: 2px solid #3b5bff;
            color: #3b5bff;
        }

        body.home .btn-ghost-blue:hover{
            background-color: #3b5bff;
            color: #fffdfe;
        }

        body.home section{
            padding: 0 0 0px;
        }

        body.home .hero{
            background-color: var(--bg-navy);
            color: var(--text-white);
            padding: 60px 0 160px;
            position: relative;
            overflow: hidden;
        }

        body.home .hero .container{
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
        }

        body.home .hero-content, body.home .hero-testimonial{
            min-width: 0;
        }

        body.home .hero-subtitle-box{
            display: inline-block;
            border: 3px dashed var(--cta-magenta);
            border-radius: 10px;
            padding: 10px 24px;
            color: var(--cta-magenta);
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            font-family: var(--font-heading);
        }

        body.home .hero-content h1{
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 20px;
            overflow-wrap: break-word;
        }

        body.home .hero-content p{
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 22px;
            line-height: 30px;
            margin-bottom: 20px;
            overflow-wrap: break-word;
        }

        body.home .hero-features{
            list-style: none;
            margin-bottom: 30px;
        }

        body.home .hero-feature-item{
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 18px;
            flex-wrap: nowrap;
        }

        body.home .hero-feature-item img{
            width: 24px;
            height: 24px;
            object-fit: contain;
            margin-top: 3px;
        }

        body.home .hero-testimonial{
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        body.home .hero-img{
            width: 100%;
            max-width: 480px;
            height: auto;
            border-radius: 20px;
            object-fit: cover;
            display: block;
        }

        /* Hero Carousel Styles */
        body.home .hero-carousel-container{
            width: 100%;
            max-width: 700px;
            /* Increased width as requested */
            overflow: hidden;
            position: relative;
            padding: 20px 0px;
            /* Padding for shadows */
            margin: -20px -10px;
            /* Offset padding */
        }

        body.home .hero-carousel-track{
            display: flex;
        }

        body.home .hero-carousel-card{
            background: #fff;
            padding: 25px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            text-align: left;
            color: #333;
            border-radius: 20px;
        }

        body.home .hero-carousel-header{
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            width: 100%;
        }

        body.home .hero-carousel-img{
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fecdec;
            flex-shrink: 0;
        }

        body.home .hero-carousel-info{
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        body.home .hero-carousel-name{
            font-size: 18px;
            font-weight: 500;
            color: var(--text-dark);
            font-family: var(--font-body);
            margin: 0;
        }

        body.home .hero-carousel-journey{
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 16px;
            color: #333;
            margin: 4px 0;
        }

        body.home .journey-plane{
            width: 74px;
            height: auto;
        }

        body.home .hero-carousel-degree{
            font-size: 16px;
            font-weight: 600;
            color: var(--cta-magenta);
            margin-bottom: 8px;
        }

        body.home .hero-carousel-logo{
            height: 40px;
            width: auto;
            object-fit: contain;
            align-self: self-start;
        }

        body.home .hero-carousel-testimonial{
            font-size: 18px;
            line-height: 29px;
            color: var(--text-dark);
            font-weight: 400;
        }

        body.home .stats-bar{
            background: var(--text-white);
            border-radius: 20px;
            padding: 30px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin: -90px auto 0;
            max-width: 1062px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, .1);
            position: relative;
            z-index: 20;
        }

        body.home .stats-bar .section-title{
            font-size: 22px;
            font-weight: 600;
            line-height: 30px;
            color: var(--primary-blue);
            margin: 0;
            flex-shrink: 0;
            text-align: center;
        }

        body.home .stats-bar .logo-carousel{
            flex-grow: 1;
            width: 100%;
            overflow: hidden;
            margin: 0;
        }

        body.home .stat-item h2{
            font-size: 40px;
            color: var(--bg-navy);
            margin-bottom: 4px;
            font-weight: 600;
        }

        body.home .stat-item p{
            font-size: 15px;
            color: #333;
            line-height: 1.4;
            max-width: 180px;
            margin: 0 auto;
        }

        body.home .stat-item p span{
            color: var(--cta-magenta);
            font-weight: 600;
        }

        body.home .galvanize-effect{
            background-color: var(--text-white);
            padding: 60px 0;
        }

        body.home .galvanize-effect .highlight{
            color: var(--cta-magenta);
            font-weight: 500;
        }

        body.home .effect-image-container{
            max-width: 1024px;
            margin: 40px auto 0;
        }

        body.home .effect-image{
            width: 100%;
            height: auto;
            display: block;
        }

        body.home .trust-ratings{
            background-color: var(--bg-navy);
            padding: 60px 0;
        }

        body.home .ratings-grid{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        body.home .counseling-testprep{
            background-color: var(--accent-blue);
            padding: 60px 0;
        }

        body.home .grid-4-cards{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Subash 2026-07-10 — spacing for the "Pick your goal" block ONLY. `.services-header`
           occurs exactly once in home.html (the `.testprep-header` sibling below carries no
           .section-title / .section-subtitle), so these are already section-scoped: no other
           user of .section-title / .section-subtitle is reachable from here.
           Both land at (0,3,1), which beats the `body.home *{margin:0}` reset, the base
           `body.home h2.section-title` (0,2,2), and its 768px / 769-1023px overrides. */
        body.home .services-header .section-title{
            margin-bottom: 15px;
        }

        body.home .services-header .section-subtitle{
            margin-bottom: 20px;
        }

        /* Subash Feedback v1 2026-07-14 — emphasise the three figures in the "Pick your goal"
           subtitle ($15M+ / 90%+ / Top-percentile). `.highlight` already exists on this page but is
           scoped to `.galvanize-effect` (magenta, weight 500); this is the services-header variant
           at Subash's spec — same --cta-magenta token (#cc00cc), bold. Scoping to .services-header
           keeps it off the .galvanize-effect spans, which keep their lighter weight. */
        body.home .services-header .section-subtitle .highlight{
            color: var(--cta-magenta);
            font-weight: 700;
        }

        body.home .services-label{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 230px;
            padding: 14px 32px;
            border: 2px dashed var(--cta-magenta);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.2);
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            line-height: 1;
            color: var(--primary-blue);
        }

        body.home .testprep-header{
            margin-top: 50px;
        }

        @media (max-width: 1024px) {
            body.home .services-label{
                min-width: 210px;
                font-size: 22px;
                padding: 13px 28px;
            }}
        

        @media (max-width: 767px) {
            body.home .services-header .section-title{
                margin-bottom: 10px;
            }

            body.home .services-label{
                min-width: 180px;
                font-size: 20px;
                padding: 12px 24px;
            }

            body.home .testprep-header{
                margin-top: 36px;
            }}
        

        body.home .program-card{
            background: #fff;
            border-radius: 30px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-blue);
            background-clip: padding-box;
        }

        body.home .program-card:hover{
            border: 2px solid #a0aeff;
        }

        body.home .program-image img{
            width: 100%;
            height: auto;
            display: block;
        }

        body.home .program-details{
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: start;
        }

        body.home .program-list{
            list-style: none;
            padding: 0;
            margin: 0 0 10px 0;
            flex-grow: 1;
            width: 100%;
        }

        body.home .program-list li{
            font-size: 16px;
            color: var(--text-dark);
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            text-align: left;
        }

        body.home .check-icon{
            width: 18px;
            height: 18px;
            object-fit: contain;
            margin-top: 2px;
        }



        /* Process Section / Timeline */
        body.home .process-section{
            background-color: #fff;
            padding: 60px 0;
        }

        body.home .timeline{
            position: relative;
            max-width: 900px;
            margin: 40px auto 0;
            padding: 20px 0;
        }

        body.home .timeline-line{
            position: absolute;
            left: 110px;
            /* Center of the marker circle */
            top: 0;
            width: 2.5px;
            transform: translateX(-50%);
            height: 0;
            /* JS will set the correct height and top */
            background: #cad4ff;
            z-index: 1;
        }

        body.home .timeline-progress{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--primary-blue);
            /* Removed transition to prevent lag with JS updates */
        }

        body.home .timeline-item{
            display: flex;
            align-items: flex-start;
            gap: 0;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        body.home .step-tag{
            width: 80px;
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--text-dark);
            font-weight: 400;
            text-align: right;
            padding-right: 15px;
            padding-top: 10px;
        }

        body.home .step-marker{
            width: 60px;
            display: flex;
            justify-content: center;
            position: relative;
        }

        body.home .step-icon-circle{
            width: 50px;
            height: 50px;
            background: #fff;
            border: 2.5px solid var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Removed box-shadow */
        }

        body.home .step-icon-circle img{
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

        body.home .step-details{
            padding-left: 20px;
            flex: 1;
        }

        body.home .step-details h3{
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 600;
            color: var(--primary-blue);
            line-height: 40px;
            margin-bottom: 8px;
        }

        body.home .step-details ul{
            list-style: none;
            padding: 0;
            margin: 0;
        }

        body.home .step-details ul li{
            font-family: var(--font-body);
            font-size: 18px;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 29px;
            position: relative;
            padding-left: 20px;
            margin-bottom: 5px;
        }

        body.home .step-details ul li::before{
            content: "•";
            position: absolute;
            left: 0;
            color: var(--text-dark);
            font-weight: bold;
        }

        body.home .timeline-footer{
            display: flex;
            justify-content: flex-start;
            padding-left: 160px;
            /* Align with step-details */
            margin-top: -20px;
        }

        body.home .btn-outline-primary{
            border: 2px solid var(--primary-blue);
            background: transparent;
            color: var(--primary-blue);
            padding: 10px 30px;
            border-radius: 10px;
            font-family: var(--font-body);
            font-size: 18px;
            font-weight: 600;
            line-height: 24px;
            display: inline-block;
            transition: all 0.3s ease;
            text-align: center;
        }

        body.home .btn-outline-primary:hover{
            background: var(--primary-blue);
            color: #fff;
        }

        body.home .press-section{
            background-color: var(--accent-blue);
            padding: 60px 0;
            text-align: center;
        }

        body.home .press-grid{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        body.home .press-logo{
            flex: 0 1 auto;
            max-width: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.home .press-logo img{
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        body.home .press-logo a{
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }



        body.home .team-section{
            background-color: var(--text-white);
            padding: 60px 0;
            text-align: center;
        }

        body.home .team-grid{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        body.home .team-card{
            background: var(--accent-blue);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        body.home .team-card:hover{
            border: 2px solid #a0aeff;
        }

        body.home .team-img-wrapper{
            position: relative;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin-bottom: 20px;
            z-index: 1;
            border: 1px solid var(--cta-magenta);
        }

        body.home .team-img-wrapper img{
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        body.home .team-name{
            font-size: 18px;
            line-height: 29px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        body.home .team-title{
            font-size: 16px;
            line-height: 26px;
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        body.home .team-degree{
            font-size: 16px;
            line-height: 26px;
            font-weight: 600;
            color: #cc00cc;
        }



        body.home .partners-section{
            background-color: var(--accent-blue);
            padding: 60px 0;
            text-align: center;
        }

        body.home .partners-slider{
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            overflow: hidden;
        }

        body.home .partner-slide{
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
        }

        body.home .partner-slide img{
            max-width: 140px;
            height: auto;
            object-fit: contain;
        }

        body.home .testimonials-video{
            background-color: var(--accent-blue);
            padding: 60px 0;
        }

        body.home .video-carousel-container{
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-top: 40px;
        }

        body.home .testimonial-Slider .swiper-wrapper{
            align-items: stretch;
        }

        body.home .testimonial-Slider .swiper-slide{
            height: auto;
        }

        body.home .video-card{
            background: var(--text-white);
            border-radius: 20px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        body.home .video-thumbnail{
            position: relative;
            width: 100%;
            aspect-ratio: 297/285;
            background: #e2e8f0;
        }

        body.home .video-thumbnail a{
            display: block;
            width: 100%;
            height: 100%;
        }

        body.home .video-thumbnail img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        body.home .video-info{
            padding: 20px;

        }

        body.home .video-carousel-dots{
            display: none !important;
        }

        body.home .v-dot{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: background-color .3s;
        }

        body.home .v-dot.active{
            background: #cc00cc;
        }

        body.home .video-snippet{
            font-size: 18px;
            color: #333;
            text-align: left;
            line-height: 1.5;
        }

        body.home .impact-stats{
            background-color: var(--bg-navy);
            padding: 60px 0;
        }

        body.home .impact-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto;
        }

        body.home .impact-card{
            background: #fff;
            border-radius: 20px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            min-height: 140px;
        }

        body.home .impact-value{
            font-family: var(--font-body);
            font-size: 40px;
            font-weight: 700;
            color: var(--bg-navy);
            margin-bottom: 8px;
            line-height: 1;
        }

        body.home .impact-label{
            font-size: 16px;
            color: var(--text-dark);
            font-family: var(--font-body);
            line-height: 1.2;
        }

        body.home .impact-icon-box{
            position: absolute;
            top: 15px;
            right: 15px;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
        }

        body.home .impact-icon-box img, body.home .impact-icon-box svg{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        body.home .impact-icon-box .accent{
            color: var(--cta-magenta);
        }

        @media (max-width: 1024px) {
            body.home .impact-grid{
                gap: 24px;
            }

            body.home .impact-value{
                font-size: 36px;
            }

            body.home .impact-icon-box{
                width: 68px;
                height: 68px;
            }}
        

        @media (max-width: 900px) {
            body.home .impact-grid{
                grid-template-columns: repeat(2, 1fr);
            }}
        

        @media (max-width: 640px) {
            body.home .impact-grid{
                grid-template-columns: 1fr;
                gap: 18px;
            }

            body.home .impact-card{
                min-height: 130px;
            }

            body.home .impact-value{
                font-size: 34px;
            }}
        

        /* Countries Section */
        body.home .countries-section{
            background-color: var(--accent-blue);
            padding: 60px 0;
            text-align: center;
        }

        body.home .countries-section .section-title{
            color: #4a6fff;
            margin-bottom: 15px;
        }

        body.home .countries-carousel-container{
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            overflow: hidden;
            padding: 0 10px;
        }

        body.home .country-item{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 10px;
        }

        body.home .country-flag{
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        body.home .country-name{
            background: #fff;
            padding: 12px 24px;
            border-radius: 20px;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            min-width: 130px;
        }

        @media (max-width: 768px) {
            body.home .countries-section{
                padding: 50px 0;
            }

            body.home .countries-grid{
                gap: 15px;
                margin-top: 30px;
            }

            body.home .country-flag{
                width: 70px;
                height: 70px;
            }

            body.home .country-name{
                padding: 10px 18px;
                font-size: 16px;
                min-width: 110px;
            }}
        

        /* Events Section */
        body.home .events-section{
            background-color: #fff;
            padding: 60px 0;
            text-align: center;
        }

        body.home .events-container{
            max-width: 1000px;
            margin: 40px auto 0;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        body.home .event-card{
            display: flex;
            flex-direction: column;
            background-color: var(--accent-blue);
            border-radius: 20px;
            padding: 30px;
            align-items: stretch;
            position: relative;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        body.home .event-card:hover{
            border: 2px solid #a0aeff;
        }

        body.home .event-main{
            display: flex;
            gap: 30px;
            align-items: stretch;
            width: 100%;
        }

        body.home .event-left{
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
        }

        body.home .event-title{
            font-size: 24px;
            color: var(--primary-blue);
            margin-bottom: 20px;
            line-height: 32px;
            font-weight: 600;
        }

        body.home .event-details{
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        body.home .event-details p{
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            font-weight: 500;
            color: var(--text-dark);
            margin: 0;
        }

        body.home .event-right{
            width: 320px;
            flex-shrink: 0;
        }

        body.home .speaker-card{
            background-color: #fff;
            border-radius: 20px;
            padding: 30px 20px;
            width: 100%;
            height: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        body.home .speaker-img{
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
        }

        body.home .speaker-name{
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        body.home .speaker-title{
            font-size: 16px;
            font-weight: 600;
            color: var(--cta-magenta);
        }

        body.home .event-ribbon{
            position: absolute;
            top: 0;
            right: 0;
            background-color: #a600a6;
            color: #fff;
            padding: 12px 10px 20px;
            width: 130px;
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            z-index: 10;
            clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 50% 100%, 0% 80%);
            border-radius: 0 20px 0 0;
        }

        body.home .event-actions{
            display: flex;
            gap: 15px;
            align-items: center;
        }

        body.home .event-accordion{
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        body.home .event-accordion.active{
            max-height: 1000px;
        }

        body.home .accordion-inner{
            padding-top: 30px;
            text-align: left;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }

        body.home .accordion-inner h4{
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-size: 20px;
        }

        body.home .accordion-inner p{
            font-size: 18px;
            line-height: 28px;
            margin-bottom: 20px;
        }

        body.home .highlights-list{
            list-style: none;
            padding: 0;
        }

        body.home .highlights-list li{
            font-size: 18px;
            line-height: 28px;
            margin-bottom: 10px;
            display: flex;
            gap: 10px;
        }

        body.home .highlights-list .num{
            color: var(--cta-magenta);
            font-weight: 700;
        }

        body.home .btn-dropdown svg{
            transition: transform 0.3s ease;
        }

        body.home .btn-dropdown.active svg{
            transform: rotate(180deg);
        }

        @media (max-width: 900px) {
            body.home .event-main{
                flex-direction: column;
            }

            body.home .event-right{
                width: 100%;
            }

            body.home .event-actions{
                flex-direction: column;
                align-items: stretch;
            }

            body.home .event-ribbon{
                width: 100px;
                font-size: 14px;
            }}
        

        @media (max-width: 768px) {
            body.home .events-section{
                padding: 50px 0;
            }

            body.home .event-details p{
                font-size: 16px;
            }}
        

        body.home .video-modal-overlay{
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        body.home .video-modal-overlay .video-modal-content{
            position: relative;
            width: min(90vw, 800px);
            aspect-ratio: 16/9;
            background: #000;
        }

        body.home .video-modal-overlay .video-modal-content iframe{
            width: 100%;
            height: 100%;
            border: none;
        }

        body.home .video-modal-overlay .video-modal-close{
            position: absolute;
            top: -36px;
            right: 0;
            background: #fff;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
        }

        /* CONTACT FORM */
        body.home .contact-form{
            padding: 60px 0;
            background-color: var(--bg-navy);

        }

        body.home .contact-form-wrapper{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        body.home .contact-form-left{
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.home .contact-form-left img{
            width: 100%;
            height: auto;
        }

        /* FAQ */
        body.home .faq-section{
            padding: 60px 0;
            background: #fff;
        }

        body.home .section-header{
            margin-bottom: 50px;
        }

        body.home .faq-container{
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        body.home .faq-title{
            font-family: var(--font-heading);
            font-size: 36px;
            line-height: 48px;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 30px;
        }

        body.home .faq-item{
            background: var(--primary-blue);
            margin-bottom: 18px;
            overflow: hidden;
        }

        body.home .faq-question{
            padding: 20px 50px 20px 20px;
            font-size: 20px;
            line-height: 30px;
            font-weight: 400;
            color: var(--text-white);
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            user-select: none;
        }

        body.home .faq-question::after{
            content: "›";
            position: absolute;
            right: 28px;
            top: 50%;
            transform: translateY(-50%) rotate(0deg);
            font-size: 28px;
            color: #fff;
            font-weight: 400;
            transition: transform 0.3s ease;
            line-height: 1;
        }

        body.home .faq-question.active::after{
            content: "›";
            transform: translateY(-50%) rotate(90deg);
        }

        body.home .faq-answer{
            background-color: var(--accent-blue);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 28px;
            font-size: 20px;
            line-height: 30px;
            font-weight: 400;
            color: var(--primary-blue);
        }

        body.home .faq-answer.active{
            max-height: 800px;
            padding: 20px;
        }


        /* FAQ Layout */
        body.home .faq-layout{
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 20px;
            align-items: start;
        }

        body.home .faq-image-col img{
            width: 100%;
            max-width: 420px;
            height: auto;
            border-radius: 20px;
            display: block;
        }

        body.home .faq-layout .faq-container{
            max-width: 100%;
            margin: 0;
            padding: 0;
        }


        body.home .partners{
            background: linear-gradient(to bottom, var(--bg-navy) 50%, #e6ebff 50%);
            padding: 60px 0 0;
            overflow: hidden;
        }

        body.home .university-card{
            background: #fff;
            border-radius: 30px;
            padding: 40px 30px;
            max-width: 1062px;
            margin: 0 auto;
        }

        body.home .university-card h2{
            font-size: 22px;
            color: #3b5bff;
            margin-bottom: 30px;
            font-weight: 600;
        }

        body.home .logo-carousel{
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        body.home .logo-track{
            display: flex;
            width: max-content;
            animation: scroll 40s linear infinite;
            gap: 30px;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-140px * 20));
            }
        }

        body.home .logo-track:hover{
            animation-play-state: paused;
        }

        body.home .logo-item{
            width: 110px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        body.home .logo-item img{
            height: 55px;
            width: auto;
            max-width: 180px;
            object-fit: contain;
            transition: all .5s ease;
        }

        body.home .logo-item:hover img{
            transform: scale(1.08);
        }

        body.home .text-left{
            text-align: left;
        }

        /* Tablet Responsive */

        @media (max-width: 1024px) {
            body.home .container{
                padding: 0 40px;
            }

            body.home .hero{
                padding: 40px 0 160px;
            }

            body.home .hero .container{
                grid-template-columns: 1.1fr 1fr;
                gap: 30px;
            }

            body.home .hero-feature-item{
                font-size: 18px;
                gap: 10px;
                margin-bottom: 20px;
            }

            body.home .hero-carousel-testimonial{
                font-size: 16px;
                line-height: 26px;
            }

            body.home .hero-carousel-degree, body.home .hero-carousel-journey{
                font-size: 14px;
            }

            body.home .hero-features{
                margin-bottom: 30px;
            }

            body.home .hero-img{
                max-width: 380px;
            }

            body.home .galvanize-effect, body.home .process-section, body.home .counseling-testprep, body.home .press-section, body.home .team-section, body.home .partners-section, body.home .contact-form, body.home .faq-section{
                padding: 40px 0;
            }

            body.home .grid-4-cards{
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            body.home .testprep-header{
                margin-top: 30px;
            }

            body.home .press-grid{
                gap: 10px;
            }

            body.home .press-logo{
                max-width: 140px;
            }

            body.home .team-grid{
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            body.home .feature-card{
                flex: 0 1 calc((100% - 30px) / 2);
            }}

        

        /* Mobile Responsive */

        @media (max-width:350px) {
            body.home .btn{
                font-size: 14px;
                padding: 8px 16px;
            }}
        

        @media (max-width: 768px) {

            body.home nav button, body.home nav a{
                padding: 10px 14px;
            }

            body.home .container{
                padding: 0 20px;
            }

            body.home .galvanize-effect, body.home .process-section, body.home .counseling-testprep, body.home .press-section, body.home .team-section, body.home .partners-section, body.home .contact-form, body.home .faq-section{
                padding: 30px 0;
            }

            body.home h2.section-title{
                font-size: 24px;
                line-height: 38px;
                margin-bottom: 10px;
            }

            body.home .section-subtitle{
                font-size: 18px;
                line-height: 29px;
            }

            body.home .hero{
                padding: 30px 0 180px;
            }

            body.home .hero .container{
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }

            body.home .hero-subtitle-box{
                font-size: 16px;
                padding: 8px 16px;
                margin-bottom: 15px;
            }

            body.home .hero-content h1{
                font-size: 36px;
                line-height: 48px;
                text-align: left;
                width: 100%;
                overflow-wrap: break-word;
                word-break: break-word;
                white-space: normal !important;
            }

            body.home .hero-content p{
                font-size: 20px;
                margin-bottom: 20px;
            }

            body.home .hero-feature-item{
                font-size: 16px;
                line-height: 26px;
                margin-bottom: 20px;
            }

            body.home .hero-testimonial{
                width: 100%;
                justify-content: center;
                margin-top: 30px;
            }

            body.home .hero-carousel-container{
                padding: 0;
            }

            body.home .hero-carousel-header{
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            body.home .hero-carousel-info{
                align-items: center;
                text-align: center;
            }

            body.home .hero-carousel-journey{
                justify-content: center;
            }

            body.home .hero-carousel-name{
                font-size: 18px;
            }

            body.home .hero-carousel-logo{
                align-self: center;
            }

            body.home .stats-bar{
                flex-direction: column;
                margin-top: -120px;
                gap: 20px;
                padding: 20px;
            }

            body.home .stats-bar .section-title{
                width: 100%;
                font-size: 18px;
                line-height: 29px;
            }

            body.home .feature-card{
                flex: 0 1 100%;
            }

            body.home .stat-item p{
                font-size: 16px;
                line-height: 26px;
                max-width: 200px;
            }

            body.home .achiever-name{
                font-size: 18px;
                line-height: 29px;
            }

            body.home .achiever-country{
                font-size: 16px;
                line-height: 26px;
            }

            body.home .partner-title{
                font-size: 24px;
                line-height: 38px;
            }

            body.home .event-main{
                flex-direction: column-reverse;
            }

            /* Timeline Mobile Fix */
        body.home .timeline{
                max-width: 100%;
                margin-top: 30px;
                padding: 0;
            }

            body.home .timeline-item{
                display: grid;
                grid-template-columns: 60px 1fr;
                grid-template-areas:
                    "marker tag"
                    "marker details";
                margin-bottom: 40px;
                gap: 0;
            }

            body.home .step-tag{
                grid-area: tag;
                width: auto;
                text-align: left;
                padding: 0 0 8px 15px;
                font-size: 14px;
                color: var(--text-dark);
            }

            body.home .step-marker{
                grid-area: marker;
                width: 60px;
            }

            body.home .step-details{
                grid-area: details;
                padding-left: 15px;
            }

            body.home .step-details h3{
                font-size: 20px;
                line-height: 30px;
                margin-bottom: 10px;
            }

            body.home .timeline-line{
                left: 30px;
            }

            body.home .timeline-footer{
                padding-left: 80px;
                margin-top: -20px;
            }

            body.home .university-card h2{
                font-size: 20px;
                line-height: 29px;
            }

            body.home .partners{
                padding: 20px 0 0;
            }

            body.home .ratings-grid{
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            body.home .grid-4-cards{
                grid-template-columns: 1fr;
                margin-top: 30px;
            }

            body.home .features-grid{
                margin-top: 30px;
            }

            body.home .feature-card h3{
                font-size: 20px;
            }

            body.home .press-grid{
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
                place-items: center;
            }

            body.home .press-logo{
                max-width: 120px;
            }

            body.home .team-grid{
                grid-template-columns: 1fr;
                margin-top: 30px;
            }

            body.home .partners-slider{
                margin-top: 30px;
            }

            body.home .partner-slide img{
                max-width: 100px;
            }

            body.home .contact-form-wrapper{
                grid-template-columns: 1fr;
            }

            body.home .faq-layout{
                grid-template-columns: 1fr;
            }

            body.home .faq-title{
                font-size: 24px;
                line-height: 38px;
            }

            body.home .faq-image-col{
                display: none;
            }}

        

        @media (min-width: 769px) and (max-width: 1023px) {
            body.home .container{
                padding: 0 30px;
            }

            body.home .hero{
                padding: 40px 0 120px;
            }

            body.home .hero .container{
                grid-template-columns: 1.1fr 1fr;
                gap: 30px;
            }

            body.home .hero-subtitle-box{
                font-size: 18px;
            }

            body.home .hero-content h1{
                font-size: 26px;
                line-height: 34px;
            }

            body.home .hero-content p{
                font-size: 16px;
                margin-bottom: 20px;
            }

            body.home .hero-feature-item{
                font-size: 14px;
                line-height: 22px;
                gap: 10px;
                margin-bottom: 20px;
            }

            body.home .btn{
                font-size: 14px;
                padding: 8px 16px;
            }

            body.home .hero-carousel-card{
                padding: 15px;
            }

            body.home .hero-carousel-img{
                height: 80px;
                width: 80px;
            }

            body.home .hero-carousel-name, body.home .hero-carousel-journey, body.home .hero-carousel-degree, body.home .hero-carousel-testimonial{
                font-size: 16px;
                line-height: 26px;
                margin: 0;
            }

            body.home .journey-plane{
                width: 50px;
            }

            body.home .hero-carousel-logo{
                height: 40px;
            }

            body.home .hero-carousel-degree, body.home .hero-carousel-journey{
                font-size: 14px;
            }

            body.home .hero-carousel-header{
                margin-bottom: 10px;
            }

            body.home .hero-features{
                margin-bottom: 30px;
            }

            body.home .hero-img{
                max-width: 380px;
            }

            body.home .stats-bar{
                padding: 30px 20px;
                gap: 10px;
            }

            body.home .stats-bar .section-title{
                font-size: 20px;

            }

            body.home .galvanize-effect, body.home .process-section, body.home .counseling-testprep, body.home .press-section, body.home .team-section, body.home .partners-section, body.home .contact-form, body.home .faq-section{
                padding: 30px 0;
            }

            body.home h2.section-title{
                font-size: 24px;
                line-height: 32px;
                margin-bottom: 8px;
            }

            /* Subash 2026-07-10: match the other section titles on tablet.
               The rule above is (0,2,2); the scoped desktop rule (0,3,1) at ~line 424 outranks it,
               so "Pick your goal" held 15px here while every other title sat at 8px. Re-state it at
               (0,3,1) inside this query — equal specificity, later in source, so this wins. */
            body.home .services-header .section-title{
                margin-bottom: 8px;
            }

            body.home .section-subtitle{
                font-size: 18px;
                line-height: 29px;
            }

            body.home .achievers-carousel-container{
                margin-top: 20px;
            }

            body.home .effect-image-container{
                margin-top: 30px;
            }

            body.home .timeline{
                margin-top: 30px;
            }

            body.home .step-details h3{
                font-size: 20px;
                line-height: 30px;
            }

            body.home .step-details ul li{
                font-size: 16px;
                line-height: 26px;
            }

            body.home .grid-4-cards{
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: 30px;
            }

            body.home .program-list li{
                font-size: 16px;
                line-height: 26px;
            }

            body.home .testprep-header{
                margin-top: 30px;
            }

            body.home .features-grid{
                margin-top: 30px;
                gap: 20px;
            }

            body.home .press-grid{
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
                place-items: center;
                margin-top: 30px;
            }

            body.home .press-logo{
                max-width: 140px;
            }

            body.home .team-grid{
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: 30px;
            }

            body.home .partners-slider{
                margin-top: 30px;
            }

            body.home .feature-card{
                flex: 0 1 calc((100% - 30px) / 2);
            }

            body.home .faq-title{
                font-size: 24px;
                line-height: 32px;
            }}