.text-light{

    color: #bfbfbf;

}

.dark-bg{

    background-color: #000;

}

.text-white{

    color: #fff;

}

.text-theme{

    color: #13a7b3;

}

.bg-theme{

    background-color: #13a7b3;

}



.floating{

    position:fixed;

    width:60px;

    height:60px;

    bottom:30px;

    left:25px;

    background-color:#25d366;

    color:#FFF;

    border-radius:50px;

    text-align:center;

        font-size:30px;

    box-shadow: 2px 2px 3px #999;

    z-index:100;

  }



  .float-button{

    margin-top:16px;

  }

.brand-wrapper {
    overflow: hidden;
    position: relative;
}

.brand-marquee {
    display: flex;
    width: max-content;
    animation: scroll-marquee 10s linear infinite;
}

.brand-image {
    flex-shrink: 0;
}

.brand-image img {
    max-height: 200px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Continuous scroll animation */
@keyframes scroll-marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-30%);
    }
}

/* Optional: pause on hover */
.brand-wrapper:hover .brand-marquee {
    animation-play-state: paused;
}



