/* Contact Page Styling */

.contact-page {
    margin-top: 80px;
    margin-bottom: 80px;
}

/* Card for Office + Map */
.contact-card {
    margin-top: 50px;
    background: #F8F8F8;
    border-radius: 12px;
    padding: 40px;
    /*box-shadow: 0px 4px 15px rgba(0,0,0,0.05);*/
}

/* Map Frame */
.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* Info Boxes (Blue background) */
.info-box {
    background: #2b3a90; /* Updated theme color */
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box a {
    color: #fff;
    text-decoration: underline;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}

/* Animations (same as CEO message) */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Headings Row */
.contact-card h4,
.contact-card h5 {
    margin-bottom: 20px;
}

.contact-card .text-md-end {
    text-align: right;
}
