    /* ============================================== 
   1. GLOBAL RESET & TYPOGRAPHY
   ============================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    /* ADD THIS LINE FOR SMOOTH SCROLLING */
    scroll-behavior: smooth;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden; 
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f4f7fc;
    color: #333;
    
    /* REMOVED padding-top here to fix the gap */
}

.container { 
    max-width: 1250px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* ============================================== 
   2. HEADER SECTION (FIXED)
   ============================================== */
.site-header { 
    background: #fff; 
    padding: 10px 0; 
    position: fixed; /* Pinned to top */
    top: 0; 
    left: 0;
    width: 100%; 
    z-index: 1000; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
    
    /* Defines exact height: 50px logo + 20px padding = 70px total */
    height: 70px; 
}

.header-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 100%; /* Ensures alignment */
}

.logo img { 
    height: 50px; 
    display: block; 
}

/* Navigation */
.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 25px; /* Slightly reduced gap to accommodate the extra Home tab */
    align-items: center;
}

.nav-link { 
    text-decoration: none; 
    color: #0d3c75; 
    font-weight: 600; 
    font-size: 15px; 
    transition: color 0.3s; 
    padding: 10px 0; 
    display: flex;
    align-items: center; /* Keeps text and icons perfectly aligned */
}

.nav-link:hover { 
    color: #f7941d; 
}

/* Icons Logic */
.nav-link i { 
    font-size: 11px; 
    margin-left: 5px; /* This is for the arrows on the right */
}

/* SPECIFIC STYLE FOR HOME ICON */
.nav-link i.fa-home {
    font-size: 16px;     /* Makes home icon slightly larger than arrows */
    margin-left: 0;      /* Removes left margin */
    margin-right: 8px;   /* Adds space between house icon and "Home" text */
    color: inherit;      /* Keeps the same color as the text */
}

/* Dropdown */
.nav-item { 
    position: relative; 
}

.dropdown { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: white; 
    width: 200px; 
    list-style: none; 
    padding: 0; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    border-radius: 6px; 
    display: none; 
    z-index: 1000; 
    border-top: 3px solid #f7941d; 
}

.dropdown li a { 
    text-decoration: none; 
    color: #0d3c75; 
    display: block; 
    padding: 12px 20px; 
    font-size: 14px; 
    font-weight: 500; 
    border-bottom: 1px solid #f0f0f0; 
    transition: 0.3s; 
}

.dropdown li a:hover { 
    background-color: #f9f9f9; 
    color: #f7941d; 
    padding-left: 25px; 
}

.nav-item:hover .dropdown { 
    display: block; 
}

/* Shop Button */
.header-btn .btn-shop { 
    background: #003366; 
    color: white; 
    text-decoration: none; 
    padding: 10px 25px; 
    border-radius: 50px; 
    font-weight: bold; 
    font-size: 14px; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    transition: 0.3s; 
    box-shadow: 0 4px 10px rgba(0,51,102,0.2); 
}

.btn-shop:hover { 
    background: #f7941d; 
}

/* Mobile Menu Icon */
.hamburger { 
    display: none; 
    cursor: pointer; 
} 
.bar { 
    display: block; 
    width: 25px; 
    height: 3px; 
    margin: 5px auto; 
    background-color: #0d3c75; 
    transition: 0.3s;
}

/* ============================================== 
   HEADER MOBILE UPDATES 
   ============================================== */

@media (max-width: 992px) {
    .site-header {
        padding: 0 20px;
    }

    .header-btn {
        display: none; /* Hides the button from the main header row */
    }

    .hamburger {
        display: block; 
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        right: -100%; 
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        padding: 40px 0;
        gap: 10px;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0; 
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 18px;
        display: flex;
        justify-content: center; /* Center Home icon and text on mobile */
        padding: 15px;
    }

    .dropdown {
        position: static; 
        width: 100%;
        box-shadow: none;
        border-top: none;
        background: #f9f9f9;
        display: none; 
    }

    .nav-item:hover .dropdown {
        display: block; 
    }

    /* Hamburger Animation to 'X' */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@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;
    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 - Reduced for high visibility */
.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, 
        rgba(5, 27, 53, 0.45) 0%, 
        rgba(5, 27, 53, 0.15) 40%, 
        transparent 100%);
    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;
    filter: blur(20px);
    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;
    filter: blur(0);
    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;
    backdrop-filter: blur(10px);
    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: 16px;
    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 10px 30px rgba(0,0,0,0.1);
}

.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: linear-gradient(to right, #0d3c75, #f7941d);
}

/* 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: 13px;
    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: 34px;
    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: 22px;
    color: #0d3c75;
    font-weight: 700;
    margin-bottom: 15px;
}

.truth-pill {
    background: #f4f7fc;
    padding: 20px;
    border-radius: 15px;
    font-size: 15px;
    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 8px 20px rgba(13, 60, 117, 0.15);
    /* 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: 18px; /* 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: 42px; 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 40px 80px rgba(0,0,0,0.12);
    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 10px 30px rgba(0,0,0,0.3);
    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;
    backdrop-filter: blur(10px); border-radius: 12px; z-index: 6;
}
.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;
    /* 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 */
    }
}



/* --- BASE WRAPPER --- */
.su-section-wrapper {
    padding: 60px 20px;
    background-color: #f4f8fb;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
}

.su-main-card {
    background: #ffffff;
    width: 100%;
    max-width: 1000px;
    border-radius: 40px;
    padding: 50px 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.su-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* --- LEFT SIDE --- */
.su-badge {
    background: #e8f5ff;
    color: #0077b6;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.su-title {
    font-size: 42px;
    font-weight: 800;
    color: #003366;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.su-title span {
    color: #ff6b6b;
}

.su-text {
    font-size: 16px;
    color: #556070;
    line-height: 1.6;
    margin-bottom: 25px;
}

.su-features {
    list-style: none;
    padding: 0;
}

.su-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.su-features li i {
    color: #28a745;
    font-size: 18px;
}

/* --- RIGHT SIDE (FORM) --- */
.su-input-row {
    margin-bottom: 18px;
}

.su-input-row label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    text-align: left;
}

.su-input-box {
    position: relative;
}

.su-input-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #0077b6;
    font-size: 14px;
}

.su-input-box input {
    width: 100% !important;
    height: 55px !important;
    padding: 0 15px 0 45px !important;
    border: 1px solid #eef2f6 !important;
    background: #f9fbfd !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    color: #333;
    transition: 0.3s;
    outline: none !important;
    box-sizing: border-box !important;
}

.su-input-box input:focus {
    border-color: #0077b6 !important;
    background: #fff !important;
}

/* --- BUTTONS --- */
.su-button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.su-btn-send, .su-btn-expert {
    flex: 1;
    height: 60px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    color: #fff;
}

.su-btn-send {
    background: #ff6b6b;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.su-btn-expert {
    background: #003d71;
    box-shadow: 0 4px 15px rgba(0, 61, 113, 0.2);
}

.su-btn-send:hover, .su-btn-expert:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* --- MODAL POPUP --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px);
    display: none; justify-content: center; align-items: center; z-index: 99999;
}
.modal-overlay.active { display: flex !important; }
.modal-box {
    background: #fff; width: 90%; max-width: 360px; border-radius: 30px;
    position: relative; padding: 40px 20px; text-align: center;
    animation: zoomIn 0.3s ease;
}
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 28px; border: none; background: none; cursor: pointer; color: #ccc; }
.profile-img-container { width: 100px; height: 100px; margin: 0 auto 15px; border-radius: 50%; padding: 4px; background: linear-gradient(45deg, #f47b20, #003366); }
.profile-img-container img { width: 100%; height: 100%; border-radius: 50%; border: 3px solid #fff; object-fit: cover; }
.profile-name { color: #003366; font-size: 24px; font-weight: 800; margin: 0; }
.profile-designation { color: #f47b20; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.profile-bio { font-size: 14px; color: #666; margin: 10px 0; line-height: 1.4; }
.contact-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.btn-main-call { background: #28a745; color: #fff; text-decoration: none; padding: 12px; border-radius: 12px; font-weight: 700; }
.btn-secondary-wa { border: 2px solid #003366; color: #003366; text-decoration: none; padding: 12px; border-radius: 12px; font-weight: 700; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .su-main-card { padding: 40px 30px; }
    .su-grid { grid-template-columns: 1fr; gap: 40px; }
    .su-info-col { text-align: center; }
    .su-features li { justify-content: center; }
}

@media (max-width: 480px) {
    .su-title { font-size: 32px; }
    .su-button-group { flex-direction: column; }
    .su-main-card { padding: 30px 20px; border-radius: 25px; }
} 


/* 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;
}
