﻿/* carousel.css */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: auto;
    background-color: #f8f9fa;
    border-radius: 10px;
    min-height: 160px;
    display: flex;
    align-items: center;
}

.testimonial-inner {
    display: flex;
    width: 300%;
    transform: translateX(0%);
    transition: transform 1s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 2rem;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    min-height: 200px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: bold;
    color: #333;
    font-size: 1rem;
}

.carousel-nav {
    text-align: center;
    margin-top: 1rem;
}

    .carousel-nav button {
        background-color: #ddd;
        border: none;
        width: 12px;
        height: 12px;
        margin: 0 5px;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
    }

    .carousel-nav .active-dot {
        background-color: #007bff;
    }

    /*footer menu*/
.footer-link {
    position: relative;
    transition: color 0.3s ease;
}

    .footer-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0%;
        height: 2px;
        background-color: #0d6efd; /* Bootstrap primary */
        transition: width 0.3s ease;
    }

    .footer-link:hover {
        color: #0d6efd;
    }

        .footer-link:hover::after {
            width: 100%;
        }
