.explore-services-section .row {
    row-gap: 30px;
}

.explore-service-card {
    height: 100%;
    padding: 40px 28px;
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(23, 37, 84, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(23, 37, 84, 0.14);
}

.explore-service-card__icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--theme-color1-rgb), 0.12), rgba(52, 50, 72, 0.08));
}

.explore-service-card__icon .icon {
    color: var(--theme-color1);
    font-size: 42px;
    line-height: 1;
}

.explore-service-card__title {
    min-height: auto;
    margin-bottom: 16px;
    color: var(--theme-color2);
}

.explore-service-card .theme-btn {
    min-width: 170px;
}

@media (max-width: 767px) {
    .explore-service-card {
        padding: 32px 24px;
    }

    .explore-service-card__title {
        min-height: auto;
    }
}

/* Stylized info-box for professional/service listings */
.team-block-two .inner-box {
    border: none !important;
    background: transparent;
    transition: all 0.3s ease;
}

.team-block-two .info-box {
    background: linear-gradient(135deg, #ffffff 40%, rgba(var(--theme-color1-rgb), 0.05) 100%);
    border: none !important;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 30px rgba(23, 37, 84, 0.06);
    padding: 24px 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.team-block-two:hover .info-box {
    box-shadow: 0 18px 45px rgba(23, 37, 84, 0.12);
    transform: translateY(-4px);
}

.team-block-two .info-box .name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--theme-color2);
}

.team-block-two .info-box .name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-block-two .info-box .name a:hover {
    color: var(--theme-color1);
}

.team-block-two .info-box .designation {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    display: block;
    line-height: 1.5;
}

/* Subtle Animated EKG Background for Listing Pages */
.team-section.pb-80 {
    position: relative;
    overflow: hidden;
}

.team-section.pb-80::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
    background-image: url('data:image/svg+xml;utf8,<svg width="400" height="150" viewBox="0 0 400 150" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 75 L50 75 L60 50 L75 110 L90 20 L100 85 L110 75 L400 75" stroke="%23ff0000" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: repeat-x;
    background-position: center;
    background-size: 600px auto;
    animation: scrollEKG 20s linear infinite;
}

@keyframes scrollEKG {
    0% { background-position: 100% center; }
    100% { background-position: -600px center; }
}
