.service-area {
    background: linear-gradient(135deg, #f0f7ff, #e8ecf3);
    position: relative;
    overflow: hidden;
}

.service-area::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4), transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ----- Glass Card Style ----- */
.glass-card {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
/* .member-name{
    display:none;
} */

.glass-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 30px rgba(18, 163, 39, 0.3);
    background: rgba(255, 255, 255, 1);
}
/* .glass-card:hover .member-name{
    display:block;
} */
/* ----- Logo Style ----- */
.clients-img {
    width: 60%;
    height: 60px;
    object-fit: contain;
    filter: grayscale(80%);
    transition: all 0.4s ease;
}

.glass-card:hover .clients-img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.section-title h2 {
    font-size: 2rem;
}

/* ----- Custom 5-Column Layout ----- */
@media (min-width: 992px) {
    .col-lg-2_4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* ----- Responsive Adjustments ----- */
@media (max-width: 991px) {
    .clients-img {
        height: 90px;
    }
}

@media (max-width: 767px) {
    .clients-img {
        height: 80px;
    }
}