:root {
            --primary-color: #D97706; /* Construction/Transport Orange */
            --primary-hover: #B45309; /* Deep Orange */
            --dark-color: #111827;    /* Modern Off-Black/Deep Slate */
            --light-bg: #F9FAFB;      /* Soft Light Gray Background */
            --accent-yellow: #FBBF24; /* Golden Yellow for stars/ratings */
            --border-color: #E5E7EB;   /* Delicate borders */
        }

        html, body {
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #374151; /* Charcoal for excellent text legibility */
            background-color: #ffffff;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: var(--dark-color);
        }

        a {
            text-decoration: none;
        }

        /* Nav & Header Customizations */
        .navbar {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .nav-link {
            font-weight: 600;
            color: #4B5563 !important;
            transition: color 0.2s ease;
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.2s ease;
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        /* Button Custom Styles */
        .btn-orange {
            background-color: var(--primary-color);
            color: #ffffff;
            font-weight: 700;
            border-radius: 4px;
            padding: 10px 24px;
            border: none;
            transition: all 0.2s ease;
            box-shadow: 0 4px 10px rgba(217, 119, 6, 0.25);
        }

        .btn-orange:hover {
            background-color: var(--primary-hover);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 6px 14px rgba(217, 119, 6, 0.35);
        }

        .btn-white-call {
            background-color: #ffffff;
            color: var(--dark-color);
            font-weight: 700;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 10px 24px;
            transition: all 0.2s ease;
        }

        .btn-white-call:hover {
            background-color: #F3F4F6;
            color: var(--primary-color);
            transform: translateY(-1px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.85)), url('https://lh3.googleusercontent.com/aida-public/AB6AXuDQjFtiyZP1-k3vDktWN-fm9T5W-5KB-ZI6TZTHvDAeba84F_QCGF8he2PcKDUEVs5FsOGHzSv0r914bwnTnvcYMR5osfJO0xiWmuNKSLoRNjUynTbM4kK4e8pBv37xAkzEjtRb_D5LG37UXleFXj5GJdc12Ti79WbsKYIhVOtUGUCArzVU5RCiCAS3IehVPM0s1cei0mBisknOycgOLL5OtxDZ2cQ76gGU0tifLK4GQNjB0xN1LxQUbdpVpWihZoWzZbbXUvs_xlvs');
            background-size: cover;
            background-position: center;
            min-height: 640px;
            display: flex;
            align-items: center;
            color: #ffffff;
            overflow: hidden;
            padding: 80px 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 30%;
            background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.08));
            pointer-events: none;
        }

        .stat-badge {
            background: rgba(17, 24, 39, 0.6);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: border-color 0.3s ease;
        }

        .stat-badge:hover {
            border-color: rgba(217, 119, 6, 0.4);
        }

        .check-pill {
            background: rgba(217, 119, 6, 0.15);
            color: #ffffff;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
            border: 1px solid rgba(217, 119, 6, 0.4);
        }

        /* Divider & Badges styling */
        .section-bar {
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
            margin: 16px auto 0;
            border-radius: 2px;
        }

        /* Strength Cards style */
        .strength-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
        }

        .strength-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border-color: rgba(217, 119, 6, 0.2);
        }

        /* Service Cards style */
        .service-card {
            background: #ffffff;
            border: 1px solid rgba(229, 231, 235, 0.8);
            border-radius: 12px;
            padding: 35px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: var(--primary-color);
            box-shadow: 0 12px 24px rgba(217, 119, 6, 0.08);
        }

        /* Dark Project Section styling */
        .project-section {
            background-color: #111827;
            color: #F9FAFB;
        }

        .project-card {
            background-color: rgba(31, 41, 55, 0.4);
            border: 1px solid rgba(75, 85, 99, 0.4);
            border-radius: 16px;
            padding: 35px;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .project-card:hover {
            border-color: rgba(217, 119, 6, 0.4);
            transform: translateY(-3px);
        }

        .achievement-pill {
            background-color: rgba(31, 41, 55, 0.3);
            border: 1px solid rgba(75, 85, 99, 0.3);
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .achievement-pill:hover {
            border-color: var(--primary-color);
            background-color: rgba(31, 41, 55, 0.5);
        }

        /* Mission / Vision Cards style */
        .mv-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 0px;
            height: 100%;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
            transition: box-shadow 0.3s ease;
            overflow: hidden;
        }

        .mv-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
        }

        .icon-circle {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            background-color: rgba(217, 119, 6, 0.1);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        /* Testimonial Cards style */
        .testimonial-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 35px;
            transition: box-shadow 0.3s ease;
            height: 100%;
        }

        .testimonial-card:hover {
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
        }

        /* Contact Details & Form Box */
        .contact-info-box {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.01);
        }

        .form-container {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            border-top: 10px solid var(--primary-color);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        /* Form Inputs */
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(217, 119, 6, 0.15);
        }

        /* Footer styling */
        footer {
            background-color: #111827;
            color: #E5E7EB;
            padding-top: 80px;
            padding-bottom: 40px;
        }

        .footer-heading {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 24px;
            display: inline-block;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 6px;
        }

        .footer-link {
            color: #9CA3AF;
            text-decoration: none;
            transition: color 0.2s ease, padding-left 0.2s ease;
            display: inline-block;
        }

        .footer-link:hover {
            color: var(--primary-color);
            padding-left: 4px;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            transition: background-color 0.2s, color 0.2s;
        }

        .social-btn:hover {
            background-color: var(--primary-color);
            color: #ffffff;
        }

        /* Scroll Reveal Animations styling */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform, opacity;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform, opacity;
        }
        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform, opacity;
        }
        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-card div svg {
            width: 50px;
            height: 50px;
        }

        #testimonials {
           padding-top: 80px;
           padding-bottom: 80px; 
        }


        /* Hero Background Image Slider setup */
        .hero {
            position: relative;
            min-height: 640px;
            display: flex;
            align-items: center;
            color: #ffffff;
            overflow: hidden;
            padding: 80px 0;
            z-index: 1;
            background: #111827 !important; /* Ensure a clean dark base during transitions */
        }
        .hero-slider-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 2s ease-in-out, transform 8s ease-out;
            transform: scale(1.08); /* Cinematic slow-zoom effect */
            will-change: opacity, transform;
        }
        .hero-slide.active {
            opacity: 1;
            transform: scale(1);
        }
        .hero-overlay-dark {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(17, 24, 39, 0.74), rgba(17, 24, 39, 0.81));
            z-index: 0;
        }


        .text-gold{
    color:#FBBF24;
}

.glass-card{
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-space {
    gap: 100px;
}

.text-gray-800 {
    color: #1F2937;
}

.strength-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.services-items .service-card > div .icon {
    width: 70px;
    height: 70px;
        display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
} 

.services-items .service-card > div .icon svg {
    width: 100%;
    height: 100%;
}

p, li {
    font-size: 18px;
}

.achievement-pill svg {
    width: 48px;
    height: 48px;
    color: rgba(255,193,7);
}

.gradient-bg {
    background: linear-gradient(
        to bottom right,
        #FEF3C7,
        #ffffff
    );
}

.fs-6 {
    font-size: clamp(0.75rem, 1vw + 0.5rem, 1rem) !important;
}


@media (min-width: 992px) {
     .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 15px;
                padding: 5px !important;
    }

    li.nav-item {
    font-size: 15px !important;
}
}


        /* Creative & Modern Mobile Navigation Drawer Drawer styling */
    @media (max-width: 1366.98px) {
            p, li {
                font-size: 14px;
            }
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: rgba(17, 24, 39, 0.98); /* Luxury bold depth background */
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
                padding: 90px 30px 40px;
                display: flex !important;
                flex-direction: column;
                justify-content: flex-start;
                gap: 30px;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
                z-index: 1045;
                overflow-y: auto;
            }
            .navbar-collapse.show {
                right: 0;

            }
        
            .navbar-nav {
                align-items: flex-start !important;
                text-align: left !important;
                gap: 15px !important;
                width: 100%;
            }
            .nav-link {
                color: rgba(255, 255, 255, 0.85) !important;
                font-size: 1.15rem;
                font-weight: 600;
                width: 100%;
                padding: 12px 0 !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                transition: all 0.3s ease;
            }
            .nav-link:hover, .nav-link.active {
                color: var(--primary-color) !important;
                padding-left: 8px;
            }
            
            /* Custom Hamburger Toggler Animation styling */
            .navbar-toggler {
                z-index: 1050;
                position: relative;
                padding: 8px;
                transition: transform 0.2s ease;
            }
            .navbar-toggler:active {
                transform: scale(0.9);
            }
            .custom-toggler-icon {
                display: block;
                position: relative;
                width: 24px;
                height: 18px;
            }
            .custom-toggler-icon span {
                display: block;
                position: absolute;
                height: 2.5px;
                width: 100%;
                background: var(--dark-color);
                border-radius: 4px;
                opacity: 1;
                left: 0;
                transform: rotate(0deg);
                transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            }
            .custom-toggler-icon span:nth-child(1) { top: 0px; }
            .custom-toggler-icon span:nth-child(2) { top: 7.75px; }
            .custom-toggler-icon span:nth-child(3) { top: 15.5px; }
            
            /* Morph to "X" when drawer is active */
            .navbar-toggler[aria-expanded="true"] .custom-toggler-icon span {
                background: #ffffff !important;
            }
            .navbar-toggler[aria-expanded="true"] .custom-toggler-icon span:nth-child(1) {
                top: 7.75px;
                transform: rotate(135deg);
            }
            .navbar-toggler[aria-expanded="true"] .custom-toggler-icon span:nth-child(2) {
                opacity: 0;
                left: -40px;
            }
            .navbar-toggler[aria-expanded="true"] .custom-toggler-icon span:nth-child(3) {
                top: 7.75px;
                transform: rotate(-135deg);
            }
            
            /* Class for backdrop glass overlay screen */
            .mobile-nav-backdrop {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: rgba(17, 24, 39, 0.4);
                backdrop-filter: blur(4px);
                -webkit-backdrop-filter: blur(4px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 1;
            }
            .mobile-nav-backdrop.show {
                /*opacity: 1;*/
                visibility: visible;
            }
            #navbarSupportedContent .navbar-nav .nav-item {
                width: 100%;
            }

            .navbar-toggler:focus {
                outline: none;
                box-shadow: none !important;
            }
            .collapse-mobile-footer {
                width: 100%;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                padding-top: 25px;
                margin-top: 20px;
            }
            .reveal-left {
                transform: translateY(30px);
            }
            .reveal-left.active {
                transform: translateY(0);
            }
            .reveal-right {
                transform: translateY(30px);
            }
            .reveal-right.active {
                transform: translateY(0);
            }


        }

