/* Services Hero */
.services-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../IMG/pexels-pavel-danilyuk-8112184.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* color: var(--white); */
    text-align: center;
}

/* Services Categories */
.category-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    transition: all 0.3s ease;
}

/* Specific category colors */
.category-card::after { background: var(--secondary-color); }


.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.category-card:hover::after {
    transform: scaleX(1);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: var(--primary-dark);
}


/* Service Details */
.service-details {
    background: white;
}

.service-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(38, 94, 151, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    margin-left: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}


.cta-section{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../IMG/pexels-a-darmel-7641859.jpg);
} 

/* Responsive Styles */
@media (max-width: 991.98px) {
    .services-hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
  
    
    .hero-img-container {
        transform: none;
        margin-top: 30px;
    }
}