:root {
            --primary-blue: #3498db;
            --dark-blue: #2980b9;
            --light-blue: #e6f2ff;
            --white: #ffffff;
            --gray: #f5f5f5;
            --dark-gray: #7f8c8d;
            --black: #2c3e50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--white);
            color: var(--black);
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;

        }
        
        
        .hero-container {
            position: relative;
            width: 100vw;
            height: 100vh;
            max-height: 800px;
            overflow: hidden;
        }
        
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 80%;
            max-width: 1200px;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            line-height: 1.6;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid #3498db;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: white;
            border-color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        /* Blue overlay effect */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(52,152,219,0.7) 0%, rgba(41,128,185,0.8) 100%);
            mix-blend-mode: multiply;
        }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .contact-header h1 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .contact-header p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .divider {
            height: 1px;
            background-color: #e0e0e0;
            margin: 30px 0;
        }
        
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--black);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .required::after {
            content: " *";
            color: var(--primary-blue);
        }
        
        .submit-btn {
            background-color: var(--primary-blue);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: var(--dark-blue);
        }
        
        .contact-map {
            flex: 1;
            min-width: 300px;
            background-color: var(--gray);
            border-radius: 8px;
            padding: 20px;
        }
        
        .map-container {
            height: 400px;
            background-color: #ddd;
            border-radius: 4px;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-gray);
        }
        
        .map-details {
            margin-top: 20px;
        }
        
        .map-details p {
            margin-bottom: 8px;
            color: var(--dark-gray);
        }
        
        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
            }
        }



        /* Add these media queries at the bottom of your existing CSS */

/* Mobile-first adjustments */
@media (max-width: 768px) {
    /* Hero section adjustments */
    .hero-container {
        height: auto;
        min-height: 60vh;
        max-height: none;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 60px 20px;
        width: 100%;
        text-align: left;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Contact form adjustments */
    .container {
        padding: 20px 15px;
    }
    
    .contact-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-form, 
    .contact-map {
        width: 100%;
        min-width: auto;
    }
    
    /* Map adjustments */
    .map-container {
        height: 300px;
    }
    
    iframe {
        width: 100%;
        height: 100%;
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .map-container {
        height: 350px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-content {
        padding: 40px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-header h1 {
        font-size: 1.5rem;
    }
    
    .form-group input, 
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px;
    }
}