
.banner {
    background: url('../img//bg1.avif') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.banner h1 {

    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, #000, #f2f2f2);
    padding: 50px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Flexbox Container for Map and Contact Details */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-item {
    flex: 1;
    min-width: 320px;
    margin: 15px;
}

/* Contact Details Card */
.contact-details {
    background-color: #ffffffcf;

    height: 450px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details h3 {
    font-size: 2rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #000000;
}

.contact-details a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #000000;
}

/* Map Section */
.map-section iframe {
    border: none;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Hover Effect for Contact Section */
.contact-item:hover .contact-details {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2.5rem;
    }

    .contact-details h3 {
        font-size: 1.8rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .map-section iframe {
        height: 300px;
    }
}

