﻿

.carousel-section {
    width: 100%;
    text-align: center;
    background: #000;
    padding: 00px 0;
}

.carousel-container {
    position: relative;
    /* width: 80%; */
    /* max-width: 800px; */
    margin: auto;
    overflow: hidden;
    /* border-radius: 10px; */
}

.carousel-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

    .carousel-slide img {
        width: 100%;
        height: auto;
        display: block;
        height: 450px;
    }

    .carousel-slide.active {
        opacity: 1;
        position: relative;
    }
.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 97%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 1;
}

.carousel-button {
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 30px;
    padding: 5px 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

    .carousel-button:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }



    /*=====stats section=====*/
.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 20px;
    background-color: #10a2fd;
    flex-wrap: wrap;
    color: #fff;
}

.stat {
    text-align: center;
    margin: 20px;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.stat p {
    margin: 10px 0 0;
    font-size: 1.2rem;
    color: #555;
}

/* Animation for scrolling effect */
@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}
/*=======about-section========*/
.about-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 400px;
}

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #333;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 15px;
        text-align:justify;
    }

.about-image {
    flex: 1 1 400px;
    text-align: center;
}

    .about-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
/*--------------------testimonial-section-----------------*/
.testimonial-section {
    padding: 80px 20px;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/lib/images/travel-concept-with-landmarks.jpg') center/cover no-repeat;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

    .testimonial-header .subtitle {
        font-family: 'Brush Script MT', cursive;
        font-size: 1.5rem;
        color: #e76f51;
    }

    .testimonial-header h2 {
        font-size: 2.5rem;
    }

.testimonial-swiper {
    max-width: 1000px;
    margin: auto;
    padding: 20px 0;
}

.testimonial-card {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

    .testimonial-card .stars {
        color: #f4a261;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

.testimonial-user {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

    .testimonial-user img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 10px;
    }

    .testimonial-user .role {
        font-size: 0.8rem;
        color: #e76f51;
    }

.testimonial-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #e76f51;
}

.testimonial-swiper-button-prev,
.testimonial-swiper-button-next {
    color: #fff;
}


@media (max-width: 576px) {
    .carousel-slide img {
        width: 100%;
        height: auto;
        display: block;
        height: 250px;
    }

    .testimonial-card {
        width: 80%;
        background: #fff;
        color: #333;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    .testimonial-swiper {
        max-width: 500px;
        margin: auto;
        padding: 20px 0;
    }
}