.contact-section {
    max-width: 1300px;
    margin: 0 auto;

}

.text-center h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #132D55;
    margin-bottom: 20px;
    position: relative;
}

.text-center h1::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #1c5f90;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.text-center p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.contact-details {
    margin-top: 50px;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #1c5f90;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1c5f90 0%, #0f92f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: rotate(360deg);
}

.contact-card h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #132D55;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .text-center h1 {
        font-size: 2rem;
    }

    .text-center p {
        font-size: 1rem;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-card h6 {
        font-size: 1rem;
    }
}