.hero-banner-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-banner-slider-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 10%;
    max-width: 800px;
}

.hero-banner-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-banner-description {
    color: #f0f0f0;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-banner-button {
    display: inline-flex;
    align-items: center;
    background-color: #2b56a9;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hero-banner-button:hover {
    background-color: #1e3f80;
    color: #ffffff;
}

.hero-banner-button i {
    margin-left: 10px;
}

/* Bottom Controls */
.hero-banner-bottom-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.hero-banner-dots {
    display: flex;
    gap: 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hero-banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s ease;
}

.hero-banner-dot.active {
    background: #ffffff;
}

.hero-banner-fraction-nav {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 5px 15px;
    margin-left: auto; /* Push to right */
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero-banner-fraction {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.hero-banner-fraction-nav button {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: color 0.3s;
}

.hero-banner-fraction-nav button:hover {
    color: #2b56a9;
}

@media (max-width: 768px) {
    .hero-banner-title {
        font-size: 32px;
    }
    .hero-banner-description {
        font-size: 16px;
    }
    .hero-banner-dots {
        position: static;
        transform: none;
        margin: 0 auto;
    }
    .hero-banner-bottom-controls {
        flex-direction: column;
        gap: 20px;
        bottom: 15px;
    }
    .hero-banner-fraction-nav {
        margin: 0 auto;
    }
}
