/**
 * US Banner Slider Styles
 */

/* Slider Container */
.us-banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1e3a8a;
}

.us-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 455;
    overflow: hidden;
}

/* Individual Slide */
.us-slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: none;
    opacity: 0;
    transform-origin: center center;
}

.us-slider-slide.active {
    display: block;
    opacity: 1;
}

/* Overlay */
.us-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Content Container - 1200px width */
.us-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.us-slider-content {
    max-width: 600px;
    color: #ffffff;
}

/* Slider Controls */
.us-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Bullets */
.us-slider-bullets {
    display: flex;
    align-items: center;
    gap: 6px;
}

.us-slider-bullet {
    width: 28px;
    height: 8px;
    background: rgba(142, 159, 192, 0.8);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.us-slider-bullet:hover {
    background: rgba(142, 159, 192, 1);
    transform: scale(1.1);
}

.us-slider-bullet.active {
    background: #ea272f;
}

/* Typography Helpers */
.banner-main-heading {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 39.08px;
    line-height: 39.08px;
    background: #ea272f;
    color: #ffffff;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.banner-subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 33.07px;
    line-height: 39.08px;
    color: #ffffff;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .us-slider-container {
        max-width: 100%;
        padding: 0 30px;
    }

    .us-slider-content {
        max-width: 500px;
    }

    .banner-main-heading {
        font-size: 32px;
        line-height: 32px;
        padding: 8px 16px;
    }

    .banner-subheading {
        font-size: 27px;
        line-height: 34px;
    }
}

@media (max-width: 768px) {
    .us-slider-content {
        max-width: 100%;
        text-align: center;
    }

    .banner-main-heading {
        font-size: 28px;
        line-height: 28px;
        padding: 8px 16px;
        display: block;
        margin-bottom: 15px;
    }

    .banner-subheading {
        font-size: 22px;
        line-height: 28px;
    }

    .us-slider-controls {
        bottom: 20px;
    }

    .us-slider-bullet {
        width: 28px;
        height: 8px;
    }

    .us-slider-bullet.active {
        width: 35px;
    }
}

@media (max-width: 480px) {
    .us-slider-container {
        padding: 0 15px;
    }

    .banner-main-heading {
        font-size: 10px;
        line-height: 24px;
        padding: 0px 6px;
        margin-bottom: 5px;
    }

    .banner-subheading {
        font-size: 7px;
        line-height: 9px;
    }

    .us-slider-bullets {
        gap: 5px;
    }

    .us-slider-bullet {
        width: 22px;
        height: 6px;
    }

    .us-slider-bullet.active {
        width: 28px;
    }

    .us-slider-controls {
        bottom: 15px;
    }
}

/* Extra small mobile portrait (iPhone SE, etc.) */
@media (max-width: 375px) and (orientation: portrait) {
    .us-slider-container {
        padding: 0 12px;
    }

    .banner-main-heading {
        font-size: 10px;
        line-height: 24px;
        padding: 0px 6px;
        margin-bottom: 8px;
    }

    .banner-subheading {
        font-size: 13px;
        line-height: 18px;
    }

    .us-slider-controls {
        bottom: 12px;
    }

    .us-slider-bullet {
        width: 20px;
        height: 5px;
    }

    .us-slider-bullet.active {
        width: 25px;
    }
}
