/* heroslider.css */

.custom-hero-slider {
    position: relative;
    overflow: hidden;
}

.custom-hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh; /* Responsive minimum height */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.custom-hero-slider .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 26, 51, 0.45); /* Dark overlay */
    z-index: 1;
}

.custom-hero-slider .container {
    position: relative;
    z-index: 2;
}

.custom-hero-content {
    text-align: center;
    padding: 30px;
}

.custom-hero-content .hero-title {
    margin-bottom: 20px;
}

.custom-hero-content .hero-text {
    margin-bottom: 35px;
}

/* Responsive parts */
@media (min-width: 1200px) {
    .custom-hero-slider .swiper-slide {
        min-height: 850px;
    }
}

@media (max-width: 1199px) {
    .custom-hero-slider .swiper-slide {
        min-height: 650px;
    }
}

@media (max-width: 767px) {
    .custom-hero-slider .swiper-slide {
        min-height: 500px;
    }
    .custom-hero-content .hero-title {
        font-size: 32px;
    }
    .custom-hero-content .hero-text {
        font-size: 16px;
    }
}
