.contact-card {
    width: 350px;
    padding: 40px 30px;
    background: #efefef;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.icon {
    width: 70px;
    height: 70px;
    background: #2f7ea1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.icon-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
    font-size: 20px;
}

.icon-btn:hover {
    transform: scale(1.15);
    background: #d5e1d9;
    color: white;
}

.fa-phone {
    color: #007bff;
}


.fa-whatsapp {
    color: #25D366;
}

.fa-envelope {
    color: #dc3545;
}

.content h3 {
    margin: 0;
    font-size: 22px;
    color: #1d3557;
    font-weight: bold;
}

.content p {
    margin: 6px 0;
    font-size: 16px;
    color: #555;
}

.content .bold {
    font-weight: bold;
    color: black;
}



.service-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 420px;
    background: url("assets/img/service/service-box-bg-3-1.png") center/cover no-repeat;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 0;
}

.service-card__image,
.service-card__content {
    position: relative;
    z-index: 1;
}

.service-card__image {
    padding: 20px 20px 0;
}

.service-card__image img {
    border-radius: 14px;
    object-fit: cover;
    height: 220px;
}

.service-card__content {
    padding: 20px;
}

.service-card__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 14px;
}

.service-card__phone:hover {
    color: #fff;
    background: #0b5ed7;
}

.service-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.service-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.service-card__btn {
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;

}

.card {
    position: relative;
    width: 280px;
    height: 280px;
    overflow: hidden;
    border-radius: 50%;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;

}

.card:hover .overlay {
    opacity: 1;
}

.overlay {
    opacity: 0;
    transition: .3s;
}




.icon-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
}



.icon-btn:nth-child(1) {

    left: 20%;
    bottom: 60px;
}

.icon-btn:nth-child(2) {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}

.icon-btn:nth-child(3) {
    right: 20%;
    bottom: 65px;
}


/* Mobile View */
@media (max-width: 576px) {

    .col-md-3 {
        margin-bottom: 20px;
        /* Gap between images */
    }

    .card {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        overflow: hidden;
        margin: 15px auto;
        border: none !important;
        background: transparent;

    }

    .overlay {
        opacity: 1;
    }
}

@media(max-width:576px) and (hover: hover) {
    .overlay {
        opacity: 0;
        transition: .3s;
    }

    .card:hover .overlay {
        opacity: 1;
    }

    /* .card:hover img {
        transform: scale(1.05);
    } */
}