/* Carousel Section */
.carousel-section {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    width: 100vw;
}

/* Swiper full height */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.swiper-pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
    height: 100%;
}

/* Slide background */
.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

/* Gradient overlay (dark fade from left) */
.swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.568) 50%,
            transparent 100%);
    z-index: 1;
}

/* Text container */
.carousel-content {
    position: relative;
    z-index: 2;
    width: 100% !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;

}

/* Text styling */
.carousel-text {
    color: #FFFFFF;
    width: 100%;
}

.carousel-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
}

.carousel-text h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.carousel-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

/* Primary button (#3B6BB3) */
.carousel-btn-primary {
    background-color: #3B6BB3;
    color: #fff;
}

.carousel-btn-primary:hover {
    background-color: #2E5692;
    transform: translateY(-2px);
}

/* Secondary button (transparent outline) */
.carousel-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.carousel-btn-secondary:hover {
    background-color: #fff;
    color: #333;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .carousel-section {
        position: relative;
        height: 60vh;
        overflow: hidden;
    }

    .carousel-text {
        text-align: center;
    }

    .carousel-text h2 {
        font-size: 2.4rem;
    }

    .carousel-text h3 {
        font-size: 1.1rem;
    }


    .buttons {

        justify-content: center;
    }
}

@media (max-width: 576px) {
    .carousel-section {
        position: relative;
        height: 90vh;
        overflow: hidden;
    }

    .carousel-text h2 {
        font-size: 1.8rem;
    }

    .carousel-text h3 {
        font-size: 1rem;
    }

    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .carousel-btn {
        width: 100%;
    }

    .carousel-content {
        padding: 0 15px;
    }
}