﻿.services-hero-section {
    height: 50vh;
    background-image: url(/Images/services/herosection.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Make the section container relative for positioning overlay */
}

    .services-hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.756); /* Semi-transparent black overlay */
        z-index: 1; /* Make sure the overlay is above the background but below content */
    }
/* Responsive styles */
@media (max-width: 768px) {
    .services-hero-section {
        height: 40vh; /* Adjust height for medium screens */
    }
}

@media (max-width: 576px) {
    .servicess-hero-section {
        height: 30vh; /* Further adjust height for small screens */
    }
}

/* Our Services  */
.our-services-section {
    background-color: #f5f5f5;
    padding: 50px 0px;
}

.client-card:hover .services-image {
    filter: brightness(0) invert(1); /* This makes the image white on hover */
}



@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

.specialities-icon {
    color: #4c4c4c !important;
}

.client-card:hover .specialities-icon {
    filter: brightness(0) invert(1); /* This makes the image white on hover */
}
/* Our Services End */
