/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background-color: #062f66;
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-left h1 {
    margin: 0;
    font-size: 28px;
}

.header-left a {
    text-decoration: none;
    color: #fbff00;
}

.header-left a:hover {
    color: #ffffff;
}

.header-left p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

#search-bar {
    width: 300px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-top: 12px;
    margin-left: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Main Content */
main {
    margin-top: 100px;
}

section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: #062f66;
}

/* Contact Form Section */
        #contact-form {
            padding: 80px 20px;
            max-width: 1500px;
            background: linear-gradient(135deg, #ffffff, #ffffff);
            position: relative;
            overflow: hidden;
        }

        #contact-form h2 {
            font-size: 40px;
            color: #000000;
            text-align: center;
            margin-bottom: 15px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: fadeInDown 1s ease-out;
        }

        #contact-form p {
            font-size: 18px;
            color: #000000;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px;
            animation: fadeInUp 1s ease-out 0.3s;
            animation-fill-mode: both;
        }

        /* Form Container */
        #contactForm {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            animation: slideInUp 1s ease-out;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Form Group with Floating Labels */
        .form-group {
            margin-bottom: 30px;
            position: relative;
        }

        .form-group label {
            position: absolute;
            top: 12px;
            left: 15px;
            font-size: 16px;
            color: #4b5563;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #d1d5db;
            border-radius: 8px;
            font-size: 16px;
            background: #fff;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e3a8a;
            box-shadow: 0 0 12px rgba(30, 58, 138, 0.4);
        }

        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label {
            top: -10px;
            left: 10px;
            font-size: 12px;
            color: #1e3a8a;
            background: #fff;
            padding: 0 5px;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group .error-message {
            display: none;
            color: #dc2626;
            font-size: 12px;
            margin-top: 5px;
            position: absolute;
            left: 15px;
            animation: shake 0.3s ease;
        }

        .form-group.error .error-message {
            display: block;
        }

        .form-group.error input,
        .form-group.error textarea {
            border-color: #dc2626;
            animation: shake 0.3s ease;
        }

        /* Submit Button */
        .submit-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, #1e3a8a, #3b82f6);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .submit-btn:hover {
            transform: scale(1.05);
            animation: pulse 1.5s infinite;
        }

        .submit-btn:active {
            transform: scale(0.95);
        }

        .submit-btn:disabled {
            background: #9ca3af;
            cursor: not-allowed;
        }

        .submit-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .submit-btn:active::after {
            width: 200px;
            height: 200px;
            opacity: 0;
        }

        /* Success Message */
        .success-message {
            display: none;
        }

        /* Greeting Animation */
        .greeting-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .greeting-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .greeting-message {
            background: #fff;
            padding: 40px;
            border-radius: 16px;
            text-align: center;
            transform: scale(0.5);
            animation: popIn 0.6s ease-out forwards;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .greeting-message h3 {
            font-size: 32px;
            color: #1e3a8a;
            margin-bottom: 10px;
        }

        .greeting-message p {
            font-size: 18px;
            color: #4b5563;
        }

        /* Confetti Particles */
        .greeting-overlay .particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: #3b82f6;
            border-radius: 50%;
            opacity: 0.8;
            animation: confetti 2s ease-out infinite;
        }

        .greeting-overlay .particle:nth-child(odd) {
            background: #ef4444;
        }

        .greeting-overlay .particle:nth-child(even) {
            background: #22c55e;
        }

        /* Keyframe Animations */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(100px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes popIn {
            0% { transform: scale(0.5); opacity: 0; }
            80% { transform: scale(1.1); opacity: 1; }
            100% { transform: scale(1); }
        }

        @keyframes confetti {
            0% { opacity: 1; transform: translateY(0) rotate(0deg); }
            100% { opacity: 0; transform: translateY(100vh) rotate(720deg); }
        }
/* Map Section */
.map-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); /* Gradient background */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
    pointer-events: none;
}

.map-section h2 {
    font-size: 3rem;
    color: #1a2a44; /* Deep navy for contrast */
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

.map-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(45deg, #6b7280, #000000); /* Gradient border effect */
    padding: 6px; /* Space for gradient border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
}

.map-container:hover {
    transform: scale(1.02); /* Slight zoom on hover */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

#map {
    width: 100%;
    height: 550px; /* Taller for a premium look */
    background: #fff; /* Fallback background */
    border-radius: 10px; /* Inner radius for clean look */
    overflow: hidden;
    position: relative;
}

#map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    filter: brightness(1.05) contrast(1.08) saturate(1.1); /* Vibrant map visuals */
    transition: filter 0.3s ease, transform 0.3s ease;
}

#map iframe:hover {
    filter: brightness(1.15) contrast(1.12) saturate(1.2);
    transform: scale(1.01); /* Subtle zoom effect */
}

/* Overlay for context (e.g., location pin) */
.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
}

.map-container:hover .map-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Keyframes */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background-color: #062f66;
    color: white;
    padding: 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-left, .footer-middle {
    flex: 1;
}

.footer-left h3 {
    margin: 5px 10px;
    font-size: 24px;
}

.footer-left p {
    margin: 5px 10px 10px;
    font-size: 14px;
}

.privacy a {
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
}

.privacy p {
    color: #ffffff;
    font-size: 13px;
}

.social-icons p {
    font-weight: bold;
    margin: 8px 50px 10px;
}

.social-icons i {
    font-size: 30px;
    color: #ffffff;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #ffcc00;
}

.footer-middle h3 {
    margin: 0 0 15px;
    font-size: 20px;
    margin-left: 70px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
}

.footer-middle ul {
    list-style: none;
    padding: 0;
    margin-left: 70px;
}

.footer-middle ul li {
    margin-bottom: 10px;
}

.footer-middle ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-middle ul li a:hover {
    color: #ffcc00;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Header */
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }

    .header-left h1 {
        font-size: 24px;
    }

    .header-left p {
        font-size: 12px;
    }

    .header-right {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    #search-bar {
        width: 100%;
        margin-top: 10px;
    }

    /* Main Content */
    #contact-form {
        padding: 50px 15px;
    }

    #contact-form h2 {
        font-size: 32px;
    }

    #contact-form p {
        font-size: 16px;
    }

    #contactForm {
        padding: 25px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 16px;
    }

    .greeting-message {
        padding: 20px;
    }

    .greeting-message h3 {
        font-size: 24px;
    }

    .greeting-message p {
        font-size: 16px;
    }

    /* Map Section */
    .map-section {
        padding: 60px 15px;
    }

    .map-section h2 {
        font-size: 2rem;
    }

    .map-section p {
        font-size: 1rem;
    }

    #map {
        height: 400px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-middle {
        margin-bottom: 20px;
    }

    .footer-middle h3 {
        margin-left: 0;
    }

    .footer-middle ul {
        margin-left: 0;
    }
}