/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Aug 28, 2024, 12:05:45 PM
    Author     : BRIAN
*/

.header-section{
    background: radial-gradient(ellipse at center,  rgba(3,169,243,0.5) 0%,rgba(3,169,243,0.37) 27%,rgba(229,229,229,0.21) 59%,rgba(229,229,229,0) 100%);
}
.reviews-slider .review-card {
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.29);
    background-color: whitesmoke;

    width: 400px;
    height: 200px;
    animation: reviews-scroll 80s linear infinite;

}

.reviews-slide-track {
    width: 100%;
    display: flex;
    gap: 1em;
    overflow: hidden;
}

.reviews-slider {
    background-color: white;
    padding: 1em 0em;
}

@keyframes reviews-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translatex(-1000%)
    }
}




/* Mobile styles - for screens smaller than 768px */
@media screen and (max-width: 768px) {
    .hometitle {
        font-size: 26px; /* Adjust this value to your liking */
    }
    .homesubtitle{
        font-size: 20px;
    }
    .trusted-by-label{
        text-align: center;
    }



}