/* --- GLOBAL & RESET --- */
       /* =========================================
   GLOBAL RESET & VARIABLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-purple: #7a2776;
    --accent-cyan: #00bcd4;
    --white: #ffffff;
    --sticky-blue: #004a99;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body, html {
    background-color: #f0f0f0;
    overflow-x: hidden; /* Critical fix: Prevents white space on right side */
    width: 100%;
}

/* =========================================
   NAVIGATION HEADER (FIXED & STICKY)
   ========================================= */
.dgu-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0; /* Fix: Locks header to both sides (better than width: 100%) */
    width: auto;
    z-index: 1000;
    
    background: rgba(0, 0, 0, 0.15);
    
    /* Hardware Acceleration Fix for Mobile Glitch */
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    -webkit-transform: translateZ(0); 
    transform: translateZ(0); /* Forces GPU rendering to stop shifting/flickering */

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

/* Sticky State - Blue Background on Scroll */
.dgu-nav-container.sticky {
    background: var(--sticky-blue);
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: none;
}

.dgu-nav-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    transition: var(--transition);
    width: 100%; /* Ensures wrapper fills the container */
}

.dgu-logo img {
    height: 60px;
    display: block;
    transition: var(--transition);
}

.dgu-nav-container.sticky .dgu-logo img {
    height: 45px;
}

/* --- DESKTOP MENU --- */
.dgu-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.dgu-menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: var(--transition);
}

.dgu-menu ul li a:hover {
    color: var(--accent-cyan);
}

.dgu-call-action {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 8px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: #000;
}

/* Hide Hamburger by default (Desktop) */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

/* =========================================
   HERO MODULE
   ========================================= */
.dgu-hero-module {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #000;
}

.dgu-hero-main {
    width: 100%;
    height: 100%;
    position: relative;
}

.dgu-bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dgu-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.dgu-about-module {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?w=1920') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.dgu-about-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.dgu-about-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
}

.dgu-bottle-img {
    max-width: 350px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.dgu-section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.dgu-section-title span {
    color: var(--sticky-blue);
    border-bottom: 3px solid var(--sticky-blue);
}

.dgu-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.dgu-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.dgu-feature-tag {
    background: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dgu-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sticky-blue);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    will-change: transform, opacity;
}

.reveal-left { transform: translateX(-100px); }
.reveal-right { transform: translateX(100px); }
.reveal-bottom { transform: translateY(60px); }

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }


/* =========================================
   MOBILE RESPONSIVE (Updated & Fixed)
   ========================================= */
@media (max-width: 992px) {
    
    .dgu-nav-wrapper {
        padding: 15px 20px;
    }

    /* 1. Layout Adjustment for About Section */
    .dgu-about-container {
    
    gap: 0px!important;
    padding: 0 10px!important;
    }

    .dgu-bottle-img {
        max-width: 80%; /* Prevents image overflow */
        margin-bottom: 30px;
    }

    .dgu-features-grid {
        justify-content: center;
    }

    /* 2. Show Hamburger Icon (Visible & Styled) */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        z-index: 1002;
    }

    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--white);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Hamburger Animation to 'X' */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* 3. The Sliding Menu (Drawer) - Fixed for Overflow */
    .dgu-menu {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 80%; /* Slightly larger for better mobile feel */
        height: 100vh;
        background: #1a1a1a;
        padding-top: 90px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 1001;
        overflow-y: auto; /* Allow scrolling inside menu if content is long */
    }

    .dgu-menu.active {
        right: 0; /* Slide in */
    }

    .dgu-menu ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        gap: 0;
    }

    .dgu-menu ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dgu-menu ul li a {
        display: block;
        padding: 15px 0;
        font-size: 15px;
    }

    /* 4. Fix for Header Glitch: Hide Desktop Call Button */
    /* This button was pushing the layout width */
    .desktop-only-call {
        display: none !important;
    }
}

        /* about css start  */

        /* --- ABOUT SECTION STYLES --- */
        .dgu-about-module {
            position: relative;
            width: 100%;
            padding: 80px 0;
            /* Background Image Fixed Logic */
            background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            /* Background stays still while scrolling */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Glassmorphism overlay to make text readable */
        .dgu-about-module::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.85);
            /* Light overlay for content clarity */
            z-index: 1;
        }

        .dgu-about-container {
            position: relative;
            z-index: 2;
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 0 40px;
        }

        /* Left: Product Image Animation */
        .dgu-about-left {
            flex: 1;
            text-align: center;
        }

        .dgu-bottle-img {
            max-width: 400px;
            height: auto;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
            transition: transform 0.5s ease;
        }

        .dgu-bottle-img:hover {
            transform: translateY(-10px);
        }

        /* Right: Content Styling */
        .dgu-about-right {
            flex: 1.5;
        }

        .dgu-section-title {
            font-size: 42px;
            font-weight: 800;
            color: #333;
            margin-bottom: 25px;
        }

        .dgu-section-title span {
            color: #3182ce;
            /* Highlight color */
            border-bottom: 3px solid #3182ce;
        }

        .dgu-description {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        /* Features Grid */
        .dgu-features-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .dgu-feature-tag {
            background: #fff;
            padding: 10px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            color: #444;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #eee;
        }

        .dgu-feature-tag i {
            color: #00bcd4;
            /* Icon color */
            font-size: 18px;
        }

        /* Read More Button */
        .dgu-read-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #3182ce;
            color: #fff;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .dgu-read-more:hover {
            background: #2a69ac;
        }

        /* --- RESPONSIVE ABOUT SECTION --- */
        @media (max-width: 992px) {
            .dgu-about-container {
                flex-direction: column;
                text-align: center;
            }

            .dgu-features-grid {
                justify-content: center;
            }

            .dgu-bottle-img {
                max-width: 250px;
            }
        }



        /* --- ANIMATION CORE STYLES --- */

        /* Hidden State (Elements yahan se start honge) */
        .reveal {
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .reveal-left {
            transform: translateX(-100px);
            /* Left se aane ke liye */
        }

        .reveal-right {
            transform: translateX(100px);
            /* Right se aane ke liye */
        }

        .reveal-bottom {
            transform: translateY(50px);
            /* Bottom se upar aane ke liye */
        }

        /* Active State (Scroll karne par ye class add hogi) */
        .reveal.active {
            opacity: 1;
            transform: translate(0, 0);
        }

        /* Thoda delay buttons ke liye taaki text ke baad aayein */
        .delay-1 {
            transition-delay: 0.2s;
        }

        .delay-2 {
            transition-delay: 0.4s;
        }

        .reveal {
            opacity: 0;
            /* transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); */
            transition: all 0.8s ease-in-out;
            will-change: transform, opacity;
            /* Performance boost ke liye */
        }

        /* Jab active class hat jayegi (Scroll Out), tab ye wapis reset ho jayenge */
        .reveal-left {
            transform: translateX(-80px);
        }

        .reveal-right {
            transform: translateX(80px);
        }

        .reveal-bottom {
            transform: translateY(40px);
        }

        .reveal.active {
            opacity: 1;
            transform: translate(0, 0);
        }





        /* slider section css   */

        /* --- BRAND MODULE STYLES --- */
        .dgu-brand-module {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 700px;
            /* Fixed Mountain Background Placeholder */
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),
                url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-attachment: fixed;
            /* Background stays still */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .dgu-brand-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* --- Bottle & Base Styling --- */
        .dgu-bottle-wrapper {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .dgu-hero-bottle {
            height: 550px;
            max-height: 75vh;
            filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
            transition: opacity 0.5s ease-in-out, transform 0.5s ease;
            z-index: 15;
        }

        .dgu-bottle-base {
            position: absolute;
            bottom: -100px;
            width: 600px;
            height: 300px;
            background: #3182ce;
            border-radius: 50%;
            filter: blur(20px);
            opacity: 0.8;
            z-index: 5;
        }

        .dgu-glow-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
            z-index: 1;
        }

        /* --- Stickers Sliding & Rotating Logic --- */
        :root {
            --primary-blue: #3182ce;
        }

        .dgu-brand-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Fixed Parallax Background */
        .dgu-fixed-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 85%;
            background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            z-index: 1;
        }

        .dgu-brand-container {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Half Circle / Arch Animation Logic */
        .dgu-arch-slider {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .sticker-item {
            position: absolute;
            width: 90px;
            height: 90px;
            background: #fff;
            border-radius: 18px;
            padding: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            /* Motion path for Half Circle effect */
           offset-path: path('M 0,500 C 0,100 1400,100 1400,500');
            animation: moveAlongPath 15s linear infinite;
            opacity: 0;
        }

        .sticker-item img {
            width: 100%;
            object-fit: contain;
        }

        @keyframes moveAlongPath {
            0% {
                offset-distance: 0%;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                offset-distance: 100%;
                opacity: 0;
            }
        }

        /* Staggering the stickers for continuous flow */
        .item-1 {
            animation-delay: 0s;
        }

        .item-2 {
            animation-delay: 2.5s;
        }

        .item-3 {
            animation-delay: 5s;
        }

        .item-4 {
            animation-delay: 7.5s;
        }

        .item-5 {
            animation-delay: 10s;
        }

        .item-6 {
            animation-delay: 12.5s;
        }

        /* Main Bottle Center Styling */
        .dgu-bottle-display {
            position: relative;
            z-index: 10;
            transition: transform 0.3s ease;
        }

        #main-bottle {
            height: 700px;
            max-height: 80vh;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
            transition: opacity 0.5s ease;
        }

        .bottle-shadow-base {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 250px;
            height: 50px;
            background: radial-gradient(ellipse, rgba(0, 74, 153, 0.4) 0%, transparent 70%);
            z-index: -1;
        }
        /* --- Add this specific part to your CSS --- */
/* Isse section load hote hi stickers arch par pehle se hi dikhenge */
.item-1 { animation-delay: -2s; }
.item-2 { animation-delay: -4.5s; }
.item-3 { animation-delay: -7s; }
.item-4 { animation-delay: -9.5s; }
.item-5 { animation-delay: -12s; }
.item-6 { animation-delay: -14.5s; }

/* Performance optimize karne ke liye ye line sticker-item mein add karein */
.sticker-item {
    will-change: offset-distance, opacity;
}

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .sticker-item {
                width: 60px;
                height: 60px;
                offset-path: path('M -50 300 C 100 200, 400 200, 550 400');
            }

            #main-bottle {
                height: 350px;
            }
        }




        /* why choose section start  */
        /* --- SECTION 4: WHY CHOOSE WAHTER --- */
        .dgu-why-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            padding: 20px 0;
            overflow: hidden;
        }

        .dgu-fixed-bg-mountains {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('mountains-white.jpg') no-repeat center center/cover;
            background-attachment: fixed;
            opacity: 0.6;
            z-index: 1;
        }

        .dgu-why-container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .dgu-main-title {
            text-align: center;
            font-size: 38px;
            font-weight: 800;
            color: #333;
            margin-bottom: 60px;
        }

        .dgu-main-title span {
            color: #3182ce;
        }

        /* Center Bottles Logic (Slow Bottom-to-Up) */
        .dgu-center-bottles {
            position: absolute;
            top: 16%;
            left: 42%;
            transform: translate(-50%, -50%);
            width: 220px;
            z-index: 10;
            transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
            /* Slow & Smooth transition */
        }

        .dgu-center-bottles img {
            width: 100%;
            filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.15));
        }

        /* Info Boxes Layout */
        .dgu-content-row {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 100px;
            /* Gap badhaya hai */
            padding: 0 60px;
        }

        .dgu-info-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            padding: 25px;
            border-radius: 20px;
            width: 400px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
            gap: 18px;
            /* Animation speed control */
            transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        /* Hover effect thoda soft rakha hai */
        .dgu-info-box:hover {
            transform: translateY(-10px) scale(1.02);
            background: #fff;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .box-text h3 {
            font-size: 20px;
            color: #004a99;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .box-text p {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
        }

        .box-icon img {
            width: 50px;
            height: auto;
        }

        /* Mobile View Adjustments */
        @media (max-width: 1024px) {
            .dgu-center-bottles {
                position: relative;
                top: 0;
                left: 0;
                transform: none;
                margin: 40px auto;
                width: 170px;
            }

            .dgu-content-row {
                flex-direction: column;
                align-items: center;
                gap: 30px;
                padding: 0 20px;
            }

            .dgu-info-box {
                width: 100%;
                max-width: 450px;
            }
        }


        /* call us section start  */

        /* --- CTA SECTION STYLES --- */
        .dgu-cta-section {
            position: relative;
            width: 100%;
            padding: 100px 20px;
            background-color: #2c4e7a;
            /* Exact Blue from image */
            color: #ffffff;
            text-align: center;
            overflow: hidden;
        }

        .dgu-cta-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .dgu-cta-title {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 30px;
            text-transform: capitalize;
        }

        .dgu-cta-title span {
            color: #4ed9d9;
            /* Cyan/Teal color for "Wahter Wave!" */
        }

        .dgu-cta-content {
            font-size: 18px;
            line-height: 1.8;
            font-weight: 400;
            opacity: 0.9;
        }

        .dgu-cta-content a {
            color: #ffffff;
            text-decoration: underline;
            font-weight: 700;
            font-style: italic;
        }

        .dgu-cta-content p {
            margin-bottom: 10px;
        }

        /* --- RESPONSIVE CTA --- */
        @media (max-width: 768px) {
            .dgu-cta-section {
                padding: 60px 20px;
            }

            .dgu-cta-title {
                font-size: 28px;
            }

            .dgu-cta-content {
                font-size: 16px;
            }
        }


        /* partnes css start  */
        /* --- MEDIA SECTION ACCURATE STYLES --- */
        .dgu-media-section {
            width: 100%;
            padding: 80px 0;
            background-color: #ffffff;
            text-align: center;
            overflow: hidden;
        }

        /* Master Reveal Transition - Smooth Scroll In/Out */
        .reveal {
            opacity: 0;
            transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
            will-change: transform, opacity;
        }

        .reveal-bottom {
            transform: translateY(50px);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .dgu-media-title {
            font-size: 36px;
            font-weight: 800;
            color: #333;
            margin-bottom: 20px;
        }

        .dgu-media-title span {
            color: #3182ce;
        }

        .dgu-media-desc {
            max-width: 800px;
            margin: 0 auto 50px;
            color: #666;
            line-height: 1.6;
            font-size: 15px;
            padding: 0 20px;
        }

        .dgu-media-slider-wrapper {
            width: 100%;
            position: relative;
            display: flex;
            overflow: hidden;
        }

        .dgu-media-track {
            display: flex;
            width: max-content;
            /* Dynamically calculates width based on content */
            animation: infiniteScroll 25s linear infinite;
            /* Smooth seamless loop */
        }

        .media-card {
            width: 220px;
            height: 100px;
            background: #fff;
            border: 1px solid #e2e8f0;
            margin: 0 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .media-card:hover {
            transform: translateY(-5px);
            border-color: #3182ce;
        }

        .media-card img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: 0.3s ease;
        }

        .media-card:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Pause on hover logic */
        .dgu-media-slider-wrapper:hover .dgu-media-track {
            animation-play-state: paused;
        }

        /* --- SEAMLESS INFINITE ANIMATION --- */
        @keyframes infiniteScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }

            /* Resets instantly at halfway point for infinite effect */
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .dgu-media-title {
                font-size: 28px;
            }

            .media-card {
                width: 160px;
                height: 80px;
                margin: 0 10px;
            }

            .dgu-media-track {
                animation-duration: 15s;
            }

            /* Slightly faster on mobile for better feel */
        }

        /* testimonial css start  */

      /* --- TESTIMONIAL MODULE STYLES (Fixed for Infinite Loop) --- */
.dgu-testimonial-section {
    position: relative;
    padding: 30px 0;
    width: 100%;
  
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.dgu-testimonial-container {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.dgu-section-heading {
    font-size: 34px;
    font-weight: 800;
    color: #004a99;
    margin-bottom: 50px;
}

.dgu-testimonial-viewport {
    width: 100%;
    overflow: hidden; /* Hides the cards that are off-screen */
}

.dgu-testimonial-slider {
    display: flex;
    width: 100%; /* Critical Fix: Matches viewport width for correct JS sliding */
    /* Transition is handled by JS for the loop, but we keep a default for smoothness */
    will-change: transform; 
}

.testimonial-card {
    /* --- LAYOUT FIXES FOR LOOP --- */
    /* Desktop: 2 Cards (50% each) minus the 30px margin */
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    margin-right: 30px; /* Replaces 'gap' for better loop math */
    flex-shrink: 0;     /* Prevents cards from shrinking */
    
    /* --- VISUAL DESIGN (UNCHANGED) --- */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.user-image-wrapper {
    position: relative;
    width: 40%;
    flex-shrink: 0; /* Ensures image doesn't get squished */
}

.user-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ff0000;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    z-index: 10;
}

.user-content {
    width: 60%;
    padding: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-info h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.designation {
    font-size: 13px;
    color: #3182ce;
    font-weight: 600;
    margin-bottom: 25px;
}

.quote-wrapper {
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 110px;
    color: #e2e8f0;
    opacity: 0.7;
    font-family: serif;
    line-height: 1;
    z-index: 1;
}

.quote-text {
    position: relative;
    z-index: 2;
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

/* Pagination Dots */
.dgu-slider-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #3182ce;
    width: 25px;
    border-radius: 10px;
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 1200px) {
    /* Keep styling but rely on flex percents */
    .user-content {
        padding: 25px; /* Slightly reduce padding on medium screens */
    }
}

@media (max-width: 768px) {
    /* Mobile: 1 Card Per View */
    .testimonial-card {
        /* Full width minus a small margin for side spacing */
        flex: 0 0 calc(100% - 15px); 
        max-width: calc(100% - 15px);
        margin-right: 15px;
        
        /* Stack content vertically */
        flex-direction: column;
    }

    .user-image-wrapper {
        width: 100%;
        height: 250px;
    }

    .user-content {
        width: 100%;
        padding: 30px 25px;
    }

    .quote-mark {
        font-size: 80px; /* Smaller quote mark on mobile */
    }
     .hide-mobile {
      display: none !important;
    }
}

        /* sustinablity style  */
        /* --- SUSTAINABILITY MODULE --- */
        .dgu-future-section {
            background-image: url('../bg/bg.png');
            background-repeat: no-repeat;
            position: relative;
            padding: 100px 0;
          
            overflow: hidden;
        }

        .dgu-future-container {
            max-width: 1350px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 0 40px;
        }

        .dgu-future-left,
        .dgu-future-right {
            flex: 1;
        }

        .dgu-future-img {
            max-width: 100%;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
        }

        /* --- VIDEO MASKING EFFECT --- */
        .dgu-mask-title {
            font-size: 90px;
            font-weight: 900;
            line-height: 1;
            color: #333;
            margin-top: 10px;
        }

        .running-text {
            display: inline-block;
            text-transform: uppercase;
            /* TEMPORARY BACKGROUND: Nature/Leaves movement */
            background-image: url('../waterfall-water.gif');
            background-size: cover;
            background-position: center;
            -webkit-background-clip: text;
            /* Text masking logic */
            background-clip: text;
            color: transparent;
            /* Text hide karke background dikhayega */
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        }

        /* --- STATS PILLS --- */
        .dgu-stats-container {
            display: flex;
            gap: 15px;
            margin: 35px 0;
        }

        .stat-pill {
            background: #c7f9cc;
            /* Light Green shade */
            padding: 12px 20px;
            border-radius: 10px;
            text-align: center;
            min-width: 130px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .stat-pill strong {
            display: block;
            font-size: 26px;
            color: #1b4332;
            font-weight: 800;
        }

        .stat-pill span {
            font-size: 10px;
            font-weight: 700;
            color: #2d6a4f;
            letter-spacing: 0.5px;
        }

        /* --- YELLOW CTA BUTTON --- */
        .dgu-yellow-btn {
            display: inline-block;
            background: #ffda44;
            color: #333;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(255, 218, 68, 0.3);
            transition: 0.3s ease;
        }

        .dgu-yellow-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(255, 218, 68, 0.5);
        }

        /* Mobile Responsive */
        @media (max-width: 992px) {
            .dgu-future-container {
                flex-direction: column;
                text-align: center;
            }

            .dgu-stats-container {
                justify-content: center;
                flex-wrap: wrap;
            }

            .dgu-mask-title {
                font-size: 45px;
            }
        }

        /* --- FOOTER ANIMATION LOGIC --- */
       /* --- FOOTER MASTER STYLES (RE-DESIGNED) --- */
.dgu-footer-module {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 80px 0 0 0;
    overflow: hidden;
    /* Accuracy Fix: Pattern background from Original Screenshot */
    background-image: linear-gradient(135deg, #f0f2f5 25%, transparent 25%), 
                      linear-gradient(225deg, #f0f2f5 25%, transparent 25%);
    background-size: 80px 80px;
    background-attachment: fixed;
    border-top: 1px solid #eee;
}

.dgu-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 30px;
    padding: 0 40px 80px 40px;
    position: relative;
    z-index: 5;
}

/* Typography Accuracy */
.footer-ready-text {
    font-size: 30px;
    font-weight: 300;
    color: #444;
    line-height: 1.2;
    margin-bottom: 25px;
}
.footer-ready-text span {
    font-weight: 800;
    color: #1e3a5f; /* Deep Blue from Original */
}

.footer-title {
    font-size: 19px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 30px;
}

/* Button & Icons (Correcting your Cyan buttons) */
.btn-cyan-flat {
    background: #40e0d0; /* Correct Cyan */
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 8px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cyan-flat:hover {
    background: #1e3a5f;
    transform: translateY(-3px);
}

.footer-social-strip a {
    width: 38px; height: 38px;
    background: #f1f3f5;
    border-radius: 6px;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: #444;
    margin: 15px 10px 0 0;
    transition: 0.3s;
}
.footer-social-strip a:hover {
    background: #1e3a5f; color: #fff;
}

/* Link List Fix */
.quick-links-list { list-style: none; }
.quick-links-list li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
    transition: 0.3s;
}
.quick-links-list li a:hover { color: #40e0d0; padding-left: 5px; }

/* Contact Styling Fix */
.c-row { display: flex; align-items: center; gap: 15px; margin-bottom: 22px; }
.c-round-icon {
    width: 36px; height: 36px;
    background: #fff; border: 1px solid #f0f0f0;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #40e0d0; font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.c-detail span { font-size: 11px; color: #999; display: block; }
.c-detail strong, .c-detail a { font-size: 14px; color: #333; text-decoration: none; font-weight: 700; }

/* Animation Mixing Logic (Smooth Glide) */
.reveal-left { opacity: 0; transform: translateX(-120px); transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1); }
.reveal-right { opacity: 0; transform: translateX(120px); transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1); }
.reveal.active { opacity: 1; transform: translateX(0); }

/* Bottom Bar */
.footer-copy-strip { border-top: 1px solid #f1f1f1; padding: 25px 40px; background: #fff; }
.strip-wrapper { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; font-size: 13px; color: #777; }
.dev-highlight { color: #f06595; font-weight: 700; }

/* Responsive Fix */
@media (max-width: 992px) {
    .dgu-footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .dgu-footer-container { grid-template-columns: 1fr; text-align: center; }
    .c-row { justify-content: center; }
    .footer-action-btns { flex-direction: column; gap: 10px; }
}
    