.hero-banner {
    margin-bottom: 90px;
}

.hero-slider {
    width: 100%;
    position: relative;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--color-light);
}

.hero-inner-content {
    max-width: 830px;
    padding-left: 58px;
}

.hero-content h1 {
    font-weight: 600;
}

.slider-caption {
    padding: 30px 0px 50px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 30px;
}

/* Pagination & Navigation Layout */
.slider-controls {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Custom Dash Pagination */
.swiper-pagination-bullets {
    position: static;
}

.swiper-pagination-bullet {
    width: 34px !important;
    height: 9px !important;
    border-radius: 5px !important;
    background: none !important;
    border: 1px solid #F5F3F0;
    opacity: 1;
    margin: 0px 6px !important;
}

.swiper-pagination-bullet-active {
    background: #4DABC2 !important;
    border: none;
    opacity: 1;
}

/* Navigation arrows */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    color: var(--color-white);
    cursor: pointer;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
    color: var(--border-dark);
    border: 1px solid var(--border-dark);
}

@media (min-width: 768px) {
    .hero-slider {
        height: 653px;
    }
    .hero-content {
        width: 1432px;
        margin: 0px auto;
    }
}
@media (min-width: 1024px) {
    .hero-slider {
        height: 873px;
    }
}
@media (max-width: 1024px) {
    .hero-inner-content {
        padding: 0px 20px;
    }
    .hero-banner {
       margin-bottom: 60px; 
    }
}
@media (max-width: 768px) {
    .hero-banner {
        overflow: hidden;
        padding-bottom: 160px;
        margin-bottom: 85px;
    }
    .hero-slider {
        overflow: visible;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        position: absolute;
        bottom: -160px;
        left: 20px;
        right: 20px;
    }

    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        display: none;
    }

    .swiper-pagination-bullet {
        border: 1px solid #4DABC2;
    }

    .hero-inner-content {
        padding: 200px 20px 30px;
    }
    .slider-caption {
        padding: 20px 0px 0px;
    }
    .slider-controls {
        bottom: -35px;
    }
    .hero-buttons .btn-secondary-light {
        color: var(--color-text-dark);
        border-color: var(--border-dark);
    }
}