.custom-slider-wrapper {
    position: relative;
    width: 100%;
}
.custom-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.custom-slider-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}
.custom-slider-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100vh;
}
.custom-slider-slide a {
    display: block;
    width: 100%;
}
.custom-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 10;
}
.custom-slider-pagination-item {
    background: #f9a032; /* Orange for inactive */
    border: none;
    width: 60px; /* Pill shape width */
    height: 15px; /* Pill shape height */
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px; /* Fully rounded corners for pill shape */
    padding: 0;
    text-indent: -9999px;
    overflow: hidden;
}
.custom-slider-pagination-item.active {
    background: #ffffff; /* White for active */
    width: 70px; /* Slightly wider when active */
}