/*
Custom CSS for TemplateMo 561 Purple Buzz

https://templatemo.com/tm-561-purple-buzz

*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Poppins:wght@300;400;600&display=swap');

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
  /*  background-color: #f4f4f4;*/
}
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
/*Testimonials*/
.text-muted {
    color: #6c757d;
    line-height: 1.6;
}

.testimonial-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
    .testimonial-box:hover {
        transform: translateY(-10px);
    }

    .testimonial-box h4 {
        font-size: 1.25rem;
        margin-bottom: 10px;
        color: #007bff;
    }

    .testimonial-box p {
        font-size: 1rem;
        color: #333;
    }

.owl-carousel .owl-nav button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 1rem;
    transition: 0.3s;
}

    .owl-carousel .owl-nav button:hover {
        background: #0056b3;
    }


/*Testimonials*/
/*Clients logo */
.testimonial-img-wrapper {
    width: 100px; /* fixed width */
    height: 100px; /* fixed height to match width */
    border-radius: 50%; /* makes the container circular */
    overflow: hidden; /* hides any overflow of the image */
    margin: 0 auto 10px auto; /* center the container and add some bottom margin */
    border: 2px solid #ddd; /* optional border for a neat circle outline */
}

    .testimonial-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* ensures the image fills the container, cropping if needed */
        display: block;
    }

