/* Banner Slider Wrapper */
.banner-two {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slider Height for all screens */
.banner-two__slider-single {
    position: relative;
    width: 100%;
    height: 100vh; /* Full height hero slider */
    min-height: 550px; /* fallback for smaller screens */
}

/* Background Image */
.banner-two__slider-bg {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Content styling */
.banner-two__slider-content {
    padding-top: 80px;
    padding-bottom: 80px;
    color: #fff;
    position: relative;
    z-index: 5;
}

.banner-two__slider-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

/* Buttons */
.banner__content-cta .btn--tertiary,
.banner__content-cta .btn--primary {
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 50px;
}

/* ----------- RESPONSIVE BREAKPOINTS ----------- */

/* 1600px */
@media (max-width: 1600px) {
    .banner-two__slider-single {
        height: 90vh;
    }

    .banner-two__slider-content h1 {
        font-size: 48px;
    }

    .banner-two__slider-content {
        padding-top: 100px !important;
    }
}
@media (max-width: 1366px) {
    /* .banner-two__slider-single {
        height: 90vh;
    }

    .banner-two__slider-content h1 {
        font-size: 48px;
    } */

    .banner-two__slider-content {
        padding-top: 25px !important;
    }
}

/* 1440 / 1366px */
@media (max-width: 1440px) {
    .banner-two__slider-single {
        height: 80vh;
    }

    .banner-two__slider-content h1 {
        font-size: 42px;
    }
}

/* Large Size (1920px) */
@media (max-width: 1920px) {
    .banner-two__slider-single {
        height: 70vh;
    }
    .banner-two__slider-content {
        padding-top: 100px;
    }
}
/* Tablet (992px – 1199px) */
@media (max-width: 1199px) {
    .banner-two__slider-single {
        height: 70vh;
    }
    .banner-two__slider-content {
        padding-top: 100px;
    }
}

/* Small Tablet (768px – 991px) */
@media (max-width: 991px) {
    .banner-two__slider-single {
        height: 65vh;
    }

    .banner-two__slider-content h1 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .banner-two__slider-single {
        height: 60vh;
        min-height: 450px;
    }

    .banner-two__slider-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .banner-two__slider-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .banner__content-cta a {
        display: inline-block;
        margin-bottom: 8px;
        font-size: 14px;
        padding: 10px 24px;
    }
}


/* ---------- MOBILE OPTIMIZATION ---------- */
@media (max-width: 767px) {

    .banner-two__slider-single {
        height: 60vh;
        min-height: 430px; /* better for small phones */
        display: flex;
        align-items: center;
    }

    .banner-two__slider-content {
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;           /* center align all content */
    }

    /* Subtitle */
    .banner-two__slider-content .sub-title {
        font-size: 14px;
        margin-bottom: 10px;
        display: inline-block;
    }

    /* Title */
    .banner-two__slider-content h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 10px;
        font-weight: 700;
    }

    /* Description */
    .banner-two__slider-content p,
    .banner-two__slider-content div {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    /* CTA Buttons */
    .banner__content-cta {
        display: flex;
        flex-direction: column;      /* buttons stacked */
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .banner__content-cta a {
        width: 80%;                  /* bigger button */
        max-width: 260px;
        text-align: center;
        padding: 12px 0;
        font-size: 15px;
        border-radius: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner__content-cta a i {
        margin-left: 8px;
    }
}

/* ---------- SMALLER MOBILES (max 480px) ---------- */
@media (max-width: 480px) {
    .banner-two__slider-content h1 {
        font-size: 22px;
    }
}

/* ---------- VERY SMALL PHONES (max 360px) ---------- */
@media (max-width: 360px) {
    .banner-two__slider-single {
        min-height: 390px;
    }

    .banner-two__slider-content h1 {
        font-size: 20px;
    }

    .banner__content-cta a {
        width: 90%;
        font-size: 14px;
    }
}
