/* ============================================== 
   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);
    }
}



/* ============================================== 
   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;
    }
}


/* ============================================== 
   SCIENCE UTSAV SECTION
   ============================================== */
.how-it-works {
    padding: 60px 5%;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.title-png {
    width: 750px; 
    max-width: 100%; 
    height: auto;
    display: block;
    margin: 0 auto 25px auto;
}

.main-description {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
    color: #003366;
    max-width: 950px;
    margin: 0 auto;
}

/* GRID SYSTEM */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    margin-top: 40px;
}

.step-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244, 123, 32, 0.15);
}

.step-img-wrapper {
    position: relative;
    height: 170px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.step-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
}

.step-number {
    position: absolute;
    top: 15px; left: 15px;
    background: #f47b20; color: #fff;
    width: 35px; height: 35px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; font-weight: 700; z-index: 2;
}

.step-info {
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1;
}

.step-info h3 {
    color: #003366; font-size: 18px; margin-bottom: 12px; font-weight: 700; min-height: 46px;
}

.step-info p {
    color: #666; font-size: 13.5px; line-height: 1.6; margin-bottom: 25px;
}

.cta-trigger {
    background: #f47b20; border: none; color: #fff;
    padding: 10px 25px; border-radius: 50px;
    font-weight: 700; font-size: 12px; cursor: pointer;
    text-transform: uppercase; transition: 0.3s;
}

.cta-trigger:hover { background: #003366; }

/* ============================================== 
   MODAL POPUP STYLES (The Fix)
   ============================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 51, 102, 0.85);
    backdrop-filter: blur(8px);
    display: none; /* Controlled by JS */
    z-index: 99999; /* Ensure it's above everything */
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    animation: popUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute; top: 20px; right: 20px;
    font-size: 30px; border: none; background: none; 
    cursor: pointer; color: #aaa; line-height: 1;
}

.modal-header { text-align: center; margin-bottom: 20px; }
.modal-header h3 { color: #003366; font-size: 24px; margin-bottom: 5px; }
.modal-header p { color: #666; font-size: 14px; }

/* FORM STYLING */
#enquiryForm { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }

#enquiryForm input, 
#enquiryForm select, 
#enquiryForm textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    box-sizing: border-box; /* Critical for layout */
}

#enquiryForm input:focus { border-color: #f47b20; }

.submit-btn {
    background: #f47b20; color: #fff; padding: 15px;
    border-radius: 12px; border: none; font-weight: 700;
    cursor: pointer; font-size: 16px; transition: 0.3s;
}

.submit-btn:hover { background: #003366; }

/* RESPONSIVE SCROLLING */
@media (max-width: 1024px) {
    .steps-grid {
        display: flex; overflow-x: auto; padding-bottom: 20px;
        scroll-snap-type: x mandatory; gap: 15px;
    }
    .step-card { min-width: 280px; scroll-snap-align: center; }
}

/* ============================================== 
   NOTEBOOK SECTION & MODAL STYLES
   ============================================== */

/* Font Awesome Import (If not already in your site) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.notebook-dreams-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-color: #fff;
    background-image: repeating-linear-gradient(#ffffff, #ffffff 31px, #e3ebf3 32px);
    overflow: hidden;
}

.dreams-container { 
    max-width: 1250px; 
    margin: 0 auto; 
    padding: 0 5%; 
}

.nb-title-wrapper { text-align: center; margin-bottom: 10px; }
.nb-title-png { width: 750px; max-width: 100%; height: auto; }

.dreams-row { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 60px;
}

.dreams-image-col { flex: 1; text-align: center; }

.video-trigger-box {
    position: relative;
    cursor: pointer;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    filter: drop-shadow(15px 15px 30px rgba(0, 51, 102, 0.12));
}

.main-illustration { width: 100%; height: auto; display: block; }

/* Blinking Play Button */
.blinking-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 75px; height: 75px;
    background: #f47b20; 
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: blinkPulse 1.8s infinite ease-in-out;
    z-index: 5;
}

@keyframes blinkPulse {
    0% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0px #f47b20; }
    50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 20px rgba(244, 123, 32, 0.6); }
    100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0px #f47b20; }
}

.watch-btn-wrapper { margin-top: 20px; }
.watch-video-btn {
    background: #003366;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.watch-video-btn:hover { background: #f47b20; transform: translateY(-2px); }

/* Text Content */
.dreams-text-col { flex: 1; }
.science-list { list-style: none; padding: 0; margin: 0; }
.science-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem; color: #003366;
    line-height: 32px; position: relative; padding-left: 25px;
}
.science-list li::before {
    content: "•"; color: #f47b20; position: absolute; left: 0; font-size: 1.5rem;
}
.conclusion-text {
    font-size: 1.08rem; line-height: 32px; color: #555;
    margin-top: 32px; font-weight: 500; font-family: 'Poppins', sans-serif;
}

/* MODAL STYLING (THE FIX) */
.video-modal-overlay {
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.95);
    display: none; /* Controlled by JS */
    z-index: 99999; 
    align-items: center; 
    justify-content: center;
    backdrop-filter: blur(8px);
}

.video-modal-overlay.active { 
    display: flex; 
}

.video-modal-box { 
    width: 95%; 
    max-width: 900px; 
    position: relative; 
}

.video-container { 
    position: relative; 
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0; 
    border-radius: 15px; 
    overflow: hidden; 
    background: #000;
}

/* FIXED: Target video tag instead of iframe */
.video-container video { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    outline: none;
    object-fit: contain;
}

.close-video-modal { 
    position: absolute; 
    top: -55px; 
    right: 0; 
    background: none; 
    border: none; 
    color: #fff; 
    font-size: 45px; 
    cursor: pointer; 
}

@media (max-width: 991px) {
    .dreams-row { flex-direction: column; text-align: center; }
    .nb-title-png { width: 350px; }
    .science-list li { text-align: left; }
}


/* SCIENCE UTSAV OFFERINGS SECTION */
:root {
    --su-navy: #003366;
    --su-orange: #F47B20;
    --su-bg-color: #F8FAFF;
}

.su-offerings-section {
    background-color: var(--su-bg-color);
    position: relative;
    padding-bottom: 50px; /* Increased padding since buttons are gone */
    background-image: radial-gradient(rgba(0,51,102,0.05) 1px, transparent 0px);
    background-size: 30px 30px;
}

.su-top-gradient {
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #ffffff, var(--su-bg-color));
}

.su-section-header {
    text-align: center;
    margin-top: -50px;
    margin-bottom: 30px;
}
.su-section-header img {
    width: 100%;
    max-width: 750px;
    height: auto;
}

.su-grid-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 20px;
}

.su-card {
    background: #ffffff;
    width: 380px; 
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 51, 102, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

.su-card::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 10px;
    background: var(--su-navy); z-index: 10;
}
.su-card.su-featured::before { background: var(--su-orange); }

.su-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 51, 102, 0.1);
}

.su-image-holder {
    height: 320px;
    padding: 45px 30px 10px 30px;
    display: flex; align-items: center; justify-content: center;
}
.su-image-holder img {
    max-width: 100%; max-height: 100%; object-fit: contain;
}

.su-card-body { padding: 10px 40px 45px 40px; text-align: center; display: flex; flex-direction: column; flex-grow: 1; }
.su-category { font-size: 0.8rem; text-transform: uppercase; font-weight: 700; color: var(--su-navy); opacity: 0.6; }
.su-card-title { font-size: 1.8rem; font-weight: 800; color: var(--su-navy); margin: 5px 0 15px 0; }

.su-price-panel { background: #f1f6fb; border-radius: 20px; padding: 20px; margin-bottom: 25px; border: 1px dashed #d6e2ee; }
.su-featured .su-price-panel { background: #fff8f1; border-color: #ffdcb6; }
.su-label { display: block; font-size: 0.9rem; color: var(--su-navy); margin-bottom: 5px; font-weight: 600; }
.su-price { font-size: 2.2rem; font-weight: 800; color: var(--su-orange); }

.su-feature-list { list-style: none; padding: 0; margin: 0; text-align: left; }
.su-feature-list li { font-size: 0.95rem; color: #576574; margin-bottom: 10px; display: flex; align-items: center; }
.su-feature-list li::before {
    content: '✓'; background: #e5f2ff; color: var(--su-navy);
    width: 22px; height: 22px; border-radius: 50%; display: inline-flex;
    align-items: center; justify-content: center; font-size: 11px; margin-right: 15px;
}

.su-ribbon {
    position: absolute; top: 25px; right: -40px; color: #fff; padding: 7px 50px;
    font-size: 0.7rem; font-weight: 800; transform: rotate(45deg); z-index: 20;
}
.ribbon-blue { background: var(--su-navy); }
.ribbon-orange { background: var(--su-orange); }
.ribbon-dark { background: #333; }

@media (max-width: 768px) {
    .su-grid-container { flex-direction: column; align-items: center; }
    .su-card { width: 95%; max-width: 380px; }
}

/* ========================================== 
   MASTER STEM SECTION - CLEAN WHITE UI
   ========================================== */

.master-product-section { 
    padding: 10px 0; 
    background: #ffffff; 
    font-family: 'Poppins', sans-serif; 
    overflow: hidden; 
}

/* --- REFINED HEADER --- */
.master-header { 
    text-align: center; 
    margin-bottom: 50px; 
    padding: 0 5%;
}

.m-title-png {
    width: 750px; 
    max-width: 100%; 
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
}

.m-description {
    font-size: 1.1rem;
    line-height: 1.8; /* Increased for better readability */
    font-weight: 500;
    color: #444; /* Slightly softer than pure blue for long text */
    max-width: 900px; /* Limits width so text doesn't stretch too far */
    margin: 0 auto;
    text-align: center;
}

/* Style for any bold or highlighted words inside the paragraph */
.m-description span {
    color: #003366;
    font-weight: 700;
}

/* --- FILTER PILLS --- */
.m-filter-tabs { 
    display: flex; 
    justify-content: center; 
    gap: 12px; 
    margin-bottom: 45px; 
    flex-wrap: wrap; 
}

.m-pill { 
    padding: 10px 26px; 
    border: 1px solid #003366;
    background: transparent; 
    color: #003366; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 14px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
}

.m-pill.active, .m-pill:hover { 
    background: #003366; 
    color: #fff; 
}

/* --- SWIPER WRAPPER --- */
.m-swiper-outer-wrapper { 
    position: relative; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 65px; 
}

/* Navigation Arrows */
.m-nav-btn { 
    width: 46px; 
    height: 46px; 
    background: #003366 !important; 
    color: #fff !important; 
    border-radius: 50%; 
    display: flex !important; 
    align-items: center; 
    justify-content: center; 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 999; 
    cursor: pointer; 
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.m-nav-btn:hover { background: #f7941d !important; }
.m-prev { left: 10px; }
.m-next { right: 10px; }

/* --- PRODUCT CARD --- */
.m-card { 
    background: #ffffff; 
    border-radius: 20px; 
    display: flex; 
    overflow: hidden; 
    margin: 15px; 
    border: 1px solid #e0e6ed;
    min-height: 270px; 
    transition: all 0.3s ease;
}

.m-card:hover {
    border-color: #003366;
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.08);
    transform: translateY(-5px);
}

/* Text Column */
.m-text-col { 
    flex: 1.2; 
    padding: 35px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.m-text-col h3 { 
    color: #003366; 
    font-size: 20px; 
    font-weight: 800; 
    margin-bottom: 10px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

.m-text-col p { 
    color: #666; 
    line-height: 1.6; 
    font-size: 14.5px; 
    margin: 0; 
}

/* Image Column */
.m-img-col { 
    flex: 1; 
    padding: 20px; 
    background: #fcfcfc; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    border-left: 1px solid #f0f0f0; 
}

/* THE CURVED FRAME */
.m-img-frame { 
    width: 100%; 
    height: 170px; 
    object-fit: contain; 
    background: #ffffff; 
    border: 1px solid #e2e8f0; 
    border-radius: 12px 50px 12px 12px; /* LEAF STYLE */
    padding: 12px; 
    margin-bottom: 10px; 
    transition: all 0.4s ease; 
}

.m-card:hover .m-img-frame { 
    border-color: #f7941d;
    transform: scale(1.05);
}

.m-label { 
    font-weight: 800; 
    color: #003366; 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

/* --- FOOTER SECTION --- */
.m-footer { text-align: center; margin-top: 45px; }

.m-download-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background: #003366; 
    color: #fff; 
    padding: 14px 32px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 15px; 
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.15);
}

.m-download-btn:hover { 
    background: #f7941d; 
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(247, 148, 29, 0.2);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .m-card { flex-direction: column; min-height: auto; }
    .m-img-col { border-left: none; border-top: 1px solid #f0f0f0; padding: 25px; }
    .m-img-frame { height: 200px; max-width: 250px; }
    .m-nav-btn { display: none !important; }
    .m-swiper-outer-wrapper { padding: 0 15px; }
    .m-description { font-size: 1rem; }
}

@media (max-width: 768px) {
    .master-product-section { padding: 50px 0; }
    .m-title-png { margin-bottom: 20px; }
}

/* --- FAQ --- */
/* Import Fredoka font to match the chunky font in your image */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@600;700&display=swap');

.utsav-faq-container {
    max-width: 900px;
    margin: 50px auto;
    font-family: 'Fredoka', sans-serif;
    padding: 0 20px;
    background-color: #fff;
}

/* Header Styling with Yellow Spark */
.faq-header {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.faq-header h1 {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    margin: 0;
    position: relative;
    display: inline-block;
}

/* The Yellow Rays/Spark from your image */
.faq-header h1::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -35px;
    width: 40px;
    height: 40px;
    background-image: radial-gradient(circle, transparent 20%, transparent 20%), 
                      linear-gradient(0deg, #ffd700 10%, transparent 10%), 
                      linear-gradient(45deg, #ffd700 10%, transparent 10%), 
                      linear-gradient(-45deg, #ffd700 10%, transparent 10%);
    background-size: 10px 10px, 4px 15px, 4px 15px, 4px 15px;
    background-repeat: no-repeat;
    background-position: center, top center, top right, top left;
    transform: rotate(20deg);
}

/* FAQ List Styling */
/* Import ScienceUtsav style font */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@600;700&display=swap');

.utsav-faq-section {
    max-width: 800px;
    margin: 50px auto;
    font-family: 'Fredoka', sans-serif;
    background-color: #fff;
    padding: 20px;
}

/* Header Styling */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-size: 55px;
    font-weight: 700;
    color: #000;
    position: relative;
    display: inline-block;
}

/* The Yellow Spark (Idea/Lightbulb effect) */
.spark {
    position: absolute;
    top: -5px;
    right: -40px;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, transparent 20%, transparent 20%), 
                linear-gradient(0deg, #f39c12 20%, transparent 20%), 
                linear-gradient(45deg, #f39c12 20%, transparent 20%), 
                linear-gradient(-45deg, #f39c12 20%, transparent 20%);
    background-size: 10px 10px, 4px 15px, 4px 15px, 4px 15px;
    background-repeat: no-repeat;
    background-position: center, top center, top right, top left;
}

/* CONTACT FORM SECTION */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.contact-form-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 50%;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 61, 113, 0.08);
}

.form-info h2 {
    font-size: 2.8rem;
    color: #003d71;
    margin: 15px 0;
    font-weight: 800;
}

.form-info h2 span {
    color: #ff6b6b;
}

.form-badge {
    background: #eef9ff;
    color: #0077b6;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.c-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #444;
}

.c-feat i {
    color: #2ecc71;
    font-size: 1.2rem;
}

/* Form Fields */
.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.9rem;
}

.input-field {
    position: relative;
    display: flex;
    align-items: center;
}

.input-field i {
    position: absolute;
    left: 18px;
    color: #0077b6;
}

.input-field input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fcfdfe;
}

.input-field input:focus {
    border-color: #0077b6;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 119, 182, 0.1);
    outline: none;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 18px;
    background: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn-submit:hover {
    background: #fa5252;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 40px;
    }
    .form-info {
        text-align: center;
    }
    .contact-features {
        align-items: center;
    }
    .form-info h2 {
        font-size: 2.2rem;
    }
}

/* FAQ List - Plain Line Design */
.faq-list {
    border-top: 1px solid #ddd;
}

details {
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
}

summary {
    list-style: none;
    padding: 25px 5px;
    font-size: 20px;
    font-weight: 700;
    color: #000; /* Black text for questions */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

summary::-webkit-details-marker {
    display: none;
}

/* Plus Icon in Blue Circle */
.plus-icon {
    width: 22px;
    height: 22px;
    border: 2px solid #0e385f; /* ScienceUtsav Navy Blue */
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.plus-icon::before, .plus-icon::after {
    content: '';
    position: absolute;
    background-color: #0e385f;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.plus-icon::before { width: 10px; height: 2px; } /* horizontal */
.plus-icon::after { width: 2px; height: 10px; } /* vertical */

/* Action: Turn Plus to Minus when Open */
details[open] .plus-icon::after {
    display: none;
}

details[open] summary {
    color: #0e385f; /* Change question to blue when open */
}

/* Answer Content */
.faq-content {
    padding: 0 5px 25px 5px;
    animation: slideDown 0.3s ease-out;
}

.faq-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-weight: 400;
}

/* Smooth Fade In Animation */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    summary { font-size: 17px; }
    .faq-header h1 { font-size: 40px; }
}
/* FAQ SECTION STYLES */
.faq-section {
    padding: 1px 0;
    background-color: #fcfdfe;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.faq-category-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.faq-category-header i {
    font-size: 1.5rem;
    color: #ff6b6b; /* Matching your Orange/Red accent */
    background: #fff0f0;
    padding: 12px;
    border-radius: 10px;
}

.faq-category-header h3 {
    font-size: 1.3rem;
    color: #003d71; /* Matching your Dark Blue */
    font-weight: 700;
}

/* Accordion Styling */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #0077b6;
}

details summary {
    padding: 20px;
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

details summary i {
    font-size: 0.9rem;
    color: #0077b6;
    transition: transform 0.3s ease;
}

details[open] summary {
    color: #0077b6;
    border-bottom: 1px solid #f0f0f0;
}

details[open] summary i {
    transform: rotate(45deg);
    color: #ff6b6b;
}

.faq-content {
    padding: 20px;
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive FAQ */
@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}


/* 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 */
    }
}
/* --- DESKTOP STYLES (STAY THE SAME) --- */
/* --- DESKTOP STYLES --- */
.journey-section {
    padding: 20px 0 80px; /* Reduced top and bottom padding */
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.journey-container {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
}

.journey-intro {
    text-align: center;
    margin-bottom: 0px; /* REMOVED MARGIN to reduce gap */
}

.journey-heading-png {
    max-width: 750px;
    width: 90%;
    height: auto;
}

.journey-yellow-line {
    width: 50px;
    height: 3px;
    background-color: #ffcc00;
    margin: 5px auto 0;
}

.journey-scroll-hint {
    display: none;
    text-align: center;
    font-size: 12px;
    color: #4285f4;
    margin-bottom: 5px;
    font-weight: 600;
    animation: bounceRight 2s infinite;
}

@keyframes bounceRight {
    0%, 20%, 50%, 80%, 100% {transform: translateX(0);}
    40% {transform: translateX(-5px);}
    60% {transform: translateX(-3px);}
}

.journey-path-outer-wrap {
    width: 100%;
    overflow: visible;
}

.journey-path-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1000 / 450; 
    margin-top: -20px; /* REDUCED GAP: Pulls the wave closer to title */
    padding-top: 10px;  /* REDUCED GAP: Tightened internal space */
    overflow: visible !important;
}

.journey-svg-line {
    position: absolute;
    top: 10px; /* MATCHES NEW PADDING-TOP */
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.journey-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    transform: translate(-50%, -50%); 
    z-index: 10;
}

/* Recalculated Coordinates for 10px padding */
.step-1 { left: 5%;   top: calc(10px + 66.6%); }
.step-2 { left: 18%;  top: calc(10px + 30.5%); }
.step-3 { left: 34%;  top: calc(10px + 19.2%); }
.step-4 { left: 50%;  top: calc(10px + 48.8%); }
.step-5 { left: 66%;  top: calc(10px + 81.6%); }
.step-6 { left: 82%;  top: calc(10px + 82.2%); }
.step-7 { left: 95%;  top: calc(10px + 48.8%); }

.node-circle {
    width: 100px;
    height: 100px;
    background: white;
    border: 5px solid #4285f4;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.node-circle img { width: 100%; height: 100%; object-fit: cover; }

.node-label {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.2;
}

.cloud-thought {
    position: absolute;
    bottom: 125px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 180px;
    background: linear-gradient(135deg, #4285f4, #2b67d2);
    color: white;
    padding: 15px;
    border-radius: 30px;
    font-size: 11px;
    font-style: italic;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

.cloud-thought::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 45%;
    width: 15px;
    height: 15px;
    background: #4285f4;
    border-radius: 50%;
    box-shadow: 12px 10px 0 -4px #4285f4;
}

.journey-node:hover .node-circle { transform: scale(1.1); border-color: #ffcc00; }
.journey-node:hover .cloud-thought { opacity: 1; visibility: visible; transform: translateX(-50%) scale(1); }

/* --- REDUCED GAP MOBILE VIEW --- */
@media (max-width: 768px) {
    .journey-section { padding: 10px 0 40px; } /* Tightened section padding */
    
    .journey-scroll-hint { display: block; }

    .journey-path-outer-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
    }

    .journey-path-wrapper {
        width: 1000px; 
        aspect-ratio: 1000 / 480;
        margin-top: -20px; /* REDUCED GAP for Mobile */
        padding-top: 10px;
    }

    .node-circle {
        width: 85px;
        height: 85px;
        border-width: 4px;
    }

    .node-label { font-size: 11px; width: 120px; }
    
    .cloud-thought { width: 150px; bottom: 110px; }
    
    .journey-path-outer-wrap::-webkit-scrollbar { display: none; }
    .journey-path-outer-wrap { -ms-overflow-style: none; scrollbar-width: none; }
}

/* ============================================== 
   10. VIDEO SECTION STYLES
   ============================================== */
.video-section {
    max-width: 100%;
    padding: 0 10px 10px 10px;
    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: 700px; 
    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 ELASTIC GALLERY - UPDATED UI
   ============================================== */
.stem-elastic-section {
    padding: 60px 0;
    background-color: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.stem-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.stem-header {
    text-align: center;
    margin-bottom: 50px;
}

.stem-header-img {
    width: 650px;
    max-width: 90%;
    height: auto;
    margin-bottom: 15px;
}

.stem-header p {
    font-size: 1.2rem;
    color: #003366;
    font-weight: 500;
}

/* ELASTIC GRID */
.stem-gallery-row {
    display: flex;
    width: 100%;
    height: 380px; /* Adjusted height for 5 items */
    gap: 15px;
    margin-bottom: 20px;
}

.stem-card {
    position: relative;
    flex: 1; 
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.3, 1);
    border: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
}

.stem-card:hover {
    flex: 3.5; /* Elastic expand effect */
}

/* OVERLAY */
.stem-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.9) 0%, rgba(0, 51, 102, 0.2) 60%, transparent 100%);
    transition: 0.3s;
}

.stem-card:hover .stem-overlay {
    background: linear-gradient(to top, rgba(244, 123, 32, 0.9) 0%, rgba(0, 51, 102, 0.4) 100%);
}

/* CONTENT */
.stem-card-details {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: white;
}

.stem-icon-bubble {
    width: 50px; height: 50px;
    background: #fff;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    color: #f47b20;
    font-size: 22px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.stem-card:hover .stem-icon-bubble {
    background: #f47b20;
    color: #fff;
    transform: rotate(-10deg);
}

.stem-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stem-hidden-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.stem-card:hover .stem-hidden-content {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

.stem-desc {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .stem-gallery-row { height: 300px; }
}

@media (max-width: 768px) {
    .stem-gallery-row {
        flex-direction: column;
        height: auto;
    }
    .stem-card {
        flex: none;
        width: 100%;
        height: 200px;
    }
    .stem-card:hover { flex: none; }
    .stem-hidden-content { max-height: 100px; opacity: 1; margin-top: 10px; }
}

/*What We Offer */
    .stem-cluster-section {
        padding: 80px 0;
        background: #ffffff;
        font-family: 'Outfit', sans-serif;
        overflow: hidden;
    }

    .cluster-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* PNG Title Fix */
    .cluster-header {
        margin-bottom: 60px;
        text-align: center;
    }
    .cluster-title-png {
        width: 750px;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /* THE CLUSTER LAYOUT */
    .cluster-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }

    /* BLOB SHAPES & ANIMATION */
    .blob-item {
        position: relative;
        padding: 40px;
        min-height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        animation: breathing 6s infinite ease-in-out;
        animation-delay: var(--d);
    }

    @keyframes breathing {
        0%, 100% { transform: scale(1) translateY(0); }
        50% { transform: scale(1.03) translateY(-10px); }
    }

    .blob-inner {
        position: relative;
        z-index: 2;
        padding: 30px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        /* The unique Curved Blob Shape */
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Unique shapes for each to look "Designed" */
    .blob-item:nth-child(2) .blob-inner { border-radius: 61% 39% 52% 48% / 46% 59% 41% 54%; }
    .blob-item:nth-child(3) .blob-inner { border-radius: 41% 59% 40% 60% / 65% 41% 59% 35%; }
    .blob-item:nth-child(4) .blob-inner { border-radius: 30% 70% 70% 30% / 67% 33% 67% 33%; }

    /* Color Accents - Subtle Blobs behind the text */
    .blob-item::before {
        content: '';
        position: absolute;
        inset: 20px;
        background: var(--accent-clr);
        filter: blur(40px);
        opacity: 0.15;
        z-index: 1;
        border-radius: 50%;
        transition: 0.5s;
    }

    .b-orange { --accent-clr: #f47b20; }
    .b-blue { --accent-clr: #00a8ff; }
    .b-navy { --accent-clr: #003366; }
    .b-purple { --accent-clr: #a55eea; }

    /* Interaction */
    .blob-item:hover .blob-inner {
        background: #fff;
        border-color: var(--accent-clr);
        transform: scale(1.08) rotate(2deg);
        box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    }

    .blob-icon {
        font-size: 32px;
        color: var(--accent-clr);
        margin-bottom: 15px;
    }

    .blob-inner h3 {
        font-size: 20px;
        color: #003366;
        margin: 0 0 10px 0;
        font-weight: 800;
    }

    .blob-inner p {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        margin: 0;
        max-width: 250px;
    }

    @media (max-width: 768px) {
        .cluster-wrap { grid-template-columns: 1fr; }
        .cluster-title-png { width: 90%; }
        .blob-item { min-height: auto; padding: 20px; }
    }


/* ============================================== 
   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;
    }
}