
        /* Global Styles */
:root {
    --primary: #1a5a7a; /* Keep as is, or consider a slightly lighter primary if needed elsewhere */
    --secondary: #468faf;
    --accent: #89c2d9;
    --light: #e7f3f8; /* This will be used for the header background */
    --dark: #012a4a;
}
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            color: #333;
        }
        html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}
        
      .container {
    width: 95%; /* Slightly adjust container width */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px; /* Reduce side padding */
}
        
        /* Header Styles */
header {
    /* Change background to a lighter color */
    background-color: var(--light); /* Changed from var(--primary) */
    color: white; /* This will be overridden for links below */
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
            position: relative;
        }
        .logo img { /* Add this new rule */
        width: 250px;
    height: 158px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    border-radius: 5px; /* Slightly rounded corners for the shadow */
    display: block; /* Ensures the shadow wraps correctly around the image */
}
        
        .logo span {
            color: var(--accent);
            display: block;
            margin: 0;
            padding: 0;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
 nav ul li a {
    color: var(--primary); /* Changed from white to primary for contrast */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent); /* This can remain as accent is a good hover color */
}

        a:focus, button:focus {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
        }
        
        /* Hide hamburger by default */
        .hamburger {
            display: none;
        }
        
        /* Hero Section */
.hero {
    /* Reduce the opacity of the dark overlay to lighten the image */
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('header.jpg'); /* Changed 0.5 to 0.2 */
    background-size: cover;
    background-position: center;
    color: white; /* Keep text white as the image with 0.2 overlay should still provide enough contrast */
    text-align: center;
    padding: 5rem 0;
}
        
        .hero h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark);
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            background-color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Services Section */
        .services {
            padding: 4rem 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .section-title:after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 1rem auto 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .service-card.in-view {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .service-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        .service-icon {
            font-size: 2rem;
            text-align: center;
            padding: 1rem 0 0;
        }
        
        .service-content {
            padding: 1.5rem;
            text-align: center;
        }
        
        .service-content h3 {
            color: var(--primary);
            margin-top: 0;
        }
        
        /* About Section */
        .about {
            padding: 4rem 0;
            background-color: white;
        }
        

        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
             padding: 0 1rem; /* Added padding to prevent edge touching */
        }

        .about-content > * {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .about-content > *.in-view {
            opacity: 1;
            transform: translateY(0);
        }
        
        .about-img {
            width: 70%;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            display: block;
            margin: 0 auto;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 4rem 0;
            background-color: var(--light);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .testimonial-card.in-view {
            opacity: 1;
            transform: translateY(0);
        }
        
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: var(--primary);
        }
        
  /* Contact Section */
.contact {
    padding: 3rem 0;
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
}

.contact-info {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 0 1rem;
}

.contact-info h3 {
    color: var(--primary);
    margin-top: 0;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 90%;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#formResponse {
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

/* Desktop layout */
@media (min-width: 768px) {
    .contact {
        padding: 4rem ;

    }
    
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 10px;
    }
    
    .contact-info {
        margin: 0;
        padding: 2rem;
    }
}
@media (max-width: 480px) {
    .contact-container {
        padding: 5px 5px;
    }
    .contact-form input,
    .contact-form textarea {
         padding: 10px;
    }
}
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 1.5rem;
        }
        
        .footer-section h3 {
            color: var(--accent);
            margin-top: 0;
        }
        
        .service-areas {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .service-areas span {
            background: rgba(255,255,255,0.1);
            padding: 0.3rem 0.6rem;
            border-radius: 20px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .social-links a {
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }

        .social-links a:hover {
            transform: translateY(-3px);
            background: var(--accent);
        }
        
        .copyright {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Back to Top Button */
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 10px;
            background-color: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 24px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        /* Mobile-specific adjustments */
        @media (max-width: 768px) {
            .back-to-top {
                bottom: 80px;
                right: 5px;
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        /* Loading animations */
        .loading-spinner {
            border: 3px solid var(--light);
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
            margin: 10px auto;
        }

        .success-checkmark {
            width: 50px;
            height: 50px;
            margin: 0 auto;
            display: block;
        }

        .success-checkmark:before {
            content: "✓";
            font-size: 40px;
            color: var(--primary);
            display: block;
            text-align: center;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Loading screen */
        #loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /* Header adjustments */
            .header-container {
                position: relative;
                padding: 15px 0;
            }

            /* Logo adjustments */
            .logo {
                margin-right: auto;
            }

            /* Hamburger menu styles */
    /* Hamburger menu styles */
    .hamburger {
        display: block;
        cursor: pointer;
        padding: 15px;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1000;
    }

    .hamburger div {
        width: 30px;
        height: 3px;
        background-color: var(--primary); /* <--- CHANGED TO DARK BLUE */
        margin: 5px 0;
        transition: all 0.3s ease;
    }
            
        nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        /* UPDATED LINE: Use rgba with your light color's RGB values */
        background-color: rgba(231, 243, 248, 0.95); /* RGB for #e7f3f8 with 95% opacity */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 80px 0 0;
        transition: right 0.5s ease;
        z-index: 999;
        backdrop-filter: blur(10px);
    }
            
            nav ul.active {
                right: 0;
            }
            
            nav ul li {
                margin: 1.5rem 0;
            }
            
            /* Toggle animation */
            .hamburger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .hamburger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            /* Other responsive adjustments */
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2rem;
            }

            .service-icon {
                font-size: 1.5rem;
            }
        }
   