/* Hero section styling */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://img.freepik.com/free-photo/unrecognizable-person-white-chemical-protection-suit-doing-disinfection-public-areas-stop-spreading-highly-contagious-corona-virus_342744-869.jpg?t=st=1746976953~exp=1746980553~hmac=81a4b97e3c6276e806852f0c3a5922849387d798f845fb6c48f5b42486982201&w=1380');
    background-size: cover;
    background-position: center;
}

/* Service card hover effects */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(76, 29, 149, 0.3);
}

/* Testimonial card styling */
.testimonial-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-left: 4px solid #7c3aed;
}

/* Navigation link hover effects */
.nav-link:hover::after {
    width: 100%;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #7c3aed;
    transition: width .3s;
}

/* Button styling */
.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
