
        /* 1. Global Background and Typography */
        body {
            background-color: var(--main-bg);
            color: var(--primary-text);
            font-family: 'Poppins', sans-serif;
            padding-top: 60px;
            /* perspective: 1000px;  */
        }

        /* 2. Section Styling */
        .intro-section, .map-section {
            background-color: var(--section-bg);
            padding: 3.5rem 1rem;
            text-align: center;
            /* FIX: Removed border-bottom to remove the white line below the map */
        }
        
        .intro-section h2 {
            color: var(--primary-blue);
            font-weight: 900; /* Extra bold text */
        }
        
        /* 3. Interactive Card Base Style (3D Pop-out) */
        .interactive-card {
            background-color: white;
            border: 1px solid #e0e0e0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Initial Shadow */
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            border-radius: 1.5rem;
            transform-style: preserve-3d; /* Enable 3D transforms */
            animation: breathing-shadow 3s ease-in-out infinite alternate; /* Subtle constant animation */
        }
        
        /* Breathing Shadow Animation */
        @keyframes breathing-shadow {
            0% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); }
            100% { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); }
        }

        /* Enhanced 3D Hover Animation (Aggressive Lift and Pop-out) */
        .interactive-card:hover {
            transform: translateY(-10px) rotateX(1deg) translateZ(20px); /* Aggressive Pop-out */
            box-shadow: 0 25px 60px rgba(0, 122, 255, 0.6); /* Electric Blue Glow Shadow */
            border-color: var(--primary-blue);
        }
        
        .interactive-card i {
            transition: transform 0.3s ease;
        }

        .interactive-card:hover i {
            transform: scale(1.1); /* Icon animation */
        }

        /* 4. Form Styling Adjustments */
        .form-box {
            background-color: var(--section-bg);
            border: 1px solid #e0e0e0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-group input,
        .form-group textarea {
            background-color: #fcfcfc;
            color: var(--primary-text);
            border: 1px solid #ccc;
        }

        /* Input focus state */
        .form-group input:focus,
        .form-group textarea:focus {
            background-color: #fff;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.3);
        }

        /* Floating label styling */
        .form-group label {
            color: #6b7280 !important;
        }
        
        .form-group.focused label,
        .form-group input:valid + label,
        .form-group textarea:valid + label,
        .form-group input:focus + label,
        .form-group textarea:focus + label {
            transform: translateY(-1.5rem) scale(0.85);
            color: var(--primary-blue); /* Electric Blue label when active */
        }

        /* 5. CTA Button Styling */
        .cta-glow {
            background-color: var(--primary-blue);
            transition: all 0.4s ease-in-out;
            box-shadow: 0 10px 25px rgba(0, 122, 255, 0.5);
            /* Pulsing effect on button */
            animation: pulse-button 2s infinite; 
        }
        .cta-glow:hover {
            background-color: #005ce6; 
            box-shadow: 0 15px 40px rgba(0, 122, 255, 0.8);
            transform: scale(1.05) translateY(-2px);
            animation: none; /* Stop pulse on hover */
        }

        @keyframes pulse-button {
            0% { box-shadow: 0 10px 25px rgba(0, 122, 255, 0.4); }
            50% { box-shadow: 0 10px 30px rgba(0, 122, 255, 0.6); }
            100% { box-shadow: 0 10px 25px rgba(0, 122, 255, 0.4); }
        }
        
        /* 6. Map Section Border (For the main map which appears to be styled differently than the footer map) */
        .map-section iframe {
            border: 8px solid var(--primary-blue) !important;
        }

        /* Overwrite specific Tailwind styles */
        .text-gray-700 { color: #4b5563 !important; }
        .text-white { color: white !important; } /* Reverted text-white for buttons */
        .contact-banner {
            background-color: #e2e8f0; 
            color: var(--primary-text);
        }
        
        /* --- START of Responsive Navbar Styles from product.html --- */
        
        /* Custom gradient class for the Navbar and Banner */
        .custom-gradient-bg {
            background-color: #003153;
            background-image: linear-gradient(315deg, #003153 0%, #1B1B1B 74%);
        }
        
        /* Define colors for the dark nav bar elements */
        :root {
            --primary-accent-blue: #26a0da; /* Accent color for buttons/active links in the dark nav */
            --text-dark: #333333; /* Dark text for the light body background */
            --text-light: #F0F0F0; /* Light text for the dark nav background */
        }

        /* Nav Link styling inside the DARK header */
        .nav-link-dark {
             color: var(--text-light); /* Light text for the dark background */
             transition: color 0.2s;
        }
        .nav-link-dark:hover {
            color: var(--primary-accent-blue);
        }

        /* Main Nav link styling for the active state */
        .nav-link.active {
            color: var(--text-light); /* Active text remains light/white */
            border-bottom: 2px solid var(--primary-accent-blue); /* Underline uses the bright blue accent */
            padding-bottom: 4px;
            font-weight: 500;
        }
        .logo-title {
            font-family: serif;
            font-weight: 600; /* Extra Bold */
            font-size: 1.875rem; /* 30px */
            letter-spacing: 0.1em;
            color: #aa8e68; /* Using your primary-accent-blue */
            line-height: 1.5;
        }

        .logo-subtitle {
            font-family: serif;
            font-weight: 400;
            font-size: 0.875rem;
            letter-spacing: 0.3em;
            color: #F0F0F0;
            margin-top: -2px;

        }
    
/* Ensure the parallax container starts after the fixed navbar */
.parallax {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as desired */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0; /* body padding handles the offset */
}

/* Force the video to cover the area without overlapping nav */
.parallax video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Ensure the text inside is centered and visible */
.ptext {
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
}


/* Mobile Specific Adjustments */
@media (max-width: 1024px) {
    .parallax {
        /* Mobile header is typically taller, adjust margin accordingly */
        margin-top: 100px; 
        height: 40vh;
    }
    
    .ptext h1 {
        font-size: 2.5rem !important;
    }
}

.md-form-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
}

.md-input-group {
    position: relative;
    margin-top: 25px;
}

.md-input-group input,
.md-input-group textarea {
    width: 100%;
    padding: 12px 0 8px;
    border: none;
    border-bottom: 2px solid #d1d5db;
    background: transparent;
    font-size: 16px;
    color: #1f2937;
    transition: 0.3s ease;
}

.md-input-group textarea {
    resize: none;
}

.md-input-group label {
    position: absolute;
    left: 0;
    top: 12px;
    color: #6b7280;
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s ease;
}

.md-input-group input:focus,
.md-input-group textarea:focus {
    border-bottom-color: var(--primary-blue);
    outline: none;
}

.md-input-group input:focus + label,
.md-input-group textarea:focus + label,
.md-input-group input:not(:placeholder-shown) + label,
.md-input-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 13px;
    color: var(--primary-blue);
}

.md-input-group .md-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.md-input-group input:focus ~ .md-line,
.md-input-group textarea:focus ~ .md-line {
    width: 100%;
}

.md-submit-btn {
    width: 100%;
    padding: 15px;
    background: #4e84d4;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.md-submit-btn:hover {
    background: #005ce6;
    transform: translateY(-2px);
}

 
        /* ================================================= */
        /* --- START MODIFIED FOOTER STYLES (4-Column) --- */
        /* ================================================= */

        .footer_cont{
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #1a1a1a;
            color: #f0f0f0;
        }
        .container {
            /* MODIFIED: 4-column grid layout */
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr; /* Logo/Info | Quick Links | Locations | Contact */
            justify-content: space-between;
            align-items: flex-start;
            padding: 50px 20px; /* INCREASED vertical padding for more height */
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* NEW: Styles for the link columns */
        .footer-column h3 {
            font-size: 1.2em;
            font-weight: 700;
            color: var(--primary-accent-blue);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #f0f0f0;
            text-decoration: none;
            font-size: 0.95em;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-column ul li a:hover {
            color: #314755;
        }

        .footer-column ul li a i {
            font-size: 0.8em;
            margin-right: 10px;
            color: var(--primary-accent-blue);
        }

        /* Styling for the first column (Logo/About) */
        .footer-logo-column {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        /* Re-styled contact items */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            color: #f0f0f0;
            font-size: 1em;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .contact-item i {
            color: #26a0da; /* Red icon color */
            font-size: 1.2em;
            margin-top: 3px; /* Adjust icon alignment */
            flex-shrink: 0;
        }

        .contact-item a {
            color: #f0f0f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #314755;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
        }

        .contact-text .phone {
            font-size: 1.1em;
            font-weight: 500;
        }


        .footer {
            /* MODIFIED: Ensure copyright text is visually centered when space allows */
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: #111;
            border-top: 1px solid #333;
            margin-top: 50px;
        }

        .social-icons a {
            color: #f0f0f0;
            font-size: 1.2em;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color:  #314755;
        }

        .copyright {
            /* MODIFIED: Flex-grow for center alignment */
            font-size: 0.9em;
            color: #aaa;
            flex-grow: 1; 
            text-align: center;
        }

        .scroll-to-top {
            background-color: #26a0da;
            color: #fff;
            padding: 10px 12px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 1.1em;
            transition: background-color 0.3s ease;
            margin-right: 30px;
        }


        .scroll-to-top:hover {
            background-color:  #314755;
        }

        /* ================================================= */
        /* --- MOBILE RESPONSIVE STYLES (4-Column Footer)--- */
        /* ================================================= */

        @media (max-width: 768px) {
            
            /* ... (Existing mobile styles kept) ... */

            /* --- Footer Section --- */
            .footer_cont .container {
                /* Single column for mobile */
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 30px 20px;
            }

            /* NEW: Mobile Column Ordering for 4 columns */
            .footer-logo-column { order: 1; }
            .footer-column:nth-child(2) { order: 2; } /* Quick Links */
            .footer-column:nth-child(3) { order: 4; } /* Our Locations */
            .footer-column:nth-child(4) { order: 3; } /* NEW: Get in Touch (Phone/Email Info) */

            .footer {
                flex-direction: column;
                padding: 20px;
                text-align: center;
                gap: 15px;
                margin-top: 30px;
                position: relative; 
            }

            .social-icons {
                order: 2;
            }

            .copyright {
                order: 1; /* Changed order */
                flex-grow: 0;
                width: 100%;
            }

            .scroll-to-top {
                order: 3; /* Changed order */
                /* position: fixed;  */
                bottom: 20px;
                right: 20px;
                z-index: 100;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
            }
             .nav-link.active{
            display: inline;
           }
        }
        

         /* Chatbot Styles */
        .chatbot-widget {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 380px;
            max-width: 90vw;
            height: 500px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
            display: none;
            flex-direction: column;
            z-index: 1000;
            animation: slideUp 0.3s ease-out;
        }

        .chatbot-widget.active {
            display: flex;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .chatbot-header {
            background: linear-gradient(to right, #26a0da, #314755);
            color: white;
            padding: 15px 20px;
            border-radius: 15px 15px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .chatbot-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .chatbot-close-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.2rem;
            padding: 0;
            transition: transform 0.2s;
        }

        .chatbot-close-btn:hover {
            transform: scale(1.2);
        }

        .chatbot-body {
            flex: 1;
            overflow-y: auto;
            padding: 15px 20px;
            background: #f9fafb;
        }

        .chat-messages {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .message {
            display: flex;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bot-message {
            justify-content: flex-start;
        }

        .bot-message p {
            background: #e9ecef;
            color: #333;
            padding: 10px 15px;
            border-radius: 12px;
            border-radius: 12px 12px 12px 0;
            max-width: 80%;
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        .user-message {
            justify-content: flex-end;
        }

        .user-message p {
            background: linear-gradient(to right, #26a0da, #314755);
            color: white;
            padding: 10px 15px;
            border-radius: 12px;
            border-radius: 12px 12px 0 12px;
            max-width: 80%;
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        .chatbot-footer {
            display: flex;
            gap: 10px;
            padding: 15px;
            border-top: 1px solid #e0e0e0;
            background: white;
            border-radius: 0 0 15px 15px;
        }

        #chat-input {
            flex: 1;
            border: 1px solid #ddd;
            border-radius: 25px;
            padding: 10px 15px;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.2s;
        }

        #chat-input:focus {
            border-color: #26a0da;
            box-shadow: 0 0 0 3px rgba(38, 160, 218, 0.1);
        }

        .chat-send-btn {
            background: linear-gradient(to right, #26a0da, #314755);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .chat-send-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(38, 160, 218, 0.4);
        }

        .chatbot-toggle-btn {
            position: fixed;
            bottom: 20px;
            right: 5px;
            width: 55px;
            height: 55px;
            background: linear-gradient(to right, #26a0da, #314755);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(38, 160, 218, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
            z-index: 999;
            animation: pulse 2s infinite;
        }

        .chatbot-toggle-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(38, 160, 218, 0.6);
            animation: none;
        }

        .chatbot-toggle-btn.hidden {
            display: none;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(38, 160, 218, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(38, 160, 218, 0.7);
            }
        }

        .whatsapp-toggle-btn {
            position: fixed;
            bottom: 85px;
            right: 5px;
            width: 55px;
            height: 55px;
            background: linear-gradient(to right, #25d366, #128c7e);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
            z-index: 999;
            animation: pulse-green 2s infinite;
            text-decoration: none;
        }

        .whatsapp-toggle-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
            animation: none;
        }

        @keyframes pulse-green {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            .chatbot-widget {
                width: calc(100vw - 20px);
                height: 400px;
                bottom: 70px;
            }
        }

 
   