/* Auto-extracted from kalingaeuro.com homepage widgets — Kalinga Euro brand home for /v3 */
.ke-home-root .kus-main-wrapper { margin-top: 0 !important; }
/* Bottom marquee (mirrors kalingaeuro.com second university strip above footer) */
.ke-home-root .kus-main-wrapper--bottom {
    margin: 2.5rem auto 0 auto !important;
}
        /* Global fix for horizontal scrolling — use clip (not hidden) so position:sticky works on the site header */
        html, body {
            overflow-x: clip;
            margin: 0;
            padding: 0;
            width: 100%;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        :root { 
            --kus-primary: #ed5024; 
            --kus-secondary: #26ad5f; 
            --kus-dark: #0f172a; 
            --kus-text: #64748b; 
            --kus-bg: transparent; 
            --kus-glass-bg: rgba(15,23,42,.95);
            --brand-green: var(--kus-secondary);
            --brand-orange: var(--kus-primary);
            --kpu-hover: #ed5024;
            --kpu-dark: #374151;
            --kpu-border: #f3f4f6;
            --kpu-dot-active: #22c55e;
            --kpu-dot-inactive: #bbf7d0;
        }
        
        .kus-main-wrapper {
            position: relative;
            width: 100%;
            max-width: 100vw;
            margin: -30px auto 0 auto; 
            z-index: 99; /* Increased z-index taaki ye dusre sections ke upar rahe */
        }

        .kus-section { 
            width: 100%; 
            /* Bottom padding ko 100px se ghata kar 20px kar diya gaya hai gap kam karne ke liye */
            padding: 25px 0 20px 0; 
            background-color: var(--kus-bg); 
            position: relative; 
            z-index: 99; /* Increased z-index */
            overflow-x: clip; 
            overflow-y: visible; /* overflow visible hai taaki tooltip bahar aa sake */
            font-family: 'Inter', system-ui, sans-serif;
        }
        
        .kus-slider { 
            position: relative; 
            display: flex; 
            width: 100%; 
            overflow: visible; 
            cursor: grab;
            user-select: none;
        }
        .kus-slider:active { cursor: grabbing; }

        .kus-track { 
            display: flex; 
            gap: 1.8rem; 
            width: max-content; 
            align-items: center; 
            padding: 1rem 2rem; 
            will-change: transform;
        }
        
        .kus-item { 
            position: relative; 
            width: 150px; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            gap: .7rem; 
            perspective: 1000px; 
            transition: all .4s cubic-bezier(.175,.885,.32,1.275); 
        }

        .kus-item:hover { transform: translateY(5px); z-index: 10000; } 
        
        .kus-logo-wrap { 
            height: 55px; 
            width: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            position: relative; 
            transform-style: preserve-3d; 
            background: transparent; 
            padding: 5px; 
        }
        
        .kus-logo { 
            max-width: 100%; 
            max-height: 100%; 
            object-fit: contain; 
            transition: all .5s cubic-bezier(.175,.885,.32,1.275); 
            pointer-events: none; 
            filter: grayscale(10%);
        }
        
        .kus-item:hover .kus-logo { 
            filter: grayscale(0%); 
            transform: scale(1.1); 
        }
        
        .kus-info { text-align: center; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 5px; pointer-events: none; }
        
        .kus-name { font-size: .78rem; font-weight: 800; color: var(--kus-dark); margin: 0; line-height: 1.2; letter-spacing: -.01em; transition: color .3s ease; height: 28px; display: flex; align-items: center; justify-content: center; text-align: center; }
        .kus-item:hover .kus-name { color: var(--kus-primary); }
        
        .kus-loc { font-size: .58rem; color: var(--kus-text); margin: 0; font-weight: 600; background: rgba(0,0,0,.03); padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: .03em; transition: all .3s ease; white-space: nowrap; }
        .kus-item:hover .kus-loc { background: rgba(237,80,36,.08); color: var(--kus-primary); }
        
        .kus-indicator { position: absolute; top: -3px; right: -3px; width: 8px; height: 8px; background-color: var(--kus-primary); border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 0 rgba(237,80,36,.7); animation: kus-pulse-orange 2s infinite; z-index: 5; }
        .kus-indicator.kus-green-pulse { background-color: var(--kus-secondary); box-shadow: 0 0 0 0 rgba(38,173,95,.7); animation: kus-pulse-green 2s infinite; }
        
        @keyframes kus-pulse-orange { 0%{transform:scale(.95);box-shadow:0 0 0 0 rgba(237,80,36,.7)} 70%{transform:scale(1);box-shadow:0 0 0 4px rgba(237,80,36,0)} 100%{transform:scale(.95);box-shadow:0 0 0 0 rgba(237,80,36,0)} }
        @keyframes kus-pulse-green { 0%{transform:scale(.95);box-shadow:0 0 0 0 rgba(38,173,95,.7)} 70%{transform:scale(1);box-shadow:0 0 0 4px rgba(38,173,95,0)} 100%{transform:scale(.95);box-shadow:0 0 0 0 rgba(38,173,95,0)} }
        
        .kus-tooltip { 
            position: absolute; 
            top: calc(100% + 12px); 
            left: 50%; 
            transform: translateX(-50%) translateY(-10px) scale(.8); 
            background: var(--kus-glass-bg); 
            backdrop-filter: blur(12px); 
            -webkit-backdrop-filter: blur(12px); 
            color: #fff; 
            padding: 10px 16px; 
            border-radius: 10px; 
            font-size: .7rem; 
            font-weight: 600; 
            white-space: nowrap; 
            width: max-content; 
            text-align: center; 
            box-shadow: 0 10px 25px rgba(0,0,0,.15); 
            border: 1px solid rgba(255,255,255,.1); 
            z-index: 99999; 
            opacity: 0; 
            visibility: hidden; 
            pointer-events: none; 
            transition: all .3s cubic-bezier(.175,.885,.32,1.275); 
            line-height: 1.5;
        }
        .kus-tooltip::after { content: ''; position: absolute; bottom: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: transparent transparent var(--kus-glass-bg) transparent; }
        
        .kus-tooltip.kus-highlight-green { background: rgba(38,173,95,0.98); }
        .kus-tooltip.kus-highlight-green::after { border-color: transparent transparent rgba(38,173,95,0.98) transparent; }
        
        .kus-tooltip.kus-highlight-orange { background: rgba(237,80,36,0.98); }
        .kus-tooltip.kus-highlight-orange::after { border-color: transparent transparent rgba(237,80,36,0.98) transparent; }
        
        .kus-item:hover .kus-tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }
        
        .kus-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            color: var(--kus-dark);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .kus-nav-btn:hover {
            background: var(--kus-primary);
            color: #fff;
            transform: translateY(-50%) scale(1.1);
        }
        .kus-nav-btn.kus-left { left: 1rem; }
        .kus-nav-btn.kus-right { right: 1rem; }

        @media (max-width:768px) { 
            .kus-item { width: 130px; } 
            .kus-track { gap: 1.2rem; padding: 1rem 1rem;} 
            .kus-logo-wrap { height: 45px; } 
            .kus-name { font-size: .7rem; height: 26px; }
            .kus-loc { font-size: .55rem; padding: 2px 6px; }
            .kus-nav-btn { width: 32px; height: 32px; font-size: 0.8rem; }
            /* Mobile ke gap ko bhi kam kiya gaya hai */
            .kus-section { padding-bottom: 30px; } 
        }
    /* Scoped Variables & Animations for Section 1 */
    @keyframes sec1-slideInLeft {
        0% { opacity: 0; transform: translateX(-100vw); }
        80% { opacity: 0.8; transform: translateX(20px); }
        100% { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes sec1-fadeInUp {
        0% { opacity: 0; transform: translateY(60px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes sec1-gradientShift {
        0% { background-position: 200% center; }
        100% { background-position: 0% center; }
    }

    /* Layout Containers */
    .sec1-main-container {
        width: 100%;
        max-width: 100vw;
        padding: 2.5rem 1.5rem;
        display: flex;
        align-items: center;
        overflow: hidden;
        box-sizing: border-box;
    }

    .sec1-content-wrapper {
        width: 100%;
        max-width: 1920px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: center;
        box-sizing: border-box;
    }

    /* Typography */
    .sec1-text-column {
        text-align: center;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        order: 1;
        opacity: 0;
        will-change: transform, opacity;
    }

    .sec1-heading {
        font-size: 24px; /* Mobile size optimized */
        font-weight: 700;
        color: #5A5A5A;
        line-height: 1.2;
        letter-spacing: -0.025em;
        margin: 0;
        padding: 0;
    }

    .sec1-gradient-text {
        background: linear-gradient(to right, #ed5024, #26ad5f, #ed5024);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: sec1-gradientShift 4s linear infinite;
        display: block;
        margin-top: 0.25rem;
    }

    /* Video Section */
    .sec1-video-column {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2;
        width: 100% !important;
        margin-top: 0.5rem;
        opacity: 0;
        will-change: transform, opacity;
    }

    .sec1-video {
        height: auto;
        /* Mobile: Kept at 110% as requested for centered look */
        width: 110% !important; 
        max-width: 110% !important;
        object-fit: contain;
        
        /* -- Fixes for Blinking Issue -- */
        /* TranslateZ(0) forces hardware acceleration (GPU) to prevent flickering */
        transform: scaleX(-1) translateZ(0); 
        
        /* Hides the backface of the element during 3D transforms, reducing rendering glitches */
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        
        /* Tells the browser to retain 3D transformations */
        transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        
        /* Removed 'transition: all' as it can cause performance hitches on looping videos */
        /* ------------------------------- */

        margin: 0 auto !important;
        display: block;
    }

    /* Animation classes triggered by JS */
    .sec1-text-column.sec1-in-view {
        animation: sec1-slideInLeft 2s ease-out forwards;
    }

    .sec1-video-column.sec1-in-view {
        animation: sec1-fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    }

    /* --- Responsive Breakpoints --- */
    @media (min-width: 640px) {
        .sec1-main-container { padding-top: 4rem; padding-bottom: 4rem; overflow: visible; }
        .sec1-heading { font-size: 28px; }
        .sec1-video { width: 105% !important; max-width: none !important; margin-right: -1rem !important; }
    }

    @media (min-width: 768px) {
        .sec1-main-container { padding-left: 3rem; }
        .sec1-content-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
        .sec1-text-column { text-align: left; order: 1; }
        .sec1-heading { font-size: 42px; line-height: 48px; font-weight: 800; }
        .sec1-video-column { justify-content: flex-end; order: 2; margin-top: 0; }
        
        /* Tablet: Increased from 140% to 155% for a larger presence */
        .sec1-video { 
            width: 155% !important; 
            min-width: 155% !important;
            max-width: none !important; 
            margin-right: -7rem !important; 
        } 
    }

    @media (min-width: 1024px) {
        .sec1-main-container { padding-left: 6rem; padding-top: 5rem; padding-bottom: 5rem; }
        .sec1-text-column { padding-right: 2.5rem; }
        .sec1-heading { font-size: 50px; line-height: 50px; }
        
        /* Desktop: Increased from 130% to 150% and margin adjusted */
        .sec1-video { 
            width: 150% !important; 
            min-width: 150% !important;
            max-width: none !important; 
            margin-right: -10rem !important; 
        } 
    }

    @media (min-width: 1280px) {
        .sec1-heading { font-size: 54px; }
        /* Large Desktop: Increased from 120% to 140% and margin adjusted */
        .sec1-video { 
            width: 140% !important; 
            min-width: 140% !important;
            max-width: none !important; 
            margin-right: -12rem !important; 
        } 
    }
    /* Scoped Variables & Animations for Section 3 */
    @keyframes sec3-slideInRight {
        0% { opacity: 0; transform: translateX(100vw); }
        80% { opacity: 0.8; transform: translateX(-20px); }
        100% { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes sec3-fadeInUp {
        0% { opacity: 0; transform: translateY(60px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes sec3-gradientShift {
        0% { background-position: 200% center; }
        100% { background-position: 0% center; }
    }

    /* Layout Containers */
    .sec3-main-container {
        width: 100%;
        max-width: 100vw;
        padding: 2.5rem 1.5rem;
        display: flex;
        align-items: center;
        overflow: hidden;
        box-sizing: border-box;
    }

    .sec3-content-wrapper {
        width: 100%;
        max-width: 1920px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: center;
        box-sizing: border-box;
    }

    /* Typography (Right on Desktop, Top on Mobile) */
    .sec3-text-column {
        text-align: center;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        order: 1;
        opacity: 0;
        will-change: transform, opacity;
    }

    .sec3-heading {
        font-size: 24px; /* Mobile size optimized */
        font-weight: 700;
        color: #5A5A5A;
        line-height: 1.2;
        letter-spacing: -0.025em;
        margin: 0;
        padding: 0;
    }

    .sec3-gradient-text {
        background: linear-gradient(to right, #ed5024, #26ad5f, #ed5024);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: sec3-gradientShift 4s linear infinite;
        display: block;
        margin-bottom: 0.25rem;
    }

    /* Video Section (Left on Desktop, Bottom on Mobile) */
    .sec3-video-column {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2;
        width: 100% !important; /* Mobile Center alignment */
        margin-top: 0.5rem;
        opacity: 0;
        will-change: transform, opacity;
    }

    .sec3-video {
        height: auto;
        /* Mobile: Center focused but large enough to look good */
        width: 110% !important; 
        max-width: 110% !important;
        object-fit: contain;
        
        /* -- Fixes for Blinking Issue -- */
        /* TranslateZ(0) forces hardware acceleration to prevent flickering */
        transform: scaleX(-1) translateZ(0); 
        
        /* Hides backface to prevent rendering glitches on loop */
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        
        transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        
        /* Removed transition to avoid jitter during the loop jump */
        /* transition: all 0.3s ease; */
        /* ------------------------------ */

        margin: 0 auto !important;
        display: block;
    }

    /* --- Animation Classes triggered by JS --- */
    .sec3-text-column.sec3-in-view {
        animation: sec3-slideInRight 2s ease-out forwards;
    }

    .sec3-video-column.sec3-in-view {
        animation: sec3-fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    }

    /* --- Responsive Breakpoints --- */
    @media (min-width: 640px) {
        .sec3-main-container { padding-top: 4rem; padding-bottom: 4rem; overflow: visible; }
        .sec3-heading { font-size: 28px; }
        .sec3-gradient-text { display: inline; margin-bottom: 0; }
        /* Shifted margin to left */
        .sec3-video { width: 105% !important; max-width: none !important; margin-left: -1.5rem !important; }
    }

    @media (min-width: 768px) {
        /* Shifted padding to right container */
        .sec3-main-container { padding-right: 3rem; }
        .sec3-content-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
        
        /* Video on Left */
        .sec3-video-column { justify-content: flex-start; order: 1; margin-top: 0; }
        
        /* Text on Right */
        .sec3-text-column { text-align: left; order: 2; padding-left: 2rem; }
        .sec3-heading { font-size: 42px; line-height: 48px; font-weight: 800; }
        
        /* Tablet: Shifted margin to left */
        .sec3-video { 
            width: 155% !important; 
            min-width: 155% !important;
            max-width: none !important; 
            margin-left: -7rem !important; 
        } 
    }

    @media (min-width: 1024px) {
        .sec3-main-container { padding-right: 6rem; padding-top: 5rem; padding-bottom: 5rem; }
        .sec3-text-column { padding-left: 2.5rem; }
        .sec3-heading { font-size: 50px; line-height: 50px; }
        
        /* Desktop: Larger presence, margin left */
        .sec3-video { 
            width: 150% !important; 
            min-width: 150% !important;
            max-width: none !important; 
            margin-left: -9rem !important; 
        } 
    }

    @media (min-width: 1280px) {
        .sec3-heading { font-size: 54px; }
        /* Large Desktop scale, margin left */
        .sec3-video { 
            width: 140% !important; 
            min-width: 140% !important;
            max-width: none !important; 
            margin-left: -10rem !important; 
        } 
    }
    /* Scoped Variables & Animations for Section 5 */
    @keyframes sec5-slideInLeft {
        0% { opacity: 0; transform: translateX(-100vw); }
        80% { opacity: 0.8; transform: translateX(20px); }
        100% { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes sec5-fadeInUp {
        0% { opacity: 0; transform: translateY(60px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes sec5-gradientShift {
        0% { background-position: 200% center; }
        100% { background-position: 0% center; }
    }

    /* Layout Containers */
    .sec5-main-container {
        width: 100%;
        max-width: 100vw;
        padding: 2.5rem 1.5rem;
        display: flex;
        align-items: center;
        overflow: hidden;
        box-sizing: border-box;
    }

    .sec5-content-wrapper {
        width: 100%;
        max-width: 1920px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: center;
        box-sizing: border-box;
    }

    /* Typography (Left on Desktop) */
    .sec5-text-column {
        text-align: center;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        order: 1;
        /* Initial state for Viewport Animation */
        opacity: 0;
        will-change: transform, opacity;
    }

    .sec5-heading {
        font-size: 24px; /* Mobile: Optimized font size */
        font-weight: 700; /* Mobile: Optimized weight */
        color: #5A5A5A;
        line-height: 1.2;
        letter-spacing: -0.025em;
        margin: 0;
        padding: 0;
    }

    .sec5-gradient-text {
        background: linear-gradient(to right, #ed5024, #26ad5f, #ed5024);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: sec5-gradientShift 4s linear infinite;
    }

    .sec5-gradient-wrapper {
        display: block;
        margin-top: 0.25rem;
    }

    /* Video Section (Right on Desktop) */
    .sec5-video-column {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2;
        width: 100% !important; /* Mobile Center alignment fix */
        margin-top: 0.5rem;
        /* Initial state for Viewport Animation */
        opacity: 0;
        will-change: transform, opacity;
    }

    .sec5-video {
        height: auto;
        /* Mobile: Centered impactful look (110%) */
        width: 110% !important; 
        max-width: 110% !important;
        object-fit: contain;
        transform: scaleX(-1);
        transition: all 0.3s ease;
        margin: 0 auto !important;
        display: block;
    }

    /* --- Animation Classes triggered by JS --- */
    .sec5-text-column.sec5-in-view {
        animation: sec5-slideInLeft 2s ease-out forwards;
    }

    .sec5-video-column.sec5-in-view {
        animation: sec5-fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    }

    /* --- Responsive Breakpoints --- */
    @media (min-width: 640px) {
        .sec5-main-container { padding-top: 4rem; padding-bottom: 4rem; overflow: visible; }
        .sec5-heading { font-size: 28px; }
        .sec5-gradient-wrapper { display: inline; margin-top: 0; }
        .sec5-video { width: 105% !important; max-width: none !important; margin-right: -1.5rem !important; }
    }

    @media (min-width: 768px) {
        .sec5-main-container { padding-left: 3rem; }
        .sec5-content-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
        .sec5-text-column { text-align: left; order: 1; }
        .sec5-heading { 
            font-size: 42px; 
            line-height: 48px; 
            font-weight: 800; /* Desktop/Tablet bold */
        }
        .sec5-video-column { justify-content: flex-end; order: 2; margin-top: 0; }
        
        /* Tablet: Expanded scale and right shift */
        .sec5-video { 
            width: 155% !important; 
            min-width: 155% !important;
            max-width: none !important; 
            margin-right: -7rem !important; 
        } 
    }

    @media (min-width: 1024px) {
        .sec5-main-container { padding-left: 6rem; padding-top: 5rem; padding-bottom: 5rem; }
        .sec5-text-column { padding-right: 2.5rem; }
        .sec5-heading { font-size: 50px; line-height: 50px; }
        
        /* Desktop: Expanded scale and right shift */
        .sec5-video { 
            width: 150% !important; 
            min-width: 150% !important;
            max-width: none !important; 
            margin-right: -10rem !important; 
        } 
    }

    @media (min-width: 1280px) {
        .sec5-heading { font-size: 54px; }
        
        /* Large Desktop Scale */
        .sec5-video { 
            width: 140% !important; 
            min-width: 140% !important;
            max-width: none !important; 
            margin-right: -12rem !important; 
        } 
    }
    /* Scoped Variables & Animations for Section 2 */
    @keyframes sec2-slideInLeft {
        0% { opacity: 0; transform: translateX(-100vw); }
        80% { opacity: 0.8; transform: translateX(20px); }
        100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes sec2-slideInRight {
        0% { opacity: 0; transform: translateX(100vw); }
        80% { opacity: 0.8; transform: translateX(-20px); }
        100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes sec2-fadeSlideUp {
        0% { opacity: 0; transform: translateY(60px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes sec2-gradientShift {
        0% { background-position: 200% center; }
        100% { background-position: 0% center; }
    }

    /* Gradient Text */
    .sec2-text-gradient {
        background: linear-gradient(to right, #ed5024, #26ad5f, #ed5024);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: sec2-gradientShift 4s linear infinite;
    }

    /* Layout Containers */
    .sec2-main-container {
        width: 100%;
        max-width: 100vw;
        padding: 2.5rem 1.5rem;
        display: flex;
        align-items: center;
        overflow: hidden; 
        box-sizing: border-box;
    }

    .sec2-content-wrapper {
        width: 100%;
        max-width: 1920px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Mobile Gap */
        align-items: center;
        box-sizing: border-box;
    }

    /* Video Column (Left on Desktop, Bottom on Mobile) */
    .sec2-video-column {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2; /* Video below text on mobile */
        width: 100% !important; /* Mobile Center Alignment Fix */
        margin-top: 0.5rem;
        opacity: 0; 
        will-change: transform, opacity;
    }

    .sec2-fluid-left-video {
        height: auto;
        /* Mobile: Kept at 110% for centered impactful look */
        width: 110% !important; 
        max-width: 110% !important;
        object-fit: contain;
        transition: all 0.3s ease;
        margin: 0 auto !important; 
        display: block;
        flex-shrink: 0; 
    }

    /* Text Column (Right on Desktop, Top on Mobile) */
    .sec2-text-column {
        text-align: center;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        order: 1;
        opacity: 0; 
        will-change: transform, opacity;
    }

    .sec2-main-heading {
        font-size: 24px; /* Mobile size optimized */
        font-weight: 700;
        color: #5A5A5A;
        line-height: 1.2;
        letter-spacing: -0.025em;
        margin: 0;
        padding: 0;
    }

    .sec2-br-mobile-hidden {
        display: block; 
    }
    
    .sec2-gradient-wrapper {
        display: inline; 
        margin-top: 0;
    }

    /* Animation Classes triggered by JS */
    .sec2-video-column.sec2-in-view {
        animation: sec2-fadeSlideUp 1.5s ease-out 0.2s forwards;
    }

    .sec2-text-column.sec2-in-view {
        animation: sec2-slideInRight 1.8s ease-out forwards;
    }

    /* --- Responsive Breakpoints --- */
    @media (min-width: 640px) {
        .sec2-main-container { padding-top: 4rem; padding-bottom: 4rem; overflow: visible; }
        .sec2-main-heading { font-size: 28px; }
        /* Shifted margin to left */
        .sec2-fluid-left-video { width: 105% !important; max-width: none !important; margin-left: -1.5rem !important; margin-right: auto !important; }
    }

    @media (min-width: 768px) {
        /* Shifted padding to right */
        .sec2-main-container { padding-right: 3rem; }
        .sec2-content-wrapper { 
            grid-template-columns: 1fr 1fr; 
            gap: 3rem; /* Increased gap for Tablet */
        }
        
        /* Video on Left */
        .sec2-video-column { justify-content: flex-start; order: 1; margin-top: 0; } 
        
        /* Text on Right */
        .sec2-text-column { order: 2; padding-left: 2rem; text-align: left; }
        .sec2-main-heading { font-size: 42px; line-height: 48px; font-weight: 800; }
        
        /* Tablet: Increased size and shifted left */
        .sec2-fluid-left-video { 
            width: 155% !important; 
            min-width: 155% !important;
            max-width: none !important; 
            margin-left: -7rem !important; 
            margin-right: auto !important;
        } 
    }

    @media (min-width: 1024px) {
        .sec2-main-container { padding-right: 6rem; padding-top: 5rem; padding-bottom: 5rem; }
        .sec2-content-wrapper { 
            gap: 5rem; /* Increased gap for Desktop */
        }
        .sec2-text-column { padding-left: 2.5rem; }
        .sec2-main-heading { font-size: 46px; line-height: 50px; }
        
        /* Desktop: Increased size and shifted left */
        .sec2-fluid-left-video { 
            width: 150% !important; 
            min-width: 150% !important;
            max-width: none !important; 
            margin-left: -9rem !important; 
            margin-right: auto !important;
        } 
    }

    @media (min-width: 1280px) {
        .sec2-content-wrapper { 
            gap: 6rem; /* Even larger gap for Large Desktop */
        }
        .sec2-main-heading { font-size: 52px; }
        
        /* Large Desktop: Increased size and shifted left */
        .sec2-fluid-left-video { 
            width: 140% !important; 
            min-width: 140% !important;
            max-width: none !important; 
            margin-left: -10rem !important; 
            margin-right: auto !important;
        } 
    }
    /* Scoped Variables & Animations for Section 4 */
    @keyframes sec4-slideInLeft {
        0% { opacity: 0; transform: translateX(-100vw); }
        80% { opacity: 0.8; transform: translateX(20px); }
        100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes sec4-fadeSlideUp {
        0% { opacity: 0; transform: translateY(60px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes sec4-gradientShift {
        0% { background-position: 200% center; }
        100% { background-position: 0% center; }
    }

    /* Gradient Text */
    .sec4-text-gradient {
        background: linear-gradient(to right, #ed5024, #26ad5f, #ed5024);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: sec4-gradientShift 4s linear infinite;
    }

    /* Layout Containers */
    .sec4-main-container {
        width: 100%;
        max-width: 100vw;
        padding: 2.5rem 1.5rem;
        display: flex;
        align-items: center;
        overflow: hidden; 
        box-sizing: border-box;
    }

    .sec4-content-wrapper {
        width: 100%;
        max-width: 1920px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: center;
        box-sizing: border-box;
    }

    /* Text Column (Left on Desktop, Top on Mobile) */
    .sec4-text-column {
        text-align: center;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        order: 1;
        opacity: 0; 
        will-change: transform, opacity;
    }

    .sec4-main-heading {
        font-size: 24px; /* Mobile size optimized */
        font-weight: 700;
        color: #5A5A5A;
        line-height: 1.2;
        letter-spacing: -0.025em;
        margin: 0;
        padding: 0;
    }

    .sec4-br-mobile-hidden {
        display: block; 
    }
    
    .sec4-gradient-wrapper {
        display: inline; 
        margin-top: 0;
    }

    /* Video Column (Right on Desktop, Bottom on Mobile) */
    .sec4-video-column {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2; /* Video below text on mobile */
        width: 100% !important; /* Mobile Center alignment fix */
        margin-top: 0.5rem;
        opacity: 0; 
        will-change: transform, opacity;
    }

    .sec4-fluid-video {
        height: auto;
        /* Mobile: Centered impactful look */
        width: 110% !important; 
        max-width: 110% !important;
        object-fit: contain;
        transition: all 0.3s ease;
        margin: 0 auto !important; 
        display: block;
        flex-shrink: 0; 
    }

    /* Animation Classes triggered by JS */
    .sec4-video-column.sec4-in-view {
        animation: sec4-fadeSlideUp 1.5s ease-out 0.2s forwards;
    }

    .sec4-text-column.sec4-in-view {
        animation: sec4-slideInLeft 1.8s ease-out forwards;
    }

    /* --- Responsive Breakpoints --- */
    @media (min-width: 640px) {
        .sec4-main-container { padding-top: 4rem; padding-bottom: 4rem; overflow: visible; }
        .sec4-main-heading { font-size: 28px; }
        /* Shifted margin to right */
        .sec4-fluid-video { width: 105% !important; max-width: none !important; margin-right: -1.5rem !important; margin-left: auto !important; }
    }

    @media (min-width: 768px) {
        /* Shifted padding to left */
        .sec4-main-container { padding-left: 3rem; }
        .sec4-content-wrapper { 
            grid-template-columns: 1fr 1fr; 
            gap: 1rem;
        }
        
        /* Text on Left */
        .sec4-text-column { 
            order: 1; 
            padding-right: 5rem; 
            text-align: left; 
        }
        .sec4-main-heading { font-size: 42px; line-height: 48px; font-weight: 800; }

        /* Video on Right */
        .sec4-video-column { justify-content: flex-end; order: 2; margin-top: 0; } 
        
        /* Video Expanded Scale */
        .sec4-fluid-video { 
            width: 155% !important; 
            min-width: 155% !important;
            max-width: none !important; 
            margin-right: -7rem !important; 
            margin-left: auto !important;
        } 
    }

    @media (min-width: 1024px) {
        .sec4-main-container { padding-left: 6rem; padding-top: 5rem; padding-bottom: 5rem; }
        
        /* Shifting more left for Desktop */
        .sec4-text-column { padding-right: 8rem; }
        
        .sec4-main-heading { font-size: 46px; line-height: 50px; }
        
        /* Video Expanded Scale */
        .sec4-fluid-video { 
            width: 150% !important; 
            min-width: 150% !important;
            max-width: none !important; 
            margin-right: -7rem !important; 
            margin-left: auto !important;
        } 
    }

    @media (min-width: 1280px) {
        .sec4-main-heading { font-size: 52px; }
        
        /* Extreme Large Desktop shift */
        .sec4-text-column { padding-right: 10rem; }
        
        .sec4-fluid-video { 
            width: 140% !important; 
            min-width: 140% !important;
            max-width: none !important; 
            margin-right: -9rem !important; 
            margin-left: auto !important;
        } 
    }
        /* Popup carousel (legacy class names; variables merged into :root above) */
        .elementor-widget-html, .elementor-widget-container {
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Layout Containers - Fit to Elementor Popup */
        .kpu-container {
            display: flex;
            flex-direction: column;
            position: relative !important; 
            width: 100% !important; 
            min-height: 100vh !important; 
            background-color: #ffffff !important;
            margin: 0 !important;
            padding: 0 !important;
            font-family: 'Montserrat', sans-serif !important;
            box-sizing: border-box !important;
        }

        /* --- Carousel Section (Left Side Mobile / Top Side Mobile) --- */
        .kpu-left {
            width: 100% !important;
            height: auto !important; 
            flex: none !important;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Yahan padding 55px kiya gaya hai taki top se card cut na ho */
            padding: 55px 5% 0 5%; 
            background-color: #ffffff !important;
            box-sizing: border-box !important;
        }

        .kpu-card {
            position: relative;
            width: 100%;
            height: auto !important;
            aspect-ratio: 16 / 9 !important; 
            max-width: 600px;
            overflow: hidden; 
            background-color: #111827 !important;
            border-radius: 0.75rem; 
            box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.15) !important; 
            border: 1px solid var(--kpu-border) !important;
            box-sizing: border-box !important;
        }

        /* PURE CSS Layout Control */
        .kpu-track { 
            display: flex; 
            height: 100%; 
            width: 100%; 
            will-change: transform;
            touch-action: pan-y; /* Allows vertical page scroll, captures horizontal swipe */
        }
        
        .kpu-slide { 
            flex: 0 0 100%; 
            min-width: 100%; /* Strictly enforce 100% width */
            width: 100%; 
            height: 100%; 
            position: relative; 
            display: block; 
            text-decoration: none; 
            cursor: pointer; 
            overflow: hidden; 
            background-color: #111827;
            /* Prevents browser from treating the link as a draggable object which breaks swiping */
            user-select: none;
            -webkit-user-drag: none; 
        }
        
        .kpu-video { 
            width: 100% !important; 
            height: 100% !important; 
            object-fit: cover !important; 
            position: absolute !important; 
            inset: 0 !important; 
            z-index: 1;
            pointer-events: none; /* Let overlay handle touches */
        }

        .kpu-overlay {
            position: absolute; inset: 0;
            background-color: rgba(0, 0, 0, 0.65); 
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            text-align: center;
            padding: 2%;
            color: #ffffff;
            z-index: 10;
        }

        /* Typography */
        .kpu-title {
            font-size: clamp(1rem, 2.5vh + 1vw, 2.5rem) !important;
            font-weight: 800 !important; text-transform: uppercase; line-height: 1 !important; margin-bottom: 1% !important; text-shadow: 0 2px 4px rgba(0,0,0,0.4) !important;
            font-family: 'Montserrat', sans-serif !important;
        }
        .kpu-subtitle { font-size: clamp(6px, 1vh, 12px) !important; font-weight: 500 !important; letter-spacing: 0.05em !important; text-transform: uppercase !important; margin-bottom: 1% !important; text-shadow: 0 1px 3px rgba(0,0,0,0.4) !important; font-family: 'Montserrat', sans-serif !important;}
        .kpu-meta { font-size: clamp(4px, 0.8vh, 8px) !important; font-weight: 300 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; margin-bottom: 1% !important; opacity: 0.9 !important; text-shadow: 0 1px 3px rgba(0,0,0,0.4) !important; font-family: 'Montserrat', sans-serif !important;}
        
        .kpu-separator { display: flex; align-items: center; width: 100%; max-width: 80%; margin: 1% 0 !important; }
        .kpu-sep-line { flex-grow: 1; height: 1px; background-color: rgba(255, 255, 255, 0.8); }
        .kpu-sep-icon { color: #ffffff; margin: 0 2% !important; font-size: clamp(12px, 2.5vh, 18px) !important; }

        .kpu-careers { font-size: clamp(7px, 1.2vh, 14px) !important; font-weight: 600 !important; margin-top: 1% !important; text-shadow: 0 1px 3px rgba(0,0,0,0.4) !important; font-family: 'Montserrat', sans-serif !important;}
        .kpu-d-break { display: none; }

        /* Colors for Flags */
        .kpu-green { color: #008C45 !important; } .kpu-red { color: #CD212A !important; } .kpu-white { color: #ffffff !important; }
        .kpu-g-red { color: #FF0000 !important; } .kpu-g-gold { color: #FFCC00 !important; }
        .kpu-f-blue { color: #002395 !important; } .kpu-f-red { color: #ED2939 !important; }

        /* Dots */
        .kpu-dots { position: absolute; bottom: 3%; left: 0; right: 0; display: flex; justify-content: center; gap: 4px; z-index: 20; pointer-events: none; }
        .kpu-dot { width: clamp(4px, 1vh, 6px) !important; height: clamp(4px, 1vh, 6px) !important; border-radius: 50% !important; background-color: var(--kpu-dot-inactive) !important; cursor: pointer; transition: background-color 0.3s; pointer-events: auto; }
        .kpu-dot.kpu-active { background-color: var(--kpu-dot-active) !important; box-shadow: 0 0 5px rgba(34, 197, 94, 0.5) !important; }

        /* --- Menu Section --- */
        .kpu-right {
            width: 100% !important;
            flex: 1 !important; 
            background-color: #ffffff !important;
            position: relative;
            z-index: 30;
            display: flex;
            flex-direction: column;
            box-sizing: border-box !important;
            overflow: visible !important; 
        }
        
        .kpu-right-inner {
            display: flex;
            flex-direction: column;
            height: auto !important; 
            padding: 6% 4% 10% 4% !important; 
            box-sizing: border-box !important;
        }

        .kpu-logo-wrap {
            display: flex; justify-content: center;
            align-items: center;
            flex-shrink: 0;
            padding-bottom: 2% !important;
            margin-bottom: 2% !important;
        }
        
        .kpu-logo { 
            height: clamp(20px, 5vh, 40px) !important; 
            width: auto !important;
            max-width: 100% !important;
            object-fit: contain !important; 
            margin: 0 !important;
            padding: 0 !important;
        }

        .kpu-nav {
            flex: 1; 
            display: flex; flex-direction: column;
            align-items: center; 
            justify-content: flex-start !important; 
            gap: 1.5vh !important; 
            margin: auto 0 !important; 
            padding: 20px 0 !important; 
            overflow: visible !important; 
        }
        .kpu-link {
            color: var(--kpu-dark) !important;
            font-size: clamp(14px, 2.7vh, 22px) !important; 
            font-weight: 800 !important; letter-spacing: 0.025em !important; text-transform: uppercase !important; text-decoration: none !important; text-align: center !important;
            transition: color 0.2s !important;
            line-height: 1.1 !important;
            width: 100% !important;
            padding: 0 !important; 
            font-family: 'Montserrat', sans-serif !important;
        }
        .kpu-link:hover { color: var(--kpu-hover) !important; }

        .kpu-socials {
            display: flex; justify-content: center; align-items: center; gap: 5vw !important;
            font-size: min(18px, 3vh) !important;
            color: #4b5563 !important;
            margin-top: 2% !important;
            padding-top: 3% !important;
            border-top: 1px solid var(--kpu-border) !important;
            flex-shrink: 0 !important; 
        }
        .kpu-s-link { color: inherit !important; text-decoration: none !important; transition: color 0.2s !important; }
        .kpu-s-link:hover { color: var(--kpu-hover) !important; }

        /* --- Desktop Breakpoint (lg: 1024px) --- */
        @media (min-width: 1024px) {
            
            .kpu-container { 
                flex-direction: row !important; 
                height: 100vh !important; 
                overflow: hidden !important; 
            }

            .kpu-left { 
                width: 65% !important; 
                max-width: 65% !important; 
                flex: 0 0 65% !important; 
                height: 100% !important; 
                padding: 4% !important; /* Reset padding for desktop */
            }
            
            .kpu-card {
                width: 100% !important;
                height: auto !important;
                max-width: 800px !important; 
                aspect-ratio: 16 / 9 !important; 
                max-height: 60vh !important; 
                margin: auto !important;
            }

            .kpu-title { font-size: clamp(2rem, 4vw, 5rem) !important; }
            .kpu-subtitle { font-size: clamp(8px, 1vw, 16px) !important; }
            .kpu-meta { font-size: clamp(6px, 0.7vw, 10px) !important; }
            .kpu-careers { font-size: clamp(10px, 1.2vw, 18px) !important; }
            .kpu-separator { max-width: 60% !important; }
            
            .kpu-d-break { display: block !important; }
            .kpu-dots { bottom: 5% !important; gap: 6px !important; }
            .kpu-dot { width: 8px !important; height: 8px !important; }

            .kpu-right { 
                width: 35% !important; 
                max-width: 35% !important; 
                flex: 0 0 35% !important; 
                height: 100% !important; 
                border-left: 1px solid var(--kpu-border) !important; 
                overflow-y: auto !important; 
            }
            
            .kpu-right-inner { padding: 4vh 3vw !important; min-height: 100%; }
            
            .kpu-logo-wrap { padding-bottom: 5% !important; }
            
            .kpu-logo { height: min(65px, 8vh) !important; }

            .kpu-nav {
                justify-content: center !important; 
                gap: 1.8vh !important; 
            }

            .kpu-link { 
                font-size: min(20px, 3.5vh) !important; 
            }

            .kpu-socials { gap: 1.5vw !important; font-size: min(24px, 4vh) !important; padding-top: 4% !important; }
        }

/* Fixed WhatsApp CTA (subset of main site global wrapper) */
.ke-home-consult-wrap { position: fixed; inset: 0; pointer-events: none; z-index: 99998; font-family: Montserrat, system-ui, sans-serif; }
.ke-home-root { font-family: Montserrat, system-ui, sans-serif; background: #fff; }

/* Hero videos: remove intermittent border/hairline (focus, UA defaults, compositing) */
.ke-home-root video {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  display: block;
  max-width: 100%;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.ke-home-root video:focus,
.ke-home-root video:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.ke-home-root .sec1-video-column,
.ke-home-root .sec2-video-column,
.ke-home-root .sec3-video-column,
.ke-home-root .sec4-video-column,
.ke-home-root .sec5-video-column {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  overflow: hidden;
}

/* Hero headings: one phrase per line (matches kalingaeuro.com design reference) */
.ke-home-root .sec1-heading .sec1-line,
.ke-home-root .sec2-main-heading .sec2-line,
.ke-home-root .sec3-heading .sec3-line,
.ke-home-root .sec4-main-heading .sec4-line,
.ke-home-root .sec5-heading .sec5-line {
  display: block !important;
}

/* ========== Kalinga Euro site header (sticky marketing nav; /v3) ========== */
.ke-site-header {
  font-family: Montserrat, system-ui, -apple-system, sans-serif;
  position: sticky;
  top: 0;
  z-index: 100000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
}
.ke-site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ke-site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #0f172a;
  flex-shrink: 0;
}
.ke-site-header__brand img {
  height: 42px;
  width: auto;
  max-width: min(220px, 48vw);
  object-fit: contain;
}
.ke-site-header__brand-text {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.ke-site-header__toggle {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  color: #0f172a;
  line-height: 1;
}
.ke-site-header__nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ke-site-header__nav-desktop a {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.ke-site-header__nav-desktop a:hover {
  color: #ed5024;
  background: rgba(237, 80, 36, 0.06);
}
.ke-site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, #ed5024 0%, #f97316 100%);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(237, 80, 36, 0.3);
  white-space: nowrap;
}
.ke-site-header__cta:hover {
  color: #fff !important;
  filter: brightness(1.05);
}
.ke-site-header__offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.ke-site-header__offcanvas .nav-link {
  font-weight: 700;
  color: #334155;
  padding: 0.65rem 0;
  border-radius: 6px;
}
.ke-site-header__offcanvas .nav-link:hover {
  color: #ed5024;
}
@media (min-width: 992px) {
  .ke-site-header__toggle {
    display: none !important;
  }
  .ke-site-header__nav-desktop {
    display: flex;
  }
}

/* ========== Kalinga Euro site footer (matches kalingaeuro.com Elementor footer) ========== */
.ke-site-footer {
  font-family: Montserrat, system-ui, -apple-system, sans-serif;
  background: #f1f5f9;
  color: #0f172a;
  padding: 0;
  position: relative;
  overflow-x: clip;
}

.ke-site-footer__cta-wrap {
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1rem 1.25rem 1.25rem;
}

.ke-site-footer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ke-site-footer__cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.4);
}

.ke-site-footer__cta-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.ke-site-footer__nav {
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 0.85rem 1rem 1.1rem;
}

.ke-site-footer__nav-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.75rem;
}

.ke-site-footer__nav-list a {
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.ke-site-footer__nav-list a:hover {
  color: #ed5024;
  background: rgba(237, 80, 36, 0.06);
}

.ke-site-footer__inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.ke-site-footer__h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.ke-site-footer__lead {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.ke-site-footer__copy {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}

.ke-site-footer__form {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.ke-site-footer__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}

.ke-site-footer__input {
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
}

.ke-site-footer__input:focus {
  outline: none;
  border-color: #26ad5f;
  box-shadow: 0 0 0 3px rgba(38, 173, 95, 0.15);
}

.ke-site-footer__submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, #ed5024 0%, #f97316 100%);
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.ke-site-footer__submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.ke-site-footer__social-block {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

.ke-site-footer__social-intro {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #475569;
  font-weight: 600;
}

.ke-site-footer__social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.ke-site-footer__social-icons li {
  margin: 0;
  padding: 0;
}

.ke-site-footer__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-size: 1.15rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.ke-site-footer__soc:hover {
  background: #ed5024;
  color: #fff !important;
  border-color: #ed5024;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(237, 80, 36, 0.35);
}

/* Full-bleed map (edge-to-edge left/right/bottom; address visible above embed) */
.ke-site-footer__map-bleed {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  background: #cbd5e1;
}

.ke-site-footer__map-address {
  margin: 0;
  padding: 1rem 1rem 1rem;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ke-site-footer__map-address-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .ke-site-footer__map-address-inner {
    align-items: center;
  }
}

.ke-site-footer__map-address-textcol {
  flex: 1 1 280px;
  min-width: 0;
}

.ke-site-footer__map-address-qrcol {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
}

.ke-site-footer__qr-wrap {
  display: inline-block;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ke-site-footer__qr-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.ke-site-footer__qr-img {
  display: block;
  width: 180px;
  height: 180px;
  max-width: 100%;
  object-fit: contain;
}

.ke-site-footer__qr-caption {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #64748b;
}

@media (max-width: 767.98px) {
  .ke-site-footer__map-address {
    padding: 0.85rem 1rem 0.9rem;
  }

  .ke-site-footer__map-address-inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.75rem;
  }

  .ke-site-footer__map-address-textcol {
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 1 auto;
    flex-grow: 0;
  }

  .ke-site-footer__map-address-title {
    justify-content: center;
  }

  .ke-site-footer__map-address-text {
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .ke-site-footer__contact-lines {
    align-items: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .ke-site-footer__contact-link {
    justify-content: center;
    text-align: center;
  }

  .ke-site-footer__contact-link > span {
    text-align: center;
  }

  .ke-site-footer__map-address-link {
    justify-content: center;
    margin-top: 0;
  }

  .ke-site-footer__map-address-qrcol {
    margin-left: 0;
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .ke-site-footer__qr-caption {
    margin-top: 0.55rem;
    max-width: none;
  }
}

.ke-site-footer__map-address-title {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ed5024;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ke-site-footer__map-address-text {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
}

.ke-site-footer__map-address-text strong {
  color: #0f172a;
}

.ke-site-footer__map-address-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
}

.ke-site-footer__map-address-link:hover {
  color: #ed5024;
  text-decoration: underline;
}

.ke-site-footer__contact-lines {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ke-site-footer__contact-lines li {
  margin: 0;
  padding: 0;
}

.ke-site-footer__contact-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
}

.ke-site-footer__contact-link:hover {
  color: #ed5024;
}

.ke-site-footer__contact-link .bi {
  margin-top: 0.12rem;
  color: #64748b;
  flex-shrink: 0;
}

.ke-site-footer__contact-link:hover .bi {
  color: #ed5024;
}

.ke-site-footer__contact-label {
  font-weight: 700;
  color: #0f172a;
  margin-right: 0.25rem;
}

.ke-site-footer__map-frame {
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.ke-site-footer__map {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

@media (max-width: 575.98px) {
  .ke-site-footer__map {
    height: 240px;
  }
}

/* Google rating pill (main site uses fixed right — keep below WhatsApp CTA z-index) */
.ke-site-footer__g-review {
  position: fixed;
  top: 42%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 99950;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
  padding: 12px 8px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  color: inherit;
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.ke-site-footer__g-score {
  font-size: 1.1rem;
  font-weight: 800;
  color: #202124;
}

.ke-site-footer__g-divider {
  width: 80%;
  height: 1px;
  background: #e8eaed;
  margin: 8px 0;
}

@media (max-width: 767.98px) {
  .ke-site-footer__g-review {
    display: flex;
    top: auto;
    right: 12px;
    bottom: 86px;
    transform: none;
    width: 56px;
    padding: 10px 6px;
    z-index: 99955;
  }

  .ke-site-footer__g-score {
    font-size: 1rem;
  }
}

.ke-site-footer__back-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 99990;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #26ad5f, #0f766e);
  box-shadow: 0 4px 18px rgba(15, 118, 110, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.ke-site-footer__back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ke-site-footer__back-top:hover {
  filter: brightness(1.08);
}

@media (max-width: 575.98px) {
  .ke-site-footer__back-top {
    right: 12px;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
}

/* University marquee: PNG flags (emoji flags often fail on Windows / some fonts) */
.ke-home-root .kus-loc {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  gap: 0.35rem !important;
}

.ke-home-root .kus-flag {
  width: 20px;
  height: auto;
  aspect-ratio: 22 / 15;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.ke-home-root .kus-loc-txt {
    white-space: nowrap;
}

}

.ke-notif__icon-wrap { position: relative; }

.ke-notif__icon {
    width: 34px;
    height: 34px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ke-notif__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 9px;
    height: 9px;
    background-color: #26ad5f;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
}

.ke-notif__title {
    color: #000000;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.ke-notif__desc {
    color: #334155;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.45;
    font-weight: 500;
}

.ke-notif__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #26ad5f;
    text-decoration: none;
    transition: color 0.2s ease;
    pointer-events: auto;
}

.ke-notif__cta:hover {
    color: #ea580c;
}

.ke-notif__cta i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.ke-notif__cta:hover i {
    transform: translateX(3px);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .ke-notif {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .ke-rocket {
        left: 40px;
        bottom: 25px;
    }

    .ke-blast {
        left: 8%;
        bottom: 105px;
        transform: none;
    }

    .ke-notif {
        left: calc(8% - 10px);
        bottom: 85px;
        width: 270px;
        padding: 12px 16px;
        transform: translateY(25px) scale(0.95);
    }

    .ke-notif--show {
        transform: translateY(0) scale(1);
    }

    .ke-notif__header {
        gap: 8px;
        margin-bottom: 6px;
    }

    .ke-notif__icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .ke-notif__badge {
        width: 7px;
        height: 7px;
    }

    .ke-notif__title {
        font-size: 0.95rem;
    }

    .ke-notif__desc {
        font-size: 0.75rem;
        line-height: 1.35;
    }

    .ke-notif__cta {
        font-size: 0.8rem;
        margin-top: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ke-rocket__wobble,
    .ke-rocket__exhaust,
    .ke-notif--show {
        animation: none;
    }
}

