﻿body {
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* 🌟 Contact Section */
.contact-section {
    background: linear-gradient(135deg, #001F3F, #004aad, #007bff);
    color: white;
    padding: 5rem 1rem;
    border-bottom: 5px solid #00d4ff;
}

    .contact-section h2 {
        font-weight: 700;
        font-size: 2.5rem;
        color: #00d4ff;
        letter-spacing: 1px;
    }

    .contact-section p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

/* 🌟 Gradient Border Card (reused from index) */
.gradient-border-card {
    position: relative;
    background: #0a0a0a;
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    text-align: left;
    font-weight: 500;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

    .gradient-border-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 2px;
        background: linear-gradient(90deg, #b06ab3, #4568dc, #00d4ff, #ff6ec7);
        background-size: 300% 300%;
        animation: gradientBorder 5s ease infinite;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
    }

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-border-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* 🌟 Form Controls */
.form-control {
    background-color: #121212;
    border: 1px solid #00d4ff;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .form-control:focus {
        background-color: #1a1a1a;
        border-color: #00d4ff;
        box-shadow: 0 0 10px #00d4ff;
        color:white;
    }

.form-label {
    font-weight: 600;
    color: #00d4ff;
}

.btn-primary {
    background-color: #00d4ff;
    border: none;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.6rem 1.4rem;
}

    .btn-primary:hover {
        background-color: #fff;
        color: #004aad;
        transform: scale(1.05);
    }

/* 🌟 Map Container */
iframe {
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* 🌟 Footer */
footer {
    background-color: #0f0f0f;
    color: #aaa;
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid #00d4ff;
}

    footer a {
        color: #00d4ff;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }
