/* Custom styles for testimonial carousel navigation */
.testimonial-carousel-container {
    position: relative;
}

.testimonial-carousel-one .owl-nav {
    display: block !important;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.testimonial-carousel-one .owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(0,70,192,0.8) !important; /* Primary color with transparency */
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 18px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-carousel-one .owl-nav button:hover {
    background-color: rgba(255,158,25,0.9) !important; /* Secondary color with transparency */
    transform: scale(1.05);
}

.testimonial-carousel-one .owl-nav .owl-prev {
    left: -20px;
}

.testimonial-carousel-one .owl-nav .owl-next {
    right: -20px;
}

/* Testimonial Avatar Images */
.testimonial-carousel-one .testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel-one .testimonial-avatar img.rounded-circle {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-carousel-one .testimonial-avatar img.rounded-circle:hover {
    transform: scale(1.05);
}

/* Make arrows more visible on mobile */
@media (max-width: 767px) {
    .testimonial-carousel-one .owl-nav button {
        opacity: 0.8;
        width: 30px;
        height: 30px;
    }
      /* Make avatar images smaller on mobile */
    .testimonial-carousel-one .testimonial-avatar img.rounded-circle {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .testimonial-carousel-one .owl-nav .owl-prev {
        left: -15px;
    }
    
    .testimonial-carousel-one .owl-nav .owl-next {
        right: -15px;
    }
}

.footer-bg {
    background: linear-gradient(rgba(15, 49, 58, 0.8), rgba(15, 49, 58, 0.8)), url('img/bg/footerImg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}