
/* ============================================== 
   2. HERO SECTION - BULLETPROOF FIX
   ============================================== */
.hero-section { 
    width: 100%; 
    background: white; 
    position: relative; 
    z-index: 1; 
    overflow: hidden;
    /* Match your header height. Use padding instead of margin 
       to prevent "pushing" issues on some screens */
    padding-top: 70px; 
}

.hero-slider {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    position: relative;
    /* This ensures the container height matches the image height perfectly */
    height: auto;
}

.hero-slide {
    grid-area: 1 / 1; 
    width: 100%;
    height: auto;
    opacity: 0; 
    transition: opacity 0.8s ease-in-out; 
    position: relative;
    z-index: 1;
    /* Force browser to show top of image */
    display: flex;
    align-items: flex-start; 
}

.hero-slide.active {
    opacity: 1; 
    z-index: 2;
}

.hero-slide img { 
    width: 100%; 
    height: auto; 
    display: block; 
    /* Important: 'initial' prevents the browser from trying to crop or stretch */
    object-fit: initial; 
    /* Prevents any height limits that cause cropping */
    max-height: none !important; 
}

/* --- THE NEAT GRADIENT --- */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px; 
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 10;
    pointer-events: none;
}

.slider-dots {
    position: absolute;
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    height: 10px; 
    width: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid white;
}

.dot.active {
    background-color: #0d3c75;
    transform: scale(1.2);
    width: 20px;
    border-radius: 10px;
}

/* Fix for high-resolution screens or zoomed laptops */
@media screen and (max-width: 1400px) {
    .hero-section {
        padding-top: 65px; /* Slightly smaller gap for smaller laptops */
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding-top: 60px; /* Mobile header height */
    }
    .hero-overlay {
        height: 60px;
    }
}

    /* ============================================== 
   MASTER CSS - ROBO SCIENTIST (V3 PREMIUM)
   ============================================== */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.su-clean-master {
    padding: 20px 0; /* Reduced overall section padding */
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.su-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Logo Header - Reduced Bottom Gap */
.su-brand-row {
    text-align: center;
    margin-bottom: 20px; /* Reduced gap from 50px */
}

.su-top-logo {
    width: 100%;
    max-width: 650px;
    height: auto;
}

/* 2. Main Layout - Reduced Bottom Gap */
.su-split-layout {
    display: flex;
    align-items: center; 
    gap: 60px;
    margin-bottom: 20px; /* Reduced gap from 60px */
}

.su-visual-box {
    flex: 1.2;
}

.su-floating-grid {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(13, 60, 117, 0.1)); 
}

.su-text-box {
    flex: 1;
}

.su-description p {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 15px; /* Slightly tightened text spacing */
}

.su-description strong {
    color: #0d3c75;
}

.su-icon-list {
    margin-top: 15px; /* Reduced gap from 30px */
}

.su-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px; /* Tightened list spacing */
}

.su-bullet {
    width: 10px;
    height: 10px;
    background: #f7941d;
    border-radius: 50%;
    flex-shrink: 0;
}

.su-item p {
    margin: 0;
    font-size: 14px;
    color: #0d3c75;
}

/* 3. Einstein Section - Reduced Top Gap */
.su-einstein-section {
    display: flex;
    justify-content: center;
    margin-top: 10px; /* Reduced gap from 20px */
}

.su-einstein-card {
    display: flex;
    align-items: center;
    background: #f8fafc; 
    padding: 12px 40px 12px 15px; 
    border-radius: 100px; 
    max-width: 700px; 
    border: 1px solid #e2e8f0;
}

.su-einstein-photo {
    width: 75px; 
    height: 75px; 
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 25px; 
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.su-einstein-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.su-big-quote {
    margin: 0;
    font-size: 17px; 
    font-style: italic;
    color: #0d3c75;
    font-weight: 500;
    line-height: 1.4;
}

.su-quote-cite {
    margin: 2px 0 0 0; 
    font-size: 12px; 
    font-weight: 700;
    color: #f7941d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .su-split-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .su-einstein-card {
        flex-direction: column;
        border-radius: 30px;
        padding: 25px 20px;
        max-width: 90%;
    }
    .su-einstein-photo {
        margin-right: 0;
        margin-bottom: 12px;
        width: 70px;
        height: 70px;
    }
}

    /* ============================================== 
   BEYOND CLASSROOM - UI/UX REFINED
   ============================================== */

.su-beyond-section {
    background-color: #ffffff;
    padding: 10px 0 60px 0; /* Minimized top padding to reduce gap with section above */
    font-family: 'Poppins', sans-serif;
}

.su-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Title Alignment */
.su-header-title {
    text-align: center;
    margin-bottom: 20px; /* Reduced gap */
}

.su-title-png {
    width: 100%;
    max-width: 650px;
    height: auto;
}

/* Parallel Flex Alignment */
.su-parallel-flex {
    display: flex;
    align-items: center; /* Vertical center to match image height */
    gap: 60px;
    justify-content: space-between;
}

.su-image-side {
    flex: 1.1;
}

.su-main-robot-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}

.su-content-side {
    flex: 1;
}

/* Typography Styling */
.su-intro-quote p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    border-left: 3px solid #f7941d; /* Brand Orange highlight */
    padding-left: 15px;
    margin-bottom: 25px;
}

.su-program-intro h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0d3c75;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Bullet List (Parallel Height Filler) */
.su-feature-points {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.su-feature-points li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.su-point-dot {
    width: 10px;
    height: 10px;
    background-color: #f7941d;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.su-feature-points p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
}

.su-feature-points strong {
    color: #0d3c75;
    display: block; /* Moves the title of the bullet to its own line for better UX */
}

.su-final-mission p {
    font-size: 14px;
    color: #0d3c75;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .su-parallel-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .su-intro-quote p {
        border-left: none;
        padding-left: 0;
    }
    
    .su-feature-points li {
        justify-content: center;
        text-align: left;
    }
}

/* ============================================== 
   HASSLE-FREE - CSS UPDATE
   ============================================== */

.su-hassle-section {
    background-color: #ffffff;
    padding: 10px 0 50px 0; 
    font-family: 'Poppins', sans-serif;
}

.su-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.su-title-row {
    text-align: center;
    margin-bottom: 30px; 
}

.su-title-png {
    width: 100%;
    max-width: 600px; 
    height: auto;
}

.su-flex-body {
    display: flex;
    align-items: center; 
    gap: 50px;
}

.su-text-col {
    flex: 1.2; /* Increased text share to allow image to shrink */
}

/* IMAGE SIZE REDUCTION LOGIC */
.su-image-col {
    flex: 0.8; /* Reduced from 1.4 to make this side smaller */
    display: flex;
    justify-content: center;
}

.su-comparison-img {
    width: 100%;
    max-width: 450px; /* Force image to a smaller compact size */
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.05));
}

.su-para-top, .su-para-bottom {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
}

.su-feature-card {
    position: relative;
    background: #f8fafc; 
    padding: 25px 30px;
    border-radius: 15px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(13, 60, 117, 0.03);
}

.su-card-line {
    width: 4px;
    height: 70%;
    background: #f7941d; 
    position: absolute;
    left: 0;
    border-radius: 0 4px 4px 0;
}

.su-feature-card p {
    margin: 0;
    font-size: 14px;
    color: #0d3c75;
    font-weight: 500;
    line-height: 1.5;
}

.su-check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.su-check-list li {
    font-size: 14px;
    font-weight: 700;
    color: #0d3c75;
    background: #f1f5f9;
    padding: 6px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.su-check-list span {
    color: #f7941d;
}

@media (max-width: 991px) {
    .su-flex-body {
        flex-direction: column;
        text-align: center;
    }
    .su-feature-card {
        justify-content: center;
    }
    .su-check-list {
        justify-content: center;
    }
}



/* New Unboxing */
:root { --su-navy: #003366; --su-orange: #f47b20; --su-bg: #ffffff; }

#unboxingSectionBlock { padding: 40px 0; background: var(--su-bg); overflow: hidden; position: relative; font-family: 'Outfit', sans-serif; }
#mainContainer { max-width: 1150px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

/* --- HEADER ALIGNMENT --- */
.top-header { margin-bottom: 60px; width: 100%; }
.title-img-wrapper { display: flex; justify-content: center; align-items: center; width: 100%; }
.title-img { max-width: 100%; width: 600px; height: auto; object-fit: contain; }

/* --- SHOWCASE AREA --- */
.showcase-flex { display: flex; align-items: center; justify-content: space-between; gap: 60px; position: relative; min-height: 480px; }

.box-container { width: 420px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; z-index: 100; position: relative; }

.hover-hint {
    background: var(--su-orange); color: white; padding: 8px 18px; border-radius: 50px; font-size: 14px;
    font-weight: 700; margin-bottom: 15px; opacity: 0; transform: translateY(10px); transition: all 0.3s ease;
    text-align: center; box-shadow: 0 5px 15px rgba(244, 123, 32, 0.3); pointer-events: none;
}
.box-container:hover .hover-hint { opacity: 1; transform: translateY(0); }

/* Box Click Zone */
.box-wrapper { width: 100%; cursor: pointer; position: relative; z-index: 99999 !important; -webkit-tap-highlight-color: transparent; }
.box-container:hover .box-wrapper:not(.is-open) { animation: shake 0.5s infinite linear; }
.box-img { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); pointer-events: none; }

.is-open .box-closed { display: none; }
.is-open .box-opened { display: block; animation: openSpring 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.box-opened { display: none; }

@keyframes shake { 0%, 100% {transform: rotate(0);} 25% {transform: rotate(-1.5deg);} 75% {transform: rotate(1.5deg);} }
@keyframes openSpring { 0% {transform: scale(0.8); opacity: 0;} 100% {transform: scale(1); opacity: 1;} }

/* --- TEXT AREA (PERFECTED TO MATCH SCREENSHOT) --- */
.content-area { flex: 1; transition: opacity 0.4s ease; max-width: 650px; }
.stem-features { list-style: none; padding: 0; margin: 0; }
.stem-features li { 
    font-size: 14px; /* Slightly larger, crisp text */
    line-height: 1.6; 
    color: #333; 
    margin-bottom: 22px; /* Breathing room between points */
    display: flex; 
    align-items: flex-start; /* Keeps numbers perfectly at the top */
}
.stem-features li span { 
    color: var(--su-orange); 
    font-weight: 900; 
    font-size: 19px;
    margin-right: 15px; 
    min-width: 20px; /* Forces text to perfectly wrap BESIDE the number, not under it */
    flex-shrink: 0;
}
.stem-features li p {
    margin: 0; padding: 0;
}

/* --- THE DIVIDER & TAGLINE --- */
.tagline-wrapper {
    margin-top: 30px; 
    border-top: 1px solid #e0e0e0; /* Clean, thin grey line */
    padding-top: 25px; 
}
.final-tagline { 
    font-size: 20px; /* Big, bold impact */
    font-weight: 800; 
    color: var(--su-navy); 
    line-height: 1.4;
    margin: 0;
}

/* --- CLEAN SPILL ITEMS --- */
#spillCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none !important; z-index: 10; }
.spill-item {
    position: absolute; width: 75px; height: 75px; 
    background: white; border-radius: 8px; padding: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12); border: 1px solid #f0f0f0;
    opacity: 0; transform: scale(0);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.3s ease-out;
    will-change: transform, opacity;
}
.spill-item img { width: 100%; height: 100%; object-fit: contain; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .showcase-flex { flex-direction: column; min-height: 750px; justify-content: flex-start; gap: 40px; }
    .box-container { width: 320px; }
    .content-area { max-width: 100%; }
    .stem-features li { font-size: 16px; margin-bottom: 18px; }
    .final-tagline { font-size: 20px; }
}


/* Logic Section*/
:root {
    --navy: #003366;
    --orange: #f47b20;
    --green: #28a745;
    --light-bg: #f8fafc;
    --white: #ffffff;
}

/* General Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-compare-section { padding: 80px 0; background: var(--light-bg); }

/* HEADER STYLES */
.premium-header { text-align: center; margin: 0 auto 50px; }
.header-png-title { width: 100%; max-width: 680px; height: auto; display: block; margin: 0 auto; }

/* Pricing Wrapper */
.pricing-wrapper { 
    display: flex; 
    justify-content: center; 
    align-items: stretch;
    gap: 20px; 
    flex-wrap: wrap;
    margin-bottom: 40px; /* Added space for the button below */
}

.pricing-card {
    background: var(--white);
    flex: 1; 
    min-width: 300px; 
    max-width: 360px; 
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.highlighted { 
    border: 2px solid var(--orange); 
    transform: scale(1.05); 
    z-index: 2;
}

/* Before/After Shutter Effect */
.ba-visual { position: relative; height: 220px; overflow: hidden; flex-shrink: 0; }
.ba-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba-img.before { width: 100%; transition: 0.7s ease-in-out; z-index: 2; border-right: 2px solid #fff; }
.ba-visual:hover .ba-img.before { width: 0%; }
.ba-overlay { 
    position: absolute; bottom: 15px; left: 15px; z-index: 5;
    background: rgba(0,0,0,0.5); color: #fff; padding: 4px 12px; 
    font-size: 11px; border-radius: 50px; backdrop-filter: blur(4px);
}

.pricing-body { padding: 25px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; }
.pricing-body h3 { font-size: 24px; color: var(--navy); margin-bottom: 5px; }
.price { font-size: 20px; font-weight: 700; color: var(--orange); margin-bottom: 20px; }
.price span { color: #999; font-weight: 400; font-size: 16px; }

/* DO NOT CHANGE - Feature List UI */
.feature-list { list-style: none; padding: 0; margin-bottom: 25px; text-align: left; flex-grow: 1; }
.feature-list li { padding: 8px 0; font-size: 14px; color: #555; display: flex; align-items: center; gap: 10px; }
.fa-check { color: var(--green); }
.fa-xmark { color: #ccc; }

/* NEW: Centered Button Styling */
.single-cta-wrapper {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.cta-expert-main {
    padding: 16px 50px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 50px; /* Rounded pill shape */
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
}

.cta-expert-main:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(244, 123, 32, 0.3);
}

.popular-tag {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    background: var(--orange); color: #fff; padding: 5px 20px;
    font-size: 12px; font-weight: 700; border-radius: 0 0 15px 15px;
    z-index: 10;
}

/* POPUP UI */
.modal-overlay-new {
    position: fixed; inset: 0; background: rgba(0, 31, 63, 0.85);
    backdrop-filter: blur(8px); display: none; justify-content: center; 
    align-items: center; z-index: 999999; padding: 20px;
}
.modal-overlay-new.active { display: flex; }
.modal-box-new {
    background: #fff; width: 100%; max-width: 480px; border-radius: 25px; position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3); overflow: hidden; animation: modalPop 0.3s ease-out;
}
@keyframes modalPop { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; top: 15px; right: 15px; font-size: 20px; border: none; background: #f1f5f9; width: 35px; height: 35px; border-radius: 50%; cursor: pointer; color: #64748b; z-index: 10; display: flex; align-items: center; justify-content: center; }
.modal-flex { display: flex; align-items: stretch; }
.modal-img-side { width: 35%; background: #f8fafc; min-height: 220px; }
.modal-img-side img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; display: block; }
.modal-info-side { width: 65%; padding: 25px; display: flex; flex-direction: column; justify-content: center; }
.desig-label { color: var(--orange); font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 5px; }
.modal-info-side h2 { color: var(--navy); font-size: 26px; margin: 0 0 10px 0; font-weight: 800; }
.modal-info-side p { color: #64748b; font-size: 14px; line-height: 1.5; margin: 0 0 20px 0; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.call-btn-main { background-color: var(--green) !important; color: #ffffff !important; text-decoration: none; padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 15px; text-align: center; width: fit-content; display: inline-flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3); transition: 0.3s; border: none; }
.call-btn-main:hover { background-color: #218838 !important; transform: translateY(-2px); }
.call-btn-alt { color: var(--navy); text-decoration: none; font-weight: 700; font-size: 13px; opacity: 0.7; transition: 0.2s; }
.call-btn-alt:hover { opacity: 1; color: var(--orange); }

@media (max-width: 600px) {
    .modal-flex { flex-direction: column; }
    .modal-img-side { width: 100%; height: 180px; min-height: auto; }
    .modal-info-side { width: 100%; text-align: center; align-items: center; padding: 20px; }
    .call-btn-main { width: 100%; }
    .cta-expert-main { width: 100%; }
}
    /* What We Offer Section*/
    .stem-services {
        padding: 40px 20px; /* Reduced section padding */
        background-color: #ffffff;
        font-family: 'Outfit', sans-serif;
    }

    .stem-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .stem-header {
        text-align: center;
        margin-bottom: 30px; /* Reduced margin */
    }

    .stem-title-img {
        max-width: 680px; /* Slightly smaller title */
        width: 100%;
        height: auto;
    }

    .stem-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px; /* Reduced gap between cards */
    }

    .stem-card {
        position: relative;
        transition: transform 0.3s ease;
    }

    .stem-card-inner {
        background: #ffffff;
        padding: 25px 20px; /* SIGNIFICANTLY REDUCED PADDING to shrink height */
        height: 100%;
        border-radius: 50px 15px 50px 15px;
        border: 2px solid #f0f0f0;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Centers content vertically */
    }

    .stem-icon {
        font-size: 32px; /* Smaller icon */
        margin-bottom: 12px; /* Reduced spacing */
        color: var(--accent);
    }

    .stem-card-inner h3 {
        font-size: 19px; /* Smaller heading */
        margin: 0 0 10px 0;
        color: #003366;
        font-weight: 800;
    }

    .main-desc {
        font-size: 14px;
        color: #333;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 10px; /* Reduced spacing */
    }

    .sub-desc {
        font-size: 12.5px;
        color: #666;
        line-height: 1.4;
        border-top: 1px solid #eee;
        padding-top: 10px; /* Reduced spacing */
    }

    /* Colors */
    .s-orange { --accent: #f47b20; }
    .s-blue { --accent: #00a8ff; }
    .s-navy { --accent: #003366; }
    .s-purple { --accent: #a55eea; }

    /* Hover State */
    .stem-card:hover .stem-card-inner {
        border-color: var(--accent);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
        .stem-grid { grid-template-columns: 1fr; }
        .stem-card-inner { padding: 20px; }
    }

/* ============================================== 
   10. VIDEO SECTION STYLES
   ============================================== */
.video-section {
    max-width: 100%;
    padding: 0 20px 60px 20px;
    background-color: #fff; 
    text-align: center;
    overflow: hidden; 
}

/* Header Image */
.video-header {
    text-align: center;
    margin-bottom: 30px; 
    margin-top: 10px;
}

.video-header img {
    max-width: 100%;
    height: auto;
    width: 650px; 
    display: inline-block;
}

/* Slider Container */
.slider-container {
    max-width: 1250px; 
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 0 20px 0; 
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

/* Video Card Styling */
.video-card {
    /* 3 Cards per view on desktop */
    flex: 0 0 calc(33.333% - 14px); 
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 15px; 
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
}

/* IMPORTANT: Make Iframe fill the card */
.video-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .video-card {
        flex: 0 0 calc(50% - 10px); /* 2 cards on tablet */
    }
}

@media (max-width: 600px) {
    .video-card {
        flex: 0 0 100%; /* 1 card on mobile */
    }
    .video-header img {
        width: 90%; 
    }
}

/* STEM STREAM SECTION */
.stem-stream-section {
    padding: 10px 0; /* REDUCED: Was 20px, now 10px to tighten space with above section */
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Heading Container */
.section-intro {
    text-align: center;
    margin-bottom: 5px; /* REDUCED: Minimum gap before the content below starts */
}

/* PNG Heading Size & Alignment */
.heading-png {
    max-width: 750px; /* Scaling the title to a standard desktop heading size */
    width: 100%;       /* Responsive: shrinks on mobile */
    height: auto;
    display: block;
    margin: 0 auto;   /* Centers the image */
}

/* Title Line (The yellow line) */
.title-line {
    width: 50px;
    height: 3px;
    background-color: #ffcc00;
    margin: 8px auto 0; /* REDUCED: Very small gap (8px) between PNG and line */
}

/* Optional: Science Grid Pattern */
.stem-stream-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#e1e8ed 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.stream-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px 0;
}

.stream-row {
    display: flex;
    overflow: hidden;
    user-select: none;
    /* Softly fades the edges into the white background */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.stream-track {
    display: flex;
    gap: 15px;
    width: max-content;
}

.stream-track img {
    height: 220px;
    width: 320px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e1e8ed;
    background: #f8fafc;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

/* Animation Speeds */
.stream-left .stream-track {
    animation: scrollLeftInfinite 45s linear infinite;
}

.stream-right .stream-track {
    animation: scrollRightInfinite 45s linear infinite;
}

/* Hover: Pause & Highlight */
.stream-row:hover .stream-track {
    animation-play-state: paused;
}

.stream-track img:hover {
    transform: scale(1.05) translateY(-5px);
    border: 3px solid #003d71; /* Science Utsav Royal Blue */
    box-shadow: 0 15px 30px rgba(0, 61, 113, 0.15);
    z-index: 10;
}

/* Keyframes for Smooth Looping */
@keyframes scrollLeftInfinite {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% / 2)); }
}

@keyframes scrollRightInfinite {
    from { transform: translateX(calc(-100% / 2)); }
    to { transform: translateX(0); }
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .stream-track img {
        height: 140px;
        width: 200px;
    }
    .stream-row {
        mask-image: none; /* Clearer on mobile */
    }
}

/* Founder Section */
/* Reset and Container */
.sdg-founder-section {
    background-color: #ffffff;
    padding: 50px 0; /* Reduced padding */
    color: #333;
}

.container-minimal {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Area */
.header-content {
    text-align: center;
    margin-bottom: 25px; /* SHRUNK GAP AS REQUESTED */
}

.sdg-title-image {
    width: 100%;
    max-width: 750px; /* EXACTLY 750PX */
    height: auto;
    margin-bottom: 15px;
}

.poppins-intro {
    font-family: 'Poppins', sans-serif; /* POPPINS FONT */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    max-width: 850px;
    margin: 0 auto;
}

/* Grid Layout */
.main-layout-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.visual-area {
    flex: 1.2;
}

.sdg-grid-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Quote Sidebar */
.quote-area {
    flex: 1;
}

.quote-wrapper {
    position: relative;
    padding-left: 10px;
}

.quote-icon {
    margin-bottom: 10px;
    opacity: 0.6;
}

.speech-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    line-height: 1.5;
    font-style: italic;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 30px 0;
}

/* Founder Styling */
.founder-card {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.f-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.f-name {
    display: block;
    font-weight: 700;
    color: #0066cc;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.f-role {
    display: block;
    font-size: 0.9rem;
    color: #777;
    font-family: 'Poppins', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .main-layout-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .founder-card {
        justify-content: center;
    }
    
    .sdg-title-image {
        max-width: 90%;
    }
}


 


/* FAq Section */
.su-faq-section {
    background-color: #ffffff; /* White background as requested */
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

.su-container {
    max-width: 800px; /* Reduced width for better focus */
    margin: 0 auto;
}

/* Title Image */
.su-title-box {
    text-align: center;
    margin-bottom: 40px;
}

.su-png-title {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Compact Card Styling */
.su-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Small gap between items */
}

.su-faq-item {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); /* Very subtle shadow */
}

.su-faq-header {
    padding: 15px 20px; /* Slim padding */
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.su-q-num {
    font-size: 14px;
    font-weight: 600;
    color: #007bff; /* Blue */
    margin-right: 15px;
    opacity: 0.6;
}

.su-q-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* Slim Plus Icon */
.su-plus-icon {
    width: 12px;
    height: 12px;
    position: relative;
}

.su-plus-icon::before, .su-plus-icon::after {
    content: '';
    position: absolute;
    background: #ff6600; /* Orange */
    transition: transform 0.3s ease;
}

/* Horizontal line */
.su-plus-icon::before {
    width: 100%; height: 2px; top: 5px; left: 0;
}
/* Vertical line */
.su-plus-icon::after {
    width: 2px; height: 100%; top: 0; left: 5px;
}

/* Active State Styles */
.su-faq-item.active {
    border-color: #007bff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
}

.su-faq-item.active .su-plus-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.su-faq-item.active .su-q-text {
    color: #007bff;
}

/* Content Area */
.su-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9; /* Slight contrast for content area */
}

.su-faq-body p {
    padding: 15px 20px 15px 50px; /* Aligned text */
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Hover Effect */
.su-faq-item:hover {
    border-color: #ff6600;
}