/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #0e03bb, #3f37c9);
    color: #fff;
    padding: 80px 0;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 18px;
    margin-top: 10px;
}

/* Main Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Contact Card */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card h4 {
    margin-bottom: 30px;
    font-weight: 600;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 20px;
    color: #0e03bb;
    margin-right: 15px;
    margin-top: 4px;
}

.contact-item p {
    margin: 0;
}

/* Image Styling */
.contact-image-wrapper {
    text-align: center;
}

.contact-image {
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


.contact-section .row {
    align-items: stretch;
}

.contact-section .col-md-6 {
    display: flex;
}

/* .contact-right {
    display: flex;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;   
    border-radius: 14px;


} */

/* =========================
   RESPONSIVE FIXES
========================= */

@media (max-width: 991px) {

    /* Reduce section padding */
    .contact-section {
        padding: 50px 0;
    }

    .contact-hero {
        padding: 60px 20px;
    }

    /* Hero text resize */
    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    /* Reduce card padding */
    .contact-card {
        padding: 25px;
        margin-bottom: 20px;
    }



}
@media (max-width: 576px) {

    .contact-item {
        margin-bottom: 18px;
    }

    .contact-item i {
        font-size: 18px;
        margin-right: 12px;
    }
    .contact-right img {
    width: 100%;
    height: auto;
    border-radius: 14px;
}

}
/* Fix column behavior on mobile */
@media (max-width: 767px) {

    .contact-section .col-md-6 {
        display: block !important;
    }

}

/* Stack image nicely */
.contact-right img {
    height: auto;
    object-fit: cover;
}
.contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
}