.custom-slider {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 12px;
}

.custom-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.custom-slider .overlay {
    padding: 30px;
    color: white;
    text-shadow: 0 0 5px rgba(0,0,0,0.4);
    max-width: 80%;
}

.custom-slider .slide-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

.custom-slider .slide-subtitle {
    font-size: 1.2rem;
    margin-top: 8px;
}

.custom-slider .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.custom-slider .swiper-pagination-bullet-active {
    background: #F94D00;
    opacity: 1;
}


.custom-slider .swiper-pagination .swiper-pagination-bullet {
    background-color: #fff !important;
    width: 24px !important;
    height: 24px !important;
    z-index: 10;
}

.custom-slider span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #F94D00 !important;
}

.custom-slider .swiper-pagination {
    position: relative;
    margin-top: -40px;
    text-align: right;
}

.custom-slider .slide-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.custom-slider .slide-button:hover {
    opacity: 0.9;
}