.services-hero {
    min-height: 45vh;
    background: linear-gradient(rgba(70, 62, 63, 0.9), rgba(70, 62, 63, 0.9)), url('/import/divyaability-foundation-city-skyline-banner-1376x271.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.service-pro-card {
    background: white;
    border-radius: 35px;
    padding: 50px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-pro-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(70, 62, 63, 0.1);
    border-color: var(--gold);
}

.service-illustration-box {
    background: #fdfaf7;
    border-radius: 25px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.service-illustration-box img {
    max-height: 85%;
    width: auto;
    transition: transform 0.5s ease;
}

.service-img-cover {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: cover;
    filter: sepia(0.1) saturate(1.1) contrast(1.05);
}

.service-pro-card:hover .service-illustration-box img {
    transform: scale(1.1);
}

.service-title {
    color: var(--primary-bg);
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-feature-pill {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 215, 0, 0.1);
    color: #b8860b;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 8px;
    margin-bottom: 10px;
}

.impact-box {
    background: var(--primary-bg);
    border-radius: 40px;
    padding: 80px 60px;
    color: white;
    margin-top: 80px;
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .service-pro-card { padding: 30px; }
    .service-title { font-size: 1.5rem; }
}
