.who-can-take-our-service {
    background: linear-gradient(135deg, #f0f4ff, #e6f0ff);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.who-can-take-our-service .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2585;
    margin-bottom: 10px;
    position: relative;
}

.who-can-take-our-service .section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1a2585, #00c6ff);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.who-can-take-our-service .lead {
    color: #555;
    margin-bottom: 50px;
    font-size: 1rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* always 3 columns */
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1) rotate(1deg);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: #1a2585;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .card-content h3 {
    color: #00c6ff;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Scroll animation using WOW.js or AOS */
.wow {
    visibility: hidden;
}
/* tablet: 2 columns */
@media (max-width: 991px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .card-image {
        height: 180px;
    }
}
/* mobile: 1 column */
@media (max-width: 576px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
}

