.color1 {
    background-color: #E0195A;
}

.color2 {
    background-color: #F3B500;
}

.color3 {
    background-color: #490D49;
}

.color4 {
    background-color: #38E9B2;
}

.color5 {
    background-color: #0000FF;
}



.slider {
    display: flex;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 1.3rem;
}

.client-item {
    animation: animate 21s linear infinite;
}

.client-item img {
    min-width: 200px;
    padding: 0 30px;
    background: transparent;
}

.slider:hover .client-item {
    animation-play-state: paused;
}

@keyframes animate {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-1000px, 0, 0);
    }
}


.logo img {
    height: 150px;
}


.logo-slider {
    overflow: hidden;
    padding: 0px 0 0 0;
    white-space: nowrap;
    position: relative;
    /* width: fit-content; */
}

.logo-slider:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: block;
    animation: 16s slide infinite linear;
    width: max-content;
}

.logos-slide img {
    height: 200px;
    margin: 0px 25px;
}

.about-us-image {
    height: 685px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}




/* Hide the hover image by default */
.project-img .hover-image {
    display: none !important;
}

/* Display the hover image when hovering over the project-item */
.project-item:hover .project-img .normal-image {
    display: none;
}

.project-item:hover .project-img .hover-image {
    display: block !important;
}


.instagram-reel-iframe {
    border-radius: 20px;
    border: 1px solid #F3B500;
    width: 100%;
    height: 700px;
}

.col-md-6{
    .youtube-reel-iframe {
        border-radius: 20px;
        border: 1px solid #F3B500;
        width: 100%;
        height: 327px
    } 
    
}

.col-md-12{

    .youtube-reel-iframe {
        border-radius: 20px;
        border: 1px solid #F3B500;
        width: 100%;
        height: 700px;
    }
    
}

.service-item:hover {
    h3 {
        color: #000 !important;
    }

    p {
        color: #000 !important;
    }
}


.service-item:hover::before {
    background-color: #F3B500 !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

.float-left {
    justify-content: left !important;
}



#goToTopButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #F3B500;
    color: black;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#goToTopButton:hover {
    background-color: #F3B500;
}


.justify-text {
    text-align: justify;
}



/* Media Queries for Responsive Design */

/* Extra Small devices (phones) */
@media (max-width: 576px) {
    .youtube-reel-iframe {
            height: 200px;
        }
}

/* Small devices (landscape phones) */
@media (min-width: 576px) and (max-width: 767px) {
.youtube-reel-iframe {
        height: 200px;
    }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991px) {

}

/* Large devices (desktops) */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Extra Large devices (large desktops) */
@media (min-width: 1200px) {

}

