
        :root {
            --gold: #0074A0;
            --light-bg: #FFFFFF;
            --dark-text: #212529;
            --glass-light: rgba(255, 255, 255, 0.95);
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family:  "Lora", sans-serif;
            background-color: var(--light-bg);
            color: var(--dark-text);
            overflow-x: hidden;
        }

        
        .lead{
            text-align: justify;
        }

        /* --- Navbar Fixes --- */
        .main-nav {
            padding: 20px 0;
            transition: var(--transition);
            z-index: 1050;
        }

        .main-nav.scrolled {
            background: var(--glass-light);
            backdrop-filter: blur(15px);
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .main-nav.scrolled::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: -200px;
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            animation: moveLine 6s linear infinite;
        }

        @keyframes moveLine {
            0% {
                left: -200px;
            }

            100% {
                left: 100%;
            }
        }

        /* Logo */
        .navbar-brand img {
            height: 45px;
          
        }

        /* --- Custom Dropdown Icon --- */
        .dropdown-toggle::after {
            display: none !important;
        }

        .dropdown-toggle::before {
            content: "\f282";
            font-family: "bootstrap-icons";
            font-size: 10px;
            position: absolute;
            right: 0;
            top: 52%;
            transform: translateY(-50%);
            color: var(--gold);
            transition: 0.3s;
            opacity: 0.7;
        }

        /* Dropdown Menu Box */
        .dropdown-menu {
            background: #ffffff;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 4px;
            margin-top: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .dropdown-item {
            color: var(--dark-text) !important;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 12px 25px;
            text-transform: uppercase;
            transition: 0.3s;
        }

        .dropdown-item:hover {
            background: var(--gold);
            color: #fff !important;
            padding-left: 30px;
        }

        .nav-link {
            color: var(--dark-text) !important;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            position: relative;
            transition: 0.3s;
        }

        /* Rotate icon on hover */
        .nav-item.dropdown:hover .dropdown-toggle::before {
            transform: translateY(-50%) rotate(180deg);
            opacity: 1;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--gold) !important;
        }

        /* Mobile Menu Styling */
        @media (min-width: 992px) {
            .nav-item.dropdown:hover .dropdown-menu {
                display: block;
                animation: navFadeUp 0.3s ease-out;
            }
        }

        @keyframes navFadeUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        


        /* --- Alignment Fix for Nested Icons --- */

/* Desktop (992px+) */
@media (min-width: 992px) {
    .dropdown-submenu {
        position: relative;
    }

    /* Submenu Position */
    .dropdown-submenu .submenu-child {
        display: none !important;
        position: absolute;
        left: 100%;
        top: 0;
        margin-top: -5px;
        margin-left: 0;
    }

    /* Show on Hover */
    .dropdown-submenu:hover > .submenu-child {
        display: block !important;
        animation: navFadeUp 0.3s ease-out;
    }

    /* Icon Alignment */
    .nested-icon {
        font-size: 10px;
        color: var(--gold);
        transition: 0.3s;
    }

    .dropdown-submenu:hover .nested-icon {
        transform: translateX(5px); /* Hover par halka sa move hoga */
        color: #fff; /* Agar background gold ho raha hai hover par */
    }
}

/* Mobile (991px-) */
@media (max-width: 991px) {
    .dropdown-submenu .submenu-child {
        position: static !important;
        display: none !important;
        background: rgba(0, 0, 0, 0.03) !important;
        padding-left: 15px !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Open Class */
    .dropdown-submenu.is-open > .submenu-child {
        display: block !important;
    }

    /* Mobile Icon Rotate */
    .dropdown-submenu.is-open .nested-icon {
        transform: rotate(90deg);
    }
}

/* Common fix to remove any global absolute before/after from icons */
.nested-toggle::before, .nested-toggle::after {
    display: none !important;
}

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: #ffffff;
                margin-top: 15px;
                padding: 20px;
                border: 1px solid var(--gold);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            .dropdown-toggle::before {
                right: 10px;
            }

            .bi-list {
                color: var(--dark-text) !important;
            }
        }

        .btn-gold {
            border: 2px solid var(--gold) !important;
            padding: 8px 20px !important;
            color: var(--gold) !important;
            border-radius: 4px;
            transition: 0.4s;
            background: transparent;
        }

        .btn-gold:hover {
            background: var(--gold);
            color: #fff !important;
        }


        /* --- Hero Section & Video Fix (Light Theme) --- */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
            /* background-color: #fff; Fallback for video load */
        }

        .video-docker {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .video-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            /* Video ko thoda light rakha hai text visibility ke liye */
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Dark gradient ko light white gradient se badla */
            background: linear-gradient(75deg, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0.2) 50%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-title {
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            font-size: calc(1.8rem + 2.5vw);
            color: #212529;
            /* Dark Title Color */
        }

        .text-gradient {
            /* Text gradient dark charcoal to gold */
            background: linear-gradient(90deg, #333, var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-gold {
            color: var(--gold);
        }

        .hero-desc {
            font-size: 1.1rem;
            max-width: 600px;
            color: #444;
            /* Darker description for light theme */
            border-left: 3px solid var(--gold);
            padding-left: 20px;
            margin-bottom: 30px;
        }

        /* --- Premium Buttons (Light Theme) --- */
        .btn-premium-gold {
            background: var(--gold);
            color: #fff;
            /* Text white on gold button */
            font-weight: 700;
            border-radius: 4px;
            padding: 14px 30px;
            text-transform: uppercase;
            border: none;
            transition: 0.3s;
        }

        .btn-premium-gold:hover {
            background: #212529;
            /* Hover dark color */
            color: #fff;
            transform: translateY(-3px);
        }

        .btn-outline-premium {
            border: 2px solid #212529;
            /* Outline dark charcoal */
            color: #212529;
            border-radius: 4px;
            padding: 14px 30px;
            text-transform: uppercase;
            transition: 0.3s;
            font-weight: 600;
        }

        .btn-outline-premium:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: transparent;
        }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 768px) {
            .hero-section {
                text-align: center;
            }

            .hero-desc {
                border-left: none;
                padding-left: 0;
                margin: 0 auto 30px;
                font-size: 0.95rem;
            }

            .hero-overlay {
                background: rgba(255, 255, 255, 0.9);
                /* Stronger white overlay on mobile */
            }

            .hero-btns .btn {
                width: 100%;
                margin: 10px 0 !important;
            }
        }

        /* Mouse Scroll Animation (Light Theme) */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 10;
            color: #333;
            /* Darker text */
        }

        .mouse {
            width: 22px;
            height: 38px;
            border: 2px solid #333;
            /* Dark border */
            border-radius: 20px;
            margin: 0 auto 8px;
            position: relative;
        }

        .mouse::after {
            content: '';
            width: 4px;
            height: 8px;
            background: red;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
            animation: scrollMove 2s infinite;
        }/* Animation Logic */
@keyframes scrollMove {
    0% {
        opacity: 0;
        top: 5px;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 25px;
    }
}



/* Section Main Style */
    .ongoing-section {
        background: #f9fbfd; /* Changed from dark to white */
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        padding: 100px 0;
        overflow: hidden;
    }

    .fw-900 {
        font-weight: 900;
    }

    /* Card Styling */
    .ongoing-card-v2 {
        position: relative;
        height: 520px;
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
        border: 1px solid rgba(0, 0, 0, 0.1); /* Adjusted for light background */
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        cursor: pointer;
    }

    .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Adjusted gradient to work on light theme (kept dark at bottom for text) */
        background: linear-gradient(to top,
                rgba(5, 10, 18, 0.9) 15%,
                rgba(5, 10, 18, 0.4) 50%,
                rgba(5, 10, 18, 0.1) 100%);
        z-index: 1;
        transition: 0.5s ease;
    }

    .card-content {
        position: relative;
        z-index: 2;
        padding: 35px;
        width: 100%;
        transition: 0.5s ease;
    }

    /* Hover Effects */
    .ongoing-card-v2:hover {
        transform: translateY(-15px);
        border-color: #0074A0;
        background-size: 110%;
    }

    .ongoing-card-v2:hover .card-overlay {
        background: linear-gradient(to top,
                rgba(5, 10, 18, 1) 35%,
                rgba(212, 175, 55, 0.2) 100%);
    }

    /* Elements Styling */
    .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
    }

    .location {
        color: #0074A0;
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .live-indicator {
        display: flex;
        align-items: center;
    }

    .status-pulse {
        width: 10px;
        height: 10px;
        background: #28a745;
        border-radius: 50%;
        box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
        100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
    }




    .project-title {
        color: #fff; /* Keeping white because it's on dark overlay */
        font-weight: 800;
        font-size: 1.35rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .client-name {
        color: #ddd; /* Slightly lighter for better contrast on image */
        font-size: 0.85rem;
        margin-bottom: 20px;
        font-style: italic;
    }

    .mini-specs {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .mini-specs li {
        color: #eee;
        font-size: 0.85rem;
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
        font-weight: 400;
    }

    .mini-specs li::before {
        content: "—";
        position: absolute;
        left: 0;
        color: #0074A0;
    }

    .btn-explore {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        display: block;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.75rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: 0.4s;
    }

    .ongoing-card-v2:hover .btn-explore {
        background: #0074A0;
        color: #000;
        border-color: #0074A0;
    }

    /* Navigation Buttons */
    .swiper-nav-btns .btn-outline-gold {
        border: 1px solid #0074A0;
        color: #0074A0;
        border-radius: 0;
        width: 55px;
        height: 55px;
        transition: 0.3s;
    }

    .swiper-nav-btns .btn-outline-gold:hover {
        background: #0074A0;
        color: #000;
    }

    /* Swiper Pagination */
    .swiper-pagination-bullet {
        background: #0074A0 !important;
    }

    /* Gateway Card Adjustments for Light Theme */
    .gateway-card {
        position: relative;
        height: 500px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.1); /* Changed to light border */
        display: flex;
        align-items: flex-end;
        padding: 40px;
        transition: 0.5s all ease;
        background: #fff;
    }

    .gateway-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .gateway-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(0.5) brightness(0.7); /* Adjusted for light theme */
        transition: 0.8s all ease;
    }

    .gateway-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Gradient adjusted: transparent to dark at bottom for text readability */
        background: linear-gradient(to top, rgba(5, 10, 18, 0.9) 20%, transparent 80%);
        z-index: 2;
        transition: 0.5s;
    }

    .gateway-content {
        position: relative;
        z-index: 3;
        transition: 0.5s all ease;
        color: #fff; /* Content inside card remains white for contrast */
    }

    .gateway-content h3 {
        color: #fff;
    }

    .gateway-content .description {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: 0.5s all ease;
        color: #ccc;
        font-size: 0.9rem;
    }

    /* Hover Effects */
    .gateway-card:hover {
        border-color: #0074A0;
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .gateway-card:hover .gateway-img img {
        filter: grayscale(0) brightness(0.6);
        transform: scale(1.1);
    }

    .gateway-card:hover .gateway-content .description {
        max-height: 100px;
        opacity: 1;
        margin-top: 15px;
    }

    .gateway-card:hover .gateway-overlay {
        background: linear-gradient(to top, #050A12 40%, rgba(5, 10, 18, 0.4));
    }

    .btn-outline-gold {
        border: 1px solid #0074A0;
        color: #0074A0;
        border-radius: 0;
        padding: 10px 25px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .btn-outline-gold:hover {
        background: #0074A0 !important;
        color: #000 !important;
    }




    /* Services Section Styles */
    .custom-tabs { 
        border: 1px solid rgba(0,0,0,0.1); 
        display: inline-flex; 
        padding: 5px; 
        background: rgba(0,0,0,0.03); 
    }
    .custom-tabs .nav-link { 
        color: #555; 
        border-radius: 0; 
        padding: 12px 30px; 
        font-weight: 700; 
        font-size: 0.8rem; 
        letter-spacing: 1px; 
        transition: 0.4s; 
    }
    .custom-tabs .nav-link.active { 
        background: #0074A0 !important; 
        color: #fff !important; 
    }

    .service-main-card { position: relative; height: 100%; overflow: hidden; }
    .service-main-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
    .service-main-card:hover img { transform: scale(1.1); }
    
    /* Overlay for text contrast on images */
    .content-overlay { 
        position: absolute; 
        bottom: 0; 
        left: 0; 
        width: 100%; 
        padding: 40px; 
        background: linear-gradient(transparent, rgba(5, 10, 18, 0.9)); 
        color: #fff;
    }
    .content-overlay h3 { color: #fff; }
    .content-overlay p { color: #ccc; }

    .feature-box { 
        background: #f9f9f9; 
        padding: 30px; 
        border-left: 3px solid transparent; 
        transition: 0.4s; 
        border: 1px solid rgba(0,0,0,0.05);
    }
    .feature-box:hover { 
        background: #fff; 
        border-left-color: #0074A0; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .feature-box .num { color: #0074A0; font-weight: 900; font-size: 0.8rem; display: block; margin-bottom: 10px; }
    .feature-box h5 { color: #333; }
    .feature-box p { color: #666; }

    .service-mini-card { 
        background: #fff; 
        padding: 40px; 
        border: 1px solid rgba(0,0,0,0.1); 
        height: 100%; 
        transition: 0.4s; 
    }
    .service-mini-card h4 { color: #222; }
    .service-mini-card p { color: #666; }
    .service-mini-card:hover { border-color: #0074A0; transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    .service-mini-card.active { border-color: #0074A0; background: rgba(212, 175, 55, 0.02); }

    .icon-circle { 
        width: 50px; 
        height: 50px; 
        border: 1px solid #0074A0; 
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        color: #0074A0; 
        flex-shrink: 0; 
    }

    @media (max-width: 768px) {
        .service-main-card { height: 300px; }
    }




    /* Counter Section */
    .premium-stats-section {
        background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), 
                          url('https://i.pinimg.com/736x/59/60/84/59608403897c82d13be0f127278c9c91.jpg');
        background-position: center;
        background-attachment: fixed;
        background-size: cover;
        padding: 100px 0;
        overflow: hidden;
    }

    /* Cyber Card Base - Adjusted for Light Theme */
    .cyber-stat-card {
        position: relative;
        background: rgba(0, 0, 0, 0.05); /* Light transparency */
        padding: 2px; 
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.4s ease;
        text-align: center;
        z-index: 1;
    }

    /* Animated Border Effect */
    .cyber-stat-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(
            transparent, 
            #0074A0, 
            #996515, 
            transparent 30%
        );
        animation: rotateBorder 4s linear infinite;
        z-index: -1;
    }

    @keyframes rotateBorder {
        100% { transform: rotate(360deg); }
    }

    .stat-content {
        background: #ffffff; /* White card inner */
        padding: 40px 20px;
        border-radius: 18px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .inner-glow {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%);
        pointer-events: none;
    }

    /* Icon Style */
    .stat-icon {
        font-size: 2.5rem;
        background: linear-gradient(135deg, #0074A0, #996515);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
        display: inline-block;
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    }

    /* Typography */
    .counter-box {
        font-size: 3.5rem;
        font-weight: 900;
        color: #222; /* Darker text for readability */
        margin-bottom: 10px;
        font-family: 'Montserrat', sans-serif;
    }

    .suffix {
        color: #0074A0;
        margin-left: 5px;
    }

    .stat-content p {
        color: #666; /* Gray text */
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* Hover State */
    .cyber-stat-card:hover {
        transform: translateY(-15px) scale(1.02);
    }
    
    .cyber-stat-card:hover .stat-content {
        background: #fdfdfd;
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    }

    @media (max-width: 768px) {
        .counter-box { font-size: 2.5rem; }
    }

    @media (max-width: 576px) {
        .premium-stats-section .row > div {
            width: 50%; 
            padding: 10px;
        }
        .stat-content { padding: 25px 15px; }
        .stat-icon { font-size: 2rem; margin-bottom: 10px; }
        .counter-box { font-size: 2.2rem; margin-bottom: 5px; }
        .stat-content p { font-size: 0.65rem; letter-spacing: 1px; }
        .cyber-stat-card:hover { transform: translateY(-5px); }
    }




    /* Section Background */
    .portfolio-vault { background: #ffffff; }

    /* Vault Card Adjustments */
    .vault-card { 
        position: relative; 
        border-radius: 15px; 
        overflow: hidden; 
        cursor: pointer; 
        background: #f8f9fa; /* Light background for card */
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .vault-img img { 
        width: 100%; 
        height: 400px; 
        object-fit: cover; 
        opacity: 0.9; /* Increased opacity for light theme */
        transition: 0.8s ease; 
        filter: grayscale(0.2);
    }

    .vault-info { 
        position: absolute; 
        bottom: 0; 
        left: 0; 
        padding: 30px; 
        width: 100%; 
        /* Gradient adjusted for readability on light/dark images */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 30%, transparent); 
        z-index: 2; 
    }

    .v-cat { color: #0074A0; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
    .v-title { color: #fff; font-weight: 800; margin-top: 5px; }
    
    .v-btn { 
        position: absolute; 
        top: -25px; 
        right: 30px; 
        width: 50px; 
        height: 50px; 
        background: #0074A0; 
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        color: #000; 
        font-size: 1.5rem; 
        transform: scale(0); 
        transition: 0.4s ease; 
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }

    .vault-card:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .vault-card:hover .vault-img img { opacity: 1; transform: scale(1.1); filter: grayscale(0); }
    .vault-card:hover .v-btn { transform: scale(1); }

    /* Modal Styling - Premium Light Blur */
    .vault-modal { 
        display: none; 
        position: fixed; 
        z-index: 2000; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        background: rgba(255, 255, 255, 0.9); /* Light semi-transparent bg */
        backdrop-filter: blur(15px); 
        align-items: center; 
        justify-content: center; 
        padding: 20px; 
    }

    .modal-glass-content { 
        background: #ffffff; 
        border: 1px solid rgba(0, 0, 0, 0.05); 
        max-width: 1000px; 
        width: 100%; 
        border-radius: 20px; 
        overflow: hidden; 
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        animation: modalSlide 0.5s ease; 
    }

    /* Modal Text Adjustments */
    #modalTitle { color: #222 !important; }
    #modalDesc { color: #555 !important; }
    .close-vault { color: #333; }

    @keyframes modalSlide { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
    
    .modal-main-img { height: 100%; width: 100%; object-fit: cover; min-height: 450px; }
    
    /* Buttons */
    /* .btn-gold { background: #0074A0; color: #000; font-weight: 700; border-radius: 0; transition: 0.3s; }
    .btn-gold:hover { background: #000; color: #0074A0; } */

    /* Mobile Scroll */
    @media (max-width: 768px) {
        .mobile-scroll {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding-bottom: 20px;
            scrollbar-width: none;
        }
        .mobile-scroll::-webkit-scrollbar { display: none; }
        .project-item { flex: 0 0 85%; }
        .vault-img img { height: 350px; }
        .modal-glass-content { text-align: center; } 
        .modal-main-img { height: 250px; min-height: auto; }
    }



    /* Premium Team CSS - Light Theme Optimized */
    .team-card {
        position: relative;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        height: 550px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }

    .image-wrapper {
        position: relative;
        height: 380px;
        overflow: hidden;
        background: #f0f0f0;
    }

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .experience-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        background: #0074A0; /* Gold */
        color: #000;
        padding: 5px 15px;
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        z-index: 10;
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    .team-info {
        padding: 30px;
        position: absolute;
        bottom: 0;
        width: 100%;
        /* Adjusted gradient for light theme */
        background: linear-gradient(to top, #ffffff 85%, rgba(255, 255, 255, 0.9) 100%);
        transition: 0.5s ease;
        z-index: 5;
    }

    .team-info .name {
        font-weight: 800;
        font-size: 1.2rem;
        margin-bottom: 5px;
        color: #222;
    }

    .team-info .designation {
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 1px;
        color: #0074A0;
    }

    .bio-preview {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.6;
        transition: all 0.5s ease;
    }

    .full-bio {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        font-size: 0.8rem;
        color: #555;
        transition: all 0.5s ease;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        margin-top: 0;
        padding-top: 0;
    }

    /* Hover Effects */
    .team-card:hover {
        border-color: #0074A0;
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .team-card:hover .image-wrapper img {
        transform: scale(1.1);
    }

    .team-card:hover .team-info {
        height: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    .team-card:hover .full-bio {
        max-height: 200px;
        opacity: 1;
        margin-top: 15px;
        padding-top: 15px;
    }

    /* Navigation Buttons */
    .team-nav .btn-outline-gold {
        width: 50px;
        height: 50px;
        border-radius: 0;
        border: 1px solid #0074A0;
        background: transparent;
        color: #0074A0;
        transition: 0.3s;
    }

    .team-nav .btn-outline-gold:hover {
        background: #0074A0;
        color: #fff;
    }

    @media (max-width: 768px) {
        .team-card { height: 500px; }
        .image-wrapper { height: 300px; }
        .team-card:hover .team-info { height: 80%; }
    }


    /* Client Strip Light Theme */
    .client-strip {
        background: #ffffff; /* White Background */
        padding: 80px 0;
        overflow: hidden;
        border-top: 1px solid rgba(0,0,0,0.05);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .text-gold-gradient {
        background: linear-gradient(90deg, #996515, #0074A0, #996515);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
        letter-spacing: 4px;
        font-size: 0.9rem;
    }

    .divider-gold {
        width: 60px;
        height: 2px;
        background: #0074A0;
        margin: 15px auto;
        opacity: 0.6;
    }

    /* Marquee Engine */
    .marquee-container {
        display: flex;
        overflow: hidden;
        user-select: none;
        gap: 30px;
        /* Mask adjusted for light background */
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .marquee-content {
        display: flex;
        flex-shrink: 0;
        gap: 80px; 
        animation: scroll 30s linear infinite; /* Slightly slower for elegance */
        align-items: center;
    }

    .marquee-container:hover .marquee-content {
        animation-play-state: paused;
    }

    .logo-box {
        width: 150px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
    }


    .logo-box img {
        max-width: 100%;
        max-height: 45px;
        object-fit: contain;
        transition: 0.4s ease;
    }

    .logo-box:hover img {
        transform: scale(1.1);
    }

    @keyframes scroll {
        from { transform: translateX(0); }
        to { transform: translateX(calc(-100% / 2)); }
    }

    @media (max-width: 768px) {
        .marquee-content { gap: 50px; }
        .logo-box { width: 110px; }
        .client-strip { padding: 60px 0; }
        .logo-box { filter: grayscale(0%); opacity: 0.8; } /* Keep color on mobile */
    }


    /* Footer Styling - Optimized for Light Theme Balance */
    .main-footer {
        background: #0d0d0d; /* Slightly softer black */
        border-top: 4px solid #0074A0; /* Stronger gold line for separation */
        position: relative;
        color: #fff;
    }

    .footer-top {
        padding: 90px 0 50px;
    }

    .brand-m {
        font-size: 1.8rem;
        font-weight: 900;
        letter-spacing: 2px;
        background: linear-gradient(135deg, #0074A0, #fdf5e6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footer-title {
        color: #ffffff;
        font-weight: 800;
        font-size: 1.05rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 35px;
        position: relative;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 35px;
        height: 3px;
        background: #0074A0;
    }

    .footer-desc {
        color: #999; /* Readable gray on dark */
        font-size: 0.95rem;
        line-height: 1.8;
    }

    /* Links Animation */
    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: #bbb;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 400;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-block;
    }

    .footer-links a:hover {
        color: #0074A0;
        transform: translateX(10px);
    }

    /* Social Icons Glow */
    .social-links a {
        width: 45px;
        height: 45px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 175, 55, 0.2);
        color: #fff;
        margin-right: 12px;
        font-size: 1.1rem;
        transition: 0.4s;
        border-radius: 4px; /* Slightly squared for industrial feel */
    }

    .social-links a:hover {
        background: #0074A0;
        color: #000;
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        transform: translateY(-5px);
    }

    /* Contact Info Box */
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
        color: #bbb;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .contact-item i {
        font-size: 1.2rem;
        color: #0074A0;
        margin-top: 3px;
    }

    /* Footer Bottom Strip */
    .footer-bottom {
        background: #000;
        padding: 30px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.85rem;
        color: #777;
    }

    .bottom-links a {
        color: #777;
        text-decoration: none;
        margin: 0 10px;
        transition: 0.3s;
    }

    .bottom-links a:hover {
        color: #0074A0;
    }

    .text-gold {
        color: #0074A0 !important;
    }

    @media (max-width: 768px) {
        .footer-top { padding: 60px 0 30px; }
        .footer-title { margin-top: 20px; }
        .footer-bottom { text-align: center; }
        .bottom-links { margin-top: 20px; }
    }


    /* TEAM PAGE     */
           .team-hero {
            padding: 160px 0 100px;
            background: #f9fbfd;
            position: relative;
            overflow: hidden;
        }

        /* Breadcrumb Style */
        .breadcrumb-item a {
            color: #888;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .breadcrumb-item a:hover {
            color: #D4AF37;
        }

        .breadcrumb-item.active {
            color: #D4AF37;
            font-weight: 600;
        }

        /* Typography */
        .fw-900 {
            font-weight: 900;
        }

        .text-gradient2 {
            background: linear-gradient(135deg, #996515 0%, #D4AF37 50%, #996515 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-stats-mini .stat-item h4 {
            color: #222;
            font-family: 'Montserrat', sans-serif;
        }

        /* Visual Elements */
        .rounded-custom {
            border-radius: 40px 10px 40px 10px;
        }

        .team-hero-visual {
            position: relative;
            padding: 20px;
        }

        .team-hero-visual::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80%;
            height: 80%;
            border: 10px solid rgba(212, 175, 55, 0.1);
            border-radius: 40px 10px 40px 10px;
            z-index: -1;
            transform: translate(20px, -20px);
        }

        .floating-card {
            position: absolute;
            bottom: 40px;
            left: -30px;
            background: #fff;
            padding: 15px 25px;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Background Decor */
        .bg-shape {
            position: absolute;
            top: -10%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            z-index: 0;
        }

        @media (max-width: 991px) {
            .team-hero {
                padding: 120px 0 60px;
                /* text-align: center; */
            }

            .hero-stats-mini {
                justify-content: center;
            }

            .breadcrumb {
                justify-content: center;
            }
        }





 /* Clean & Unique Visionary Styling */
.visionary-perspective .header-line {
    width: 40px;
    height: 2px;
    background: #0074A0;
    margin: 8px auto 0;
}

/* Image Perspective Logic */
.image-perspective-wrapper {
    position: relative;
    padding: 40px;
    z-index: 1;
}

.perspective-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: #f8f9fa;
    border: 1px solid rgba(0, 116, 160, 0.1);
    z-index: -1;
    transition: 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}
.perspective-bg-shape.secondary { left: 0; right: auto; }

.perspective-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.visionary-block:hover .perspective-img {
    filter: grayscale(0%);
    transform: translate(-20px, -20px);
}

.visionary-block:hover .perspective-bg-shape {
    transform: scale(1.05);
    background: rgba(0, 116, 160, 0.03);
}

/* Content Box */
.architectural-content-box {
    padding: 0 10px;
}
.architectural-content-box.left { border-right: 1px solid rgba(0,0,0,0.05); }
.architectural-content-box.right { border-left: 1px solid rgba(0,0,0,0.05); }

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

/* Modern Pills */
.badge-outline {
    border: 1px solid #ddd;
    color: #777;
    padding: 6px 14px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-right: 8px;
    transition: 0.3s;
    margin-bottom: 5px
}
.visionary-block:hover .badge-outline {
    border-color: #0074A0;
    color: #0074A0;
}

/* 3D Badge */
.experience-badge-3d {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #0074A0;
    color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 10px 10px 30px rgba(0, 116, 160, 0.3);
}
.experience-badge-3d.left { left: auto; right: 20px; background: #212529; }

.big-num { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.small-txt { font-size: 0.6rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }

/* Legacy Tags */
.company-tag { font-weight: 800; font-size: 0.8rem; color: #212529; opacity: 0.6; }
.tag-dot { width: 5px; height: 5px; background: #0074A0; border-radius: 50%; }

@media (max-width: 991px) {
    .perspective-img { height: 400px; }
    .architectural-content-box { border: none !important; padding: 20px 0 !important; }
    .visionary-block:hover .perspective-img { transform: none; }
}





        .member-card-v2 {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 12px;
            height: 100%;
            transition: all 0.4s ease;
            padding: 25px;
            display: flex;
            flex-direction: column;
        }

        .member-card-v2:hover {
            border-color: #D4AF37;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-5px);
        }

        .member-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .member-img-box {
            position: relative;
            width: 100px;
            height: 100px;
            flex-shrink: 0;
        }

        .member-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid #f0f0f0;
        }

        .exp-badge {
            position: absolute;
            bottom: -8px;
            right: -8px;
            background: #D4AF37;
            color: #000;
            font-size: 0.65rem;
            font-weight: 800;
            padding: 4px 8px;
            border-radius: 4px;
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
        }

        .m-name {
            font-size: 1.15rem;
            font-weight: 800;
            color: #222;
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .m-role {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .member-body {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .m-bio {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
            text-align: justify;
        }

        .m-legacy {
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px dashed rgba(212, 175, 55, 0.3);
        }

        .m-legacy small {
            color: #996515;
            font-weight: 700;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Gradient Text for Headings */
        .text-gradient2 {
            background: linear-gradient(135deg, #996515 0%, #D4AF37 50%, #996515 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @media (max-width: 576px) {
            .member-header {
                flex-direction: column;
                text-align: center;
            }

            .member-img-box {
                width: 120px;
                height: 120px;
                margin-bottom: 10px;
            }
        }
   