
.servicesHome {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
}
.OurPartners {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

    .services-section {
        width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    flex-direction: column;
    
}


.partner-section {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    padding: 20px;
}

.logo-containerPartners {
    overflow: hidden; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 150px;
    height: 75px; 
}

.logoPartner {
    width: 100%; 
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease; 
}

.logo-containerPartners:hover .logo {
    filter: grayscale(0%); 
}


@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 7)); }
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

.slider .slide-track {
    animation: scroll 60s linear infinite;
    display: flex;
    width: calc(250px * 14); 
}


.slider .slide {
    height: 100px;
    width: 250px;
}

.testima {
    margin-bottom: 60px;
}

.service {
    display: flex;
    height: 200px;
    background-color: #ffffff85;
    color: #0086bf;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 20%;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #0086bf; /* Hover background color */
    color: white; /* Change text color on hover */
}
.service:hover .icon{
    border: 1px solid #fff;
}

/* .icon {
    width: 100px;
    height: 100px;
    display: flex;
     background: red; 
    border-radius: 50%;
    border: 1px solid #0086bf;
    font-size: 40px;
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
} */

.servicesContainer{
    width: 90%;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 50px;
}

.service:hover .ddImg {
    filter: brightness(0) invert(1); 
}

.service:hover .circle {
    stroke: white; 
}

.service:hover image {
    filter: brightness(0) invert(1); 
}


@media (max-width: 768px) {
    .service {
        width: 70%;
    }
    .services-section{
        height: auto;
    }
}