/* Contact Page Styles */
nav {
    background: #000000;
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #f1c40f;
    transform: translateY(-3px);
}
.contact-hero {
    /* background: url('https://scontent.fisb3-3.fna.fbcdn.net/v/t39.30808-6/475773601_4709231019302616_4248820592231867400_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=833d8c&_nc_eui2=AeH-c6GywdNvRDKEsnx1UB1szBWss68fOdTMFayzrx851AI3IedUEvChhv0ESjc3UMLcRnwwN2yt7Vmo4AnK71hf&_nc_ohc=Bd6GdMgtQ3sQ7kNvgEt_Oxy&_nc_oc=AdgonyEswcRVUhhlKda6-3R0P0IzUwEjYkvS7XBmCBkl48rcFgVfSAh6eRmx07zMz7w&_nc_zt=23&_nc_ht=scontent.fisb3-3.fna&_nc_gid=ANjHKrfOCws8TgO-GL8hgNR&oh=00_AYB9oGgYGoPbPSceeaBLsiMvCD4iusBHDkixAyd5D-r76A&oe=67C7D2AD') no-repeat center center/cover; */
    background-color: #3b99d8;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(49, 44, 44, 0.062);
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin: 0;
}
h2{
    color: #fff;
}
.contact-hero p {
    font-size: 1.2rem;
}

.contact {
    padding: 40px 20px;
    background: #070707;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(216, 208, 208, 0.5);
    animation: fadeIn 1s ease-in-out;
}

.contact-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-form, .contact-info {
    flex: 1;
    background: #ffa8a8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-form:hover, .contact-info:hover {
    transform: translateY(-5px);
}

.contact-form h3, .contact-info h3 {
    margin-top: 0;
    color: #0e0d0d;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ffececc6;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #3b99d8;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    background: #c1c7cd;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

button[type="submit"]:hover {
    background: #34495e;
    transform: translateY(-3px);
}

.contact-info p {
    margin: 10px 0;
    font-size: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: #ffffff;
}

/* Small Logo in Contact Info Section */
.logo-small {
    text-align: center;
    margin-bottom: 20px;
}

.logo-small img {
    width: 80px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.74);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-small img:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.5);
}

/* Map Section */
.map {
    margin-top: 40px;
    animation: fadeIn 1s ease-in-out;
}

.map h3 {
    margin-bottom: 20px;
    color: #221d1d;
}

iframe {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form, .contact-info {
        min-width: 100%;
    }

    .logo-small img {
        width: 60px; /* Smaller logo for mobile */
    }
}
nav {
    background: #34495e;
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #f1c40f;
    transform: translateY(-3px);
}