        /* Base Styles & Theme Colors */
        :root {
            --primary: #f2b705;
            /* Construction Yellow */
            --dark: #22252a;
            /* Dark Charcoal */
            --light: #f8f9fa;
            /* Off-white */
            --text: #333333;
            --white: #ffffff;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Outfit', 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: var(--text);
            background-color: var(--white);
            line-height: 1.6;
        }

        /* Navigation */
        header {
            background-color: var(--dark);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            color: var(--primary);
            font-weight: bold;
            font-size: 24px;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            margin-left: 20px;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(34, 37, 42, 0.85), rgba(34, 37, 42, 0.85)), url('https://images.pexels.com/photos/1216589/pexels-photo-1216589.jpeg?auto=compress&cs=tinysrgb&w=1920');
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            color: var(--white);
            padding: 100px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--white);
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 30px auto;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            margin: 10px;
            transition: 0.3s;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--dark);
        }

        .btn-primary:hover {
            background-color: var(--white);
        }

        .btn-secondary {
            background-color: #25d366;
            /* WhatsApp Green */
            color: var(--white);
        }

        /* Section Container Layouts */
        .section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-bg {
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 50px;
        }

        /* Fleet Cards */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 150fr));
            gap: 30px;
        }

        .card {
            background-color: var(--white);
            border-top: 5px solid var(--primary);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .card h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }

        .card ul {
            list-style: none;
        }

        .card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .card ul li::before {
            content: "✓";
            color: var(--primary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Contact & Forms */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .submit-btn {
            background-color: var(--dark);
            color: var(--primary);
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 5px;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: var(--primary);
            color: var(--dark);
        }

        footer {
            background-color: var(--dark);
            color: var(--white);
            text-align: center;
            padding: 20px;
            margin-top: 50px;
        }

        /* Responsive Fixes */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            header {
                flex-direction: column;
                text-align: center;
            }

            .nav-links {
                margin-top: 15px;
            }

            .nav-links a {
                margin: 0 10px;
            }
        }

        /* Stats Banner Styles (15 Years Expertise) */
        .stats-banner {
            background-color: var(--dark);
            border-bottom: 4px solid var(--primary);
            padding: 35px 20px;
            margin-top: -30px; /* Overlaps slightly with hero for dynamic feel */
            position: relative;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            max-width: 1160px;
            margin-left: auto;
            margin-right: auto;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            text-align: center;
        }

        .stat-item {
            padding: 10px;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-num {
            font-size: 52px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
            line-height: 1;
            font-family: 'Outfit', sans-serif;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .stat-label {
            font-size: 13px;
            color: var(--light);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Project Blocks & Galleries */
        .projects-container {
            display: flex;
            flex-direction: column;
            gap: 45px;
            margin-top: 40px;
        }

        .project-block {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
            padding: 30px;
            border-left: 6px solid var(--primary);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-block:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        }

        .project-info {
            margin-bottom: 25px;
        }

        .project-tag {
            display: inline-block;
            background-color: rgba(242, 183, 5, 0.12);
            color: #cc9700;
            padding: 5px 12px;
            font-size: 11px;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            margin-bottom: 12px;
            letter-spacing: 0.8px;
        }

        .project-info h3 {
            font-size: 24px;
            color: var(--dark);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .project-info p {
            color: #555;
            font-size: 15px;
            line-height: 1.6;
        }

        .project-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            position: relative;
            height: 150px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: #eee;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        /* Overlay item for "More Photos" */
        .overlay-container {
            position: relative;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(34, 37, 42, 0.75);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary);
            font-weight: 700;
            font-size: 16px;
            transition: background-color 0.3s ease;
            text-align: center;
            padding: 10px;
            z-index: 2;
        }

        .overlay-container:hover .gallery-overlay {
            background-color: rgba(34, 37, 42, 0.6);
        }

        /* Fullscreen Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(22, 24, 27, 0.95);
            backdrop-filter: blur(8px);
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-close {
            position: absolute;
            top: 25px;
            right: 35px;
            color: var(--white);
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.2s ease;
            z-index: 2100;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .lightbox-close:hover {
            color: var(--primary);
            transform: scale(1.1);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .lightbox-content {
            position: relative;
            max-width: 85%;
            max-height: 80%;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from { transform: scale(0.95); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 75vh;
            border-radius: 6px;
            object-fit: contain;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            border: 3px solid rgba(255, 255, 255, 0.1);
        }

        #lightbox-caption {
            color: var(--white);
            margin-top: 15px;
            font-size: 15px;
            text-align: center;
            font-weight: 500;
            background: rgba(0, 0, 0, 0.6);
            padding: 8px 18px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 90%;
            letter-spacing: 0.5px;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            border: none;
            padding: 20px 15px;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 6px;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
            z-index: 2050;
        }

        .lightbox-nav:hover {
            background-color: var(--primary);
            color: var(--dark);
            transform: translateY(-50%) scale(1.05);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        @media (max-width: 768px) {
            .stats-banner {
                margin-top: 0;
                border-radius: 0;
                padding: 25px 15px;
            }
            .stats-container {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 15px;
            }
            .stat-num {
                font-size: 38px;
            }
            .stat-label {
                font-size: 11px;
            }
            .lightbox-nav {
                padding: 12px 10px;
                font-size: 18px;
            }
            .lightbox-prev {
                left: 10px;
            }
            .lightbox-next {
                right: 10px;
            }
            .lightbox-close {
                top: 15px;
                right: 15px;
                font-size: 30px;
                width: 38px;
                height: 38px;
            }
            .project-gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            }
            .gallery-item {
                height: 100px;
            }
        }
