

/* Contact Page Styling */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-image: url('../images/contact1.webp'); /* Replace with your actual image path */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    
}



/* Contact Info */
.contact-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    color: cyan;
    background: rgba(44, 6, 110, 0.1);
}

.contact-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(10, 2, 24, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.contact-item i {
    font-size: 22px;
    color: cyan;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Google Map */
.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}
