﻿/* Slideshow Container */
.slideshow-container {
    overflow: hidden;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-color: #222222;
}

/* Slideshow Content */
.slideshow {
    display: flex;
    transition: transform 0.6s ease; /* Smooth transition between slides */
    width: 100%; /* Dynamically adjust to fit all slides */
}

/* Page Container */
    .slideshow .page-container {
        flex: 0 0 100%; /* Ensure each slide is exactly 100% of the viewport width */
        width: 100%;
        height: 100vh; /* Full viewport height for each slide */
        overflow: hidden; /* Prevent content overflow */
        display: flex;
        justify-content: center;
        align-items: center;
    }

/* Navigation Arrows */
.slideshow-container .btn {
    background: transparent;
    width: 45px;
    height: 45px;
    z-index: 10;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slideshow-container .btn:hover {
    background: transparent !important;
}

    .slideshow-container .btn i {
        font-size: 2rem; /* Icon size */
        color: #FFD700; /* Gold color for icons */
        transition: transform 0.2s ease-in-out; /* Smooth hover effect */
    }
    .slideshow-container .btn:hover i {
        transform: scale(1.2); /* Slight zoom on hover */
        color: #50C878; /* Change color on hover */
    }

/* Navigation Dots */
.slideshow-container .dots {
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slideshow-container .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #FFD700;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

    .slideshow-container .dot.active {
        opacity: 1;
        background-color: #50C878;
    }