        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            overflow-x: hidden;
            background-color: #f8f8f8;
            padding-top: 76px; /* Match header height */
            --tw-prose-links: #1B355B;
            --tw-prose-bold: #1B355B;
            --tw-prose-counters: #1B355B;
            --tw-prose-bullets: #1B355B;
            --tw-prose-hr: #1B355B;
            --tw-prose-quotes: #1B355B;
            --tw-prose-quote-borders: #1B355B;
            --tw-prose-captions: #1B355B;
            --tw-prose-code: #1B355B;
            --tw-prose-pre-code: #1B355B;
            --tw-prose-pre-bg: #1B355B;
            --tw-prose-th-borders: #1B355B;
            --tw-prose-td-borders: #1B355B;
        }
        
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 100;
            top: 0%;
    }
    
    header.visible {
        transform: translateY(0);
    }
        
        .nav-links {
            transition: all 0.3s ease;
        }
        
        .nav-links:hover {
            color: #8B5A2B;
        }
        
        .hero-container {
            perspective: 1000px;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .hero-slider {
            width: 400%;
            height: 100%;
            display: flex;
            transition: transform 1s ease-in-out;
            transform-style: preserve-3d;
        }
        
        .hero-slide {
            width: 25%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            transform-style: preserve-3d;
            transition: transform 0.5s;
        }
        
        .hero-content {
            width: 50%;
            padding: 0 5%;
            z-index: 1;
            transform: translateZ(20px);
        }
        
        .hero-image {
            width: 50%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translateZ(30px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            border-radius: 5px;
        }
        
        .slide-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1B355B 0%, #1B355B 100%);
            z-index: -1;
            transform: translateZ(-10px);
            border-radius: 10px;
        }
        
        .nav-buttons {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }
        
        .nav-btn {
            background: rgba(255,255,255,0.7);
            color: #1B355B;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-btn:hover {
            background: white;
            transform: scale(1.1);
        }
        
        .dots-container {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate-fade {
            animation: fadeIn 1s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.3s; }
        .delay-2 { animation-delay: 0.6s; }
        .delay-3 { animation-delay: 0.9s; }
        
        /* 3D effect on hover for images */
        .image-3d {
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        
        .image-3d:hover {
            transform: rotateY(10deg) rotateX(5deg) scale(1.02);
            box-shadow: 0 30px 50px #0000004d;
        }
        
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #1B355B;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .service-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #000000b3;
            z-index: 1000;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .service-modal {
            background: white;
            padding: 40px;
            border-radius: 8px;
            max-width: 800px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
        }

        .service-modal-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 20px;
        }

        .service-modal-images img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
        }

        .close-modal-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        /* Custom CSS for logo size and position */
        .logo-img {
            max-height: 80px;
            width: 100px;
            left: 0;
            bottom: 0;
            object-fit: contain;
            margin-bottom: -7px;
        }
        /* Custom CSS for company name */
        .company-name {
            font-size: 2.3rem; /* Adjust size */
            font-weight: 700;
            color: #1B355B;
            margin: 0;
            padding: 0;
        }
        /* Custom CSS for navigation buttons */
        .nav-button {
            font-size: 1.5rem; /* Adjust size */
            color: #1B355B;
            padding: 0.25rem 0.5rem;
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            transform: rotateX(0); /* Initial state */
            margin: 10px;
        }
        
        .nav-button:hover {
            color: #6e4727; /* Change color on hover */
            transform: scale(1.1) translateY(-5px); /* Lift and enlarge slightly */
            box-shadow: 0 8px 16px rgba(186, 19, 19, 0.2);
        }

        .nav-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #1B355B;
            z-index: -1;
            transform: translateZ(-2px);
            transition: transform 0.3s ease, opacity 0.3s ease;
            opacity: 0;
        }

        .nav-button:hover::before {
            transform: translateZ(0);
            opacity: 0.1;
        }

        /* Custom CSS to make nav touch right and bottom edges */
        nav {
            right: 0;
            bottom: 0;
            position: absolute;
            padding-right: 0;
            padding-bottom: 0;
            margin-right: 0;
            margin-bottom: 0;
        }
        
        /* =======================================
            Mobile-First CSS (Overriding Desktop Styles)
            ======================================= */
        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }

            header {
                padding: 10px 20px;
            }

            .logo-img {
                max-height: 50px;
                width: auto;
                margin-bottom: 0;
            }

            .company-name {
                font-size: 1.5rem;
            }
            
            nav {
                display: none; /* Hide desktop nav on mobile */
            }

            .hamburger-icon {
                display: block; /* Show hamburger icon */
                font-size: 2rem;
            }
            
            .mobile-nav-menu {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 60px;
                right: 0;
                height: calc(100vh - 60px); /* Fill remaining viewport height */
                width: 50%; /* Adjust width as needed */
                background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent background */
                box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
                z-index: 90;
                padding: 20px;
                align-items: flex-end; /* Align links to the right */
                transform: translateX(100%); /* Initial state: off-screen to the right */
                transition: all 1s ease-out; /* Smooth animation curve */
            }
            
            .mobile-nav-menu.active {
                transform: translateX(0); /* Final state: visible on screen */
            }
            
            .mobile-nav-menu a {
                width: 100%;
                text-align: right;
                padding: 15px 10px;
                border-bottom: 1px solid #eee;
                color: #1B355B;
                /* Mobile nav links will have a simpler hover effect for clarity */
                transform: none;
                box-shadow: none;
            }
            
            .mobile-nav-menu a:hover {
                background-color: #f0f0f0;
            }
            
            .mobile-nav-menu a:last-child {
                border-bottom: none;
            }
            
            .hero-container {
                height: 55vh;
            }

            .hero-slide {
                flex-direction: row;
                height: 100%;
                padding: 0rem;
            }
            
            .hero-content {
                width: 50%;
                padding: 0 2%;
                font-size: 0.8rem;
            }

            .hero-content h2 {
                font-size: 1.35rem;
                margin-left: 6%;
            }

            .hero-content p {
                font-size: 0.85rem;
                margin-left: 6%;
            }

            .hero-image {
                width: 50%;
                height: 100%;
            }

            .hero-image img {
                height: 98%;
                width: 100%;
                object-fit: cover;
            }
            
            .nav-buttons{
                display: none;
            }
            .dots-container {
                display: flex; /* Keep these visible for navigation */
                opacity: 0.3;
            }
        
            .dots-container {
                bottom: 15px; /* Adjusted position for smaller height */
            }

            .service-modal {
                padding: 20px;
                max-width: 95%;
                max-height: 90vh;
            }
            
            .service-modal-images {
                grid-template-columns: 1fr;
            }

            /* All other sections will stack vertically */
            .grid.md\:grid-cols-2,
            .grid.lg\:grid-cols-3 {
                grid-template-columns: 1fr;
            }

            .scroll-to-top {
                bottom: 20px;
                right: 20px;
            }
                /* Improvements for About Us section */
            #about .grid.md\:grid-cols-2 {
                display: flex;
                flex-direction: row !important;
                gap: 2rem;
            }

            #about .image-3d img {
                width: 100%;
                height: auto;
                border-radius: 12px;
                box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            }

            #about h3 {
                font-size: 1 rem;
                font-weight: 600;
                color: #1B355B;
                margin-bottom: 0.5rem;
                line-height: normal;
            }

            #about p {
                font-size: 0.8rem;
                color: #4B5563; /* Tailwind gray-600 */
                margin-bottom: 0.5rem;
                line-height: normal;
            }

            #about ul {
                list-style: none;
                padding-left: 0;
            }

            #about ul li {
                display: flex;
                align-items: center;
                font-size: 0.8rem;
                color: #4B5563;
                margin-bottom: 0.5rem;
                line-height: normal;
            }

            #about ul li i {
                color: #1B355B;
                margin-right: 0.75rem;
                font-size: 0.8rem;
                line-height: normal;
            }

            /* Override flex container to row on mobile */
            #about > div > div.flex.flex-col.md\:flex-row {
                flex-direction: column !important;
                gap: 1.5rem;
                align-items: center;
            }

            /* Set image container and text container widths to 50% on mobile */
            #about > div > div.flex.flex-col.md\:flex-row > div:first-child {
                width: 100% !important;
                flex-shrink: 0;
                border-radius: 12px;
                box-shadow: 10px 5px 5px rgba(46, 20, 20, 0.15);
                overflow: hidden;
            }

            #about > div > div.flex.flex-col.md\:flex-row > div:last-child {
                width: 100% !important;
            }

            /* Improvements for Our Services section */
            #services .grid.md\:grid-cols-2,
            #services .grid.lg\:grid-cols-3 {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.5rem;
            }

            #services > div > div.bg-white {
                padding: 1.5rem 1.75rem;
                border-radius: 15px;
                box-shadow: 0 6px 15px rgba(0,0,0,0.1);
                transition: box-shadow 0.3s ease;
                background-color: white;
            }

            #services > div > div.bg-white:hover {
                box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            }

            #services .text-4xl {
                font-size: 1.05rem;
                color: #1B355B;
                margin-bottom: 0rem;
                line-height: normal;
            }

            #services h3 {
                font-size: 0.92rem;
                font-weight: 600;
                margin-bottom: 0rem;
                color: #1B355B;
                line-height: normal;
            }

            #services p {
                font-size: 0.72rem;
                color: #4B5563;
                line-height: normal;
            }

            /* Improvements for Our Projects section */
            #projects .grid.md\:grid-cols-2,
            #projects .grid.lg\:grid-cols-3 {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.5rem;
            }

            #projects > div > div.bg-white {
                padding: 1.5rem 1.75rem;
                border-radius: 15px;
                box-shadow: 0 6px 15px rgba(0,0,0,0.1);
                transition: box-shadow 0.3s ease;
                background-color: white;
            }

            #projects > div > div.bg-white:hover {
                box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            }

            #projects .text-4xl {
                font-size: 1.05rem;
                color: #1B355B;
                margin-bottom: 0rem;
                line-height: normal;
            }

            #projects h3 {
                font-size: 0.92rem;
                font-weight: 600;
                margin-bottom: 0rem;
                color: #1B355B;
                line-height: normal;
            }

            #projects p {
                font-size: 0.72rem;
                color: #4B5563;
                line-height: normal;
            }
            

            /* Improvements for Why Us section */
            #why-us .grid.md\:grid-cols-2,
            #why-us .grid.lg\:grid-cols-3 {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.5rem;
            }

            #why-us > div > div.bg-white {
                padding: 1.5rem 1.75rem;
                border-radius: 15px;
                box-shadow: 0 6px 15px rgba(0,0,0,0.1);
                transition: box-shadow 0.3s ease;
                background-color: white;
            }

            #why-us > div > div.bg-white:hover {
                box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            }

            #why-us .text-4xl {
                font-size: 1.05rem;
                color: #1B355B;
                margin-bottom: 0rem;
                line-height: normal;
            }

            #why-us h3 {
                font-size: 0.92rem;
                font-weight: 600;
                margin-bottom: 0rem;
                color: #1B355B;
                line-height: normal;
            }

            #why-us p {
                font-size: 0.72rem;
                color: #4B5563;
                line-height: normal;
            }
                    /* Improvements for Contact Us section */
            #contact .grid.md\:grid-cols-2 {
                grid-template-columns: none !important;
                gap: 0.5rem;
                align-items: start;
                line-height: normal;
            }

            #contact > div > div {
                padding: 0.5rem 0.75rem;
                line-height: normal;
            }

            #contact > div > div:first-child {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                line-height: normal;
            }

            #contact form {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                line-height: normal;
            }

            #contact form input[type="text"],
            #contact form input[type="email"],
            #contact form input[type="tel"],
            #contact form textarea,
            #contact form select {
                width: 100%;
                padding: 0.375rem 0.5rem;
                border: 1px solid #ccc;
                border-radius: 4px;
                font-size: 0.7rem;
                font-family: 'Poppins', sans-serif;
                resize: vertical;
                line-height: normal;
            }

            #contact form button[type="submit"] {
                background-color: #1B355B;
                color: white;
                padding: 0.375rem 1rem;
                border: none;
                border-radius: 9999px;
                font-size: 0.72rem;
                font-weight: 600;
                cursor: pointer;
                transition: background-color 0.3s ease;
                align-self: flex-start;
                line-height: normal;
            }

            #contact form button[type="submit"]:hover {
                background-color: #6e4727;
                line-height: normal;
            }

            #contact h3 {
                font-size: 1.05rem;
                font-weight: 600;
                margin-bottom: 0.25rem;
                color: #1B355B;
                line-height: normal;
            }

            #contact .text-gray-600 {
                font-size: 0.72rem;
                line-height: normal;
            }

            #contact a {
                color: #1B355B;
                text-decoration: none;
                font-size: 0.92rem;
                font-weight: 600;
                line-height: normal;
            }

            #contact a:hover {
                text-decoration: underline;
                line-height: normal;
            }

            #contact .flex.items-start {
                gap: 0.375rem;
                line-height: normal;
                margin-bottom: 0.375rem;
            }

            #contact .text-2xl {
                color: #1B355B;
                font-size: 1.05rem;
                line-height: normal;
            }

            #contact .space-x-4 a {
                font-size: 1.55rem;
                color: #1B355B;
                line-height: normal;
                margin-right: 0.375rem;
            }

            #contact .space-x-4 a:hover {
                color: #6e4727;
                line-height: normal;
            }

            #contact .inline-block {
                background-color: #1B355B;
                color: white;
                padding: 0.375rem 0.75rem;
                border-radius: 4px;
                font-weight: 600;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 0.25rem;
                transition: background-color 0.3s ease;
                line-height: normal;
            }

            #contact .inline-block:hover {
                background-color: #6e4727;
                line-height: normal;
            }
             /* Reduce phone icon size and spacing in Contact Information */
            #contact a.text-2xl {
                font-size: 0.92rem !important;
                margin-right: 0.25rem !important;
                line-height: normal;
            }
             /* Reduce sizes for address and address icon */
            #contact .flex.items-start .text-2xl {
                font-size: 0.92rem !important;
                margin-right: 0.25rem !important;
                line-height: normal;
            }

            /* Reduce font sizes for labels and text in Contact Information */
            #contact h4 {
                font-size: 0.92rem !important;
                margin-bottom: 0.25rem !important;
                line-height: normal;
            }

            /* Reduce font sizes for form labels */
            #contact label {
                font-size: 0.85rem !important;
                margin-bottom: 0.25rem !important;
                line-height: normal;
            }

            iframe {
                width: 100%;
                height: 250px;
                border: none;
            }
        }

        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #1B355B;
            border-radius: 50%;
            animation: 0.5s linear 1s infinite alternate slide-in;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
                    /* Set image container and text container widths to 50% on mobile */
            #about > div > div.flex.flex-col.md\:flex-row > div:first-child {
                box-shadow: 10px 5px 5px rgba(46, 20, 20, 0.15);
                overflow: hidden;
            }

