.custom-hero-slider-wrapper {
    position: relative;
    font-family: Nunito, sans-serif;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    width: 100%;
}

.custom-hero-slider-wrapper .swiper-container {
    height: 100%;
    width: 100%;
}

.custom-hero-slider-wrapper .slide-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.custom-hero-slider-wrapper .slide-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.custom-hero-slider-wrapper .slide-content-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 3.4vw, 83px);
    max-width: 989px;
}

.custom-hero-slider-wrapper .slide-subtitle {
    color: #fff;
    font-size: clamp(18px, 1.15vw + 13.85px, 24px);
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.custom-hero-slider-wrapper .slide-title {
    color: #fff;
    font-size: clamp(38px, 3.3vw, 64px);
    font-style: normal;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 26px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.custom-hero-slider-wrapper .slide-buttons {
    display: flex;
    font-size: clamp(16px, 0.9vw + 12.5px, 18px);
    gap: 10px 30px;
}

.custom-hero-slider-wrapper .slide-btn {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-hero-slider-wrapper .slide-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.custom-hero-slider-wrapper .slider-bottom-nav {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
}

.custom-hero-slider-wrapper .swiper-pagination-custom {
    display: flex;
    gap: 15px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.custom-hero-slider-wrapper .swiper-pagination-custom span {
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.custom-hero-slider-wrapper .swiper-pagination-custom span.swiper-active-num {
    opacity: 1;
    border-bottom-color: #fff;
}

.custom-hero-slider-wrapper .swiper-nav-arrows {
    display: flex;
    gap: 25px;
    align-items: center;
}

.custom-hero-slider-wrapper .swiper-button-prev-custom,
.custom-hero-slider-wrapper .swiper-button-next-custom {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.custom-hero-slider-wrapper .swiper-button-prev-custom:hover:not(.swiper-button-disabled),
.custom-hero-slider-wrapper .swiper-button-next-custom:hover:not(.swiper-button-disabled) {
    transform: scale(1.1);
}

.custom-hero-slider-wrapper .swiper-button-prev-custom.swiper-button-disabled,
.custom-hero-slider-wrapper .swiper-button-next-custom.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 575px) {
    .custom-hero-slider-wrapper .slide-buttons {
		flex-direction:column;
        text-align: center;
    }
.custom-hero-slider-wrapper .slider-bottom-nav {
    bottom: 10px;
    right: 20px;
	}
}