/* Slider Container */
.custom-slider-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f4f4f4; /* Light background for contrast */
    border-radius: 10px; /* Smooth rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden; /* Prevent overflow issues */
}

/* Swiper Container */
.swiper-container {
    width: 100%;
    overflow: hidden;
}

/* Swiper Slides */
.swiper-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box; /* Ensures consistent padding and border sizes */
    border: 1px solid #F8C981; /* Light gray border for separation */
    border-radius: 8px; /* Rounded corners */
    background-color: #fff; /* White background for slides */
}

/* Slide Images */
.swiper-slide img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px; /* Optional: smooth image corners */
    object-fit: cover; /* Ensures images are nicely scaled */
}

/* Slide Titles */
.swiper-slide h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 0;
    color: #333; /* Neutral, readable text color */
    text-align: center;
}

/* Pagination Dots */
.swiper-pagination {
    margin-top: 15px;
    text-align: center;
}

.swiper-pagination-bullet {
    background-color: #333; /* Default dot color */
    width: 10px;
    height: 10px;
    opacity: 0.6;
    margin: 0 5px; /* Spacing between dots */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #043c44 !important; /* Highlighted dot color */
    opacity: 1;
    transform: scale(1.2); /* Slightly enlarge active dot */
}

/* Navigation Buttons */
.swiper-button-next, .swiper-button-prev {
    color: #043c44 !important ; /* Custom button color */
    background-color: rgba(0, 0, 0, 0.1); /* Optional semi-transparent background */
    border-radius: 50%; /* Round buttons */
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #043c44 !important ; /* Hover color */
    background-color: rgba(0, 0, 0, 0.3); /* Slightly darker background on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .swiper-slide {
        padding: 10px;
    }
    .swiper-slide h2 {
        font-size: 16px; /* Smaller title size on mobile */
    }
}
