@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.contact-section {
    background-color: #F8F9FA;
    padding: 80px 0;
}

/* Added wrapper to create space for the floating icon */
.contact-card-wrapper {
    position: relative;
    padding-top: 25px;
    /* Half of icon height */
}

.contact-card {
    background: #fff;
    padding: 45px 25px 30px;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.icon-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    background-color: #fff;
    /* Changed to white for better contrast */
    border: 2px solid#10A9B5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.icon-circle svg {
    fill: #065B9C;
    width: 22px;
    height: 22px;
}

.contact-card:hover .icon-circle {
    background-color: #10A9B5;  /* circle becomes teal */
    border-color: #10A9B5;
}

/* SVG color change */
.contact-card:hover .icon-circle svg {
    fill: #ffffff;  /* icon becomes white */
}
.contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #065B9C;
    margin-bottom: 15px;
}

.contact-card p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* FORM */
.form-card {
    background: #fff;
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-weight: 600;
    font-size: 28px;
    color: #065B9C;
}

/* INPUT */
.form-control {
    background: #fcfcfc;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 14px;
    font-size: 14px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #10A9B5;
    box-shadow: 0 0 0 0.15rem rgba(40, 49, 116, 0.1);
}

/* BUTTON */
.submit-btn {
    background: linear-gradient(135deg, #065B9C, #10A9B5);
    color: #fff;
    padding: 12px 60px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #10A9B5,  #065B9C);
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
    .form-card {
        padding: 30px 20px;
    }

    .submit-btn {
        width: 100%;
    }
}