
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');

:root {
    --orange: #f47b20;
    --navy: #051b35;
}

.integrated-text-banner {
    padding: 60px 0;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
}

.banner-frame {
    position: relative;
    width: 100%;
    min-height: 580px;
    border-radius: 40px;
    overflow: hidden;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Keeps text to the left */
}

/* BACKGROUND VIDEO */
.banner-bg {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* SUBTLE OVERLAY - Removed Gradient for Clarity */
.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: transparent; /* Removed all overlays as requested */
    z-index: 2;
}

/* TEXT AREA - MOVED FAR LEFT */
.banner-content-box {
    position: relative;
    z-index: 3;
    padding-left: 60px;
    max-width: 900px;
    text-align: left;
}

/* UNIQUE CINEMATIC REVEAL ANIMATION */
.reveal-item {
    opacity: 0;
    transform: translateY(40px) skewY(3deg);
    clip-path: inset(0 100% 0 0); /* Hidden left-to-right */
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Active Class triggered by Vue */
.reveal-visible {
    opacity: 1;
    transform: translateY(0) skewY(0);
    clip-path: inset(0 0 0 0); /* Fully revealed */
}

/* HEADLINE STYLING */
.intro-line { color: #fff; font-size: 1.4rem; margin-bottom: 5px; }

.main-headline {
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center; 
    gap: 15px;
    line-height: 1;
    margin-bottom: 25px;
}

.light-text { font-size: 2.6rem; font-weight: 600; }

.big-bold-orange {
    font-size: 6.2rem;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: -4px;
}

.sub-q-wrap {
    border-left: 4px solid var(--orange);
    padding-left: 20px;
    margin-bottom: 30px;
}

.sub-q-wrap p { color: #fff; font-size: 1.3rem; margin: 0; font-style: italic; }

.final-statement { color: #fff; font-size: 1.6rem; font-weight: 500; line-height: 1.4; }
.highlight-text { color: var(--orange); font-weight: 800; }

.sound-toggle {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    /* Removed backdrop-filter blur */
    transition: 0.3s;
    font-weight: 600;
}

.sound-toggle:hover { background: var(--orange); border-color: var(--orange); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .big-bold-orange { font-size: 4rem; }
    .light-text { font-size: 1.8rem; }
    .banner-content-box { padding-left: 40px; }
}

@media (max-width: 768px) {
    .main-headline { flex-direction: column; align-items: flex-start; gap: 0; }
    .big-bold-orange { font-size: 3.5rem; letter-spacing: -2px; }
    .light-text { font-size: 1.5rem; }
    .banner-frame { min-height: 520px; }
}



/* ============================================== 
   13. FOOTER SECTION 
   ============================================== */

.site-footer {
    background-color: #0d3c75; /* Brand Dark Blue */
    color: #ffffff;
    padding: 70px 0 0 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

/* --- Brand Column --- */
.brand-col {
    flex: 1.2; /* Slightly wider */
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-desc {
    font-size: 14px;
    color: #dbeafe; /* Light Blue-White */
    line-height: 1.7;
    margin-bottom: 25px;
    padding-right: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #f7941d; /* Brand Orange */
    transform: translateY(-3px);
}

/* --- Headings & Links --- */
.footer-heading {
    color: #f7941d; /* Brand Orange */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Small underline for headings */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #dbeafe;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 10px;
    color: #f7941d;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px; /* Subtle slide effect */
}

/* --- Contact & Offices --- */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-item i {
    color: #f7941d;
    font-size: 16px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* Office Locations Styling */
.office-locations {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.office-block h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    border-left: 3px solid #f7941d; /* Orange accent line */
    padding-left: 8px;
}

.office-block p {
    font-size: 12px;
    color: #dbeafe;
    line-height: 1.5;
    padding-left: 11px; /* Align with text above */
}

/* --- Footer Bottom --- */
.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #f7941d;
}

.legal-links span {
    margin: 0 10px;
}

/* --- Responsive for Footer --- */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-col {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 20px;
    }
    
    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

    /* ============================================== 
   INNOVATION BLUEPRINT UI (MAIN CONTENT)
   ============================================== */

.innovation-blueprint {
    padding: 40px 0; /* Compact Vertical Space */
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.blueprint-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Asymmetrical split */
    gap: 40px;
    align-items: flex-start;
}

/* --- Left Side: Narrative --- */
.bp-title {
    font-size: 32px;
    font-weight: 800;
    color: #0d3c75;
    line-height: 1.1;
    margin-bottom: 20px;
}

.bp-title span { color: #f7941d; }

.bp-lead {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.bp-india-box {
    background: #f4f7fc;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #0d3c75;
    margin-bottom: 25px;
}

.bp-india-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f7941d;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.bp-india-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #0d3c75;
    font-style: italic;
    line-height: 1.5;
}

.bp-vision {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* --- Right Side: Visual & Modules --- */
.bp-modules {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bp-main-image {
    position: relative;
    width: 100%;
    height: 220px; /* Compact height */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Sharper shadow */
}

.bp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-border-accent {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 5px;
    background: #0d3c75; /* Solid color instead of gradient */
}

/* Lab Row Styling */
.bp-lab-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bp-lab-card {
    background: #fff;
    border: 1px solid #eef2f6;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(13, 60, 117, 0.03);
    transition: 0.3s ease;
}

.bp-lab-card:hover {
    transform: translateY(-5px);
    border-color: #0d3c75;
    box-shadow: 0 15px 30px rgba(13, 60, 117, 0.08);
}

.bp-lab-card.orange-theme:hover {
    border-color: #f7941d;
}

.bp-lab-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bp-lab-header img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.bp-lab-header h4 {
    font-size: 18px;
    color: #0d3c75;
    font-weight: 700;
    margin: 0;
}

.bp-lab-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* --- Mobile Responsive --- */
@media (max-width: 992px) {
    .blueprint-grid { grid-template-columns: 1fr; }
    .bp-lab-row { grid-template-columns: 1fr; }
    .bp-main-image { height: 200px; }
}


    /* ============================================== 
   UNIQUE STYLIZED MYTHS SECTION
   ============================================== */

.unique-myths-area {
    padding: 60px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.myth-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 16px;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.myth-main-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #0d3c75;
    margin-bottom: 60px;
}

.myth-main-title .orange { color: #f7941d; }

/* Zig-Zag Row Logic */
.myth-flow {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Reduced gap to keep section height low */
    max-width: 1000px; /* Centered content focus */
    margin: 0 auto;
}

.myth-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.myth-row.reverse {
    flex-direction: row-reverse;
}

/* SMALL CURVED PHOTO STYLING */
.myth-image-wrap {
    flex: 0.7; /* Makes the image area smaller */
    max-width: 320px; /* Strictly controls the image size */
}

.myth-image-wrap img {
    width: 100%;
    height: 220px; /* Fixed small height */
    object-fit: cover;
    /* UNIQUE DESIGN: Asymmetrical curves */
    border-radius: 60px 10px 60px 10px; 
    box-shadow: 15px 15px 0px rgba(13, 60, 117, 0.05); /* Soft offset shadow */
    transition: all 0.4s ease;
}

.myth-row:hover .myth-image-wrap img {
    border-radius: 10px 60px 10px 60px; /* Unique hover animation */
    transform: scale(1.03);
}

/* Content Side */
.myth-text-wrap {
    flex: 1.3;
}

.myth-tag {
    font-size: 11px;
    font-weight: 700;
    color: #d93025; /* Myth Red */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.myth-text-wrap h3 {
    font-size: 20px;
    color: #0d3c75;
    font-weight: 700;
    margin-bottom: 15px;
}

.truth-pill {
    background: #f4f7fc;
    padding: 20px;
    border-radius: 15px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    border-left: 4px solid #f7941d; /* Orange accent for Truth */
}

.truth-pill strong {
    color: #0d3c75;
    margin-right: 5px;
}

/* ============================================== 
   THE REDUCED SIZE CARD (FROM PHOTO)
   ============================================== */
.mindset-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.mindset-card {
    background: #0d3c75;
    color: #fff;
    /* Reduced padding to make the card thin */
    padding: 12px 40px; 
    border-radius: 100px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(13, 60, 117, 0.05); /* Sharper shadow */
    /* Prevents card from being too wide */
    max-width: fit-content; 
}

.mindset-card h5 {
    font-size: 11px; /* Smaller header */
    text-transform: uppercase;
    color: #f7941d;
    margin-bottom: 2px;
    letter-spacing: 1px;
    font-weight: 700;
}

.mindset-card p {
    font-size: 16px; /* Smaller main text */
    font-weight: 600;
    margin: 0;
}

.mindset-card p .highlight {
    color: #f7941d;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .myth-row, .myth-row.reverse {
        flex-direction: column;
        text-align: center;
    }
    .myth-image-wrap { width: 100%; max-width: 280px; margin: 0 auto; }
    .mindset-card { padding: 15px 25px; border-radius: 20px; }
}

/* ============================================== 
   LAB TRANSFORMER STYLES (PHOTO FIX)
   ============================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

.lab-transform-area {
    padding: 80px 0;
    background: #fdfdfd;
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;
}

.header-minimal { text-align: center; margin-bottom: 60px; }
.setup-title { font-size: 32px; font-weight: 800; color: #0d3c75; margin-bottom: 10px; }
.setup-title span { color: #f7941d; }
.header-minimal p { color: #888; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; font-weight: 600; }

.transformer-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* --- LEFT SIDE: NAVIGATOR --- */
.steps-column { flex: 0 0 350px; display: flex; flex-direction: column; gap: 20px; }

.step-card {
    background: #fff;
    padding: 25px;
    border-radius: 30px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.4s ease;
}

.step-card.active {
    background: #0d3c75;
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(13, 60, 117, 0.15);
}

.step-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.step-num { font-size: 14px; font-weight: 800; color: #f7941d; }
.step-card h3 { font-size: 20px; font-weight: 700; color: #0d3c75; margin: 0; }
.step-card.active h3 { color: #fff; }
.step-content p { font-size: 14px; color: #666; margin-bottom: 15px; }
.step-card.active p { color: rgba(255,255,255,0.7); }

.tag-row { display: flex; gap: 8px; }
.tag-row span { background: #f4f7fa; padding: 5px 12px; border-radius: 12px; font-size: 11px; font-weight: 600; color: #0d3c75; }
.step-card.active .tag-row span { background: rgba(255,255,255,0.1); color: #fff; }

/* --- RIGHT SIDE: THE VIEWER (FIXED) --- */
.viewer-column { flex: 1; position: sticky; top: 50px; }

.slider-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1); /* Reduced heavy shadow */
    background-color: #e0e0e0; /* Fallback if photo fails */
}

.img-box { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    transition: opacity 0.5s ease;
}

/* SET INITIAL IMAGES HERE SO THEY SHOW UP IMMEDIATELY */
.bg-img { 
    background-image: url('https://scienceutsav.com/wp-content/uploads/2023/12/Robotics-IoT-Lab-Before.jpg'); 
}

.fg-img { 
    background-image: url('https://scienceutsav.com/wp-content/uploads/2023/12/Robotics-IoT-Lab-After.jpg');
    width: 50%;
    z-index: 2;
    border-right: 3px solid #fff;
}

/* --- THE PILL HANDLE --- */
.real-input {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    z-index: 10;
    cursor: ew-resize;
    margin: 0;
}

.real-input::-webkit-slider-thumb { -webkit-appearance: none; width: 40px; height: 500px; }
.real-input::-moz-range-thumb { width: 40px; height: 500px; background: transparent; border: none; }

.slider-divider {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 3px; background: rgba(255,255,255,0.9);
    z-index: 5; pointer-events: none; transform: translateX(-50%);
}

.pill-handle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 90px;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Sharper, smaller shadow */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.pill-handle i { width: 3px; height: 20px; background: #333; border-radius: 5px; opacity: 0.6; }

/* Labels */
.badge-lab {
    position: absolute; top: 25px; padding: 10px 18px;
    font-size: 11px; font-weight: 800; color: #fff;
    border-radius: 12px; z-index: 6;
    /* Removed backdrop-filter blur */
}
.b-before { right: 25px; background: rgba(0,0,0,0.5); }
.b-after { left: 25px; background: rgba(247, 148, 29, 0.9); }

/* CTA BAR */
.floating-cta {
    margin-top: 25px;
    background: #fff;
    padding: 20px 35px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
}
.cta-button {
    background: #f7941d; color: #fff !important;
    padding: 14px 30px; border-radius: 15px;
    text-decoration: none; font-weight: 800;
}

@media (max-width: 991px) {
    .transformer-grid { flex-direction: column; }
    .steps-column { order: 2; width: 100%; }
    .viewer-column { order: 1; width: 100%; position: relative; top: 0; margin-bottom: 20px; }
    .slider-wrapper { height: 300px; }
}

/* --- COMPACT BELIEF STYLES --- */
.compact-belief-area {
    padding: 40px 0;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.belief-card {
    max-width: 950px;
    margin: 0 auto;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 35px 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.belief-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #0d3c75;
}

.belief-text-side {
    flex: 2;
}

.belief-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f7941d;
    display: block;
    margin-bottom: 10px;
}

.belief-headline {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #334155;
}

.belief-headline .navy { color: #0d3c75; }
.belief-headline .orange { color: #f7941d; }

.belief-quote {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.belief-quote strong {
    color: #0d3c75;
    font-weight: 700;
    font-style: normal;
}

/* --- AUTHOR SIDE --- */
.belief-author-side {
    flex: 1; /* Increased flex slightly to accommodate larger image */
    display: flex;
    justify-content: flex-end;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 20px; /* Increased gap */
    background: #fff;
    padding: 15px 25px; /* Increased padding */
    border-radius: 60px; /* More rounded for larger size */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.author-profile img {
    width: 150px;  /* INCREASED SIZE FROM 45px */
    height: 150px; /* INCREASED SIZE FROM 45px */
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f7941d; /* Slightly thicker border for scale */
}

.author-meta h4 {
    margin: 0;
    font-size: 16px; /* Slightly larger text */
    color: #0d3c75;
    font-weight: 700;
}

.author-meta span {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .belief-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
        gap: 25px;
    }
    .belief-author-side {
        justify-content: center;
    }
    .belief-headline {
        font-size: 22px;
    }
    .belief-card::before {
        width: 100%;
        height: 6px;
        bottom: auto;
    }
    .author-profile {
        padding: 10px 20px;
    }
    .author-profile img {
        width: 60px; /* Slightly smaller on mobile so it doesn't break layout */
        height: 60px;
    }
}

        /* ============================================== 
   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;
    /* Removed mask-image gradient as requested */
}

.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 */
    }
}



/* CONTACT FORM SECTION - Uses .join-movement-section from style.css */
/* .form-wrapper is OVERRIDDEN below to match the Home Page 3-column layout */
.contact-form-section {
    padding: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* FORCE the correct 3-column grid layout — matches Home Page exactly */
.form-wrapper {
    display: grid !important;
    grid-template-columns: 280px 40px 1fr !important;
    align-items: center !important;
    background: #fff !important;
    padding: 10px 25px !important;
    border-radius: 35px !important;
    box-shadow: 0 25px 60px rgba(0, 71, 147, 0.1) !important;
    max-width: 820px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    border: 1px solid #f0f4f8 !important;
    gap: unset !important;
}

.input-group { margin-bottom: 8px; }
.input-group label { display: block; font-weight: 700; margin-bottom: 4px; color: #444; font-size: 0.8rem; }
.input-field { position: relative; display: block; width: 100%; }
.input-field i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #0077b6; z-index: 10; pointer-events: none; font-size: 14px; margin: 0 !important; }
.input-field input {
    width: 100% !important;
    padding: 8px 15px 8px 45px !important;
    border: 2px solid #f0f4f8 !important;
    border-radius: 10px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.9rem !important;
    background: #fcfdfe !important;
    outline: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    height: 38px !important;
}
.input-field input:focus { border-color: #0077b6 !important; background: #fff !important; outline: none !important; }

/* --- BUTTON GROUP (SIDE BY SIDE) --- */
.form-btn-group { display: flex; gap: 15px; margin-top: 10px; }

.btn-submit, .btn-expert {
    flex: 1; padding: 18px 10px; border: none; border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    display: flex; justify-content: center; align-items: center; gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit { background: #ff6b6b; color: #fff; box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3); }
.btn-submit:hover { background: #fa5252; transform: translateY(-3px); }

.btn-expert { background: #003d71; color: #fff; box-shadow: 0 8px 20px rgba(0, 61, 113, 0.2); }
.btn-expert:hover { background: #002d54; transform: translateY(-3px); }

/* Responsive */
@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr !important;
        padding: 30px 20px !important;
        max-width: 500px !important;
    }
}
@media (max-width: 480px) { .form-btn-group { flex-direction: column; } } 


/* 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;
}
