.hero-slider-container-3b01f80f {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 500px; /* Overridden by inline styles if set */
    border-radius: 8px;
    background: #000;
}
.hero-slider-3b01f80f {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-track-3b01f80f {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide-3b01f80f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}
.hero-slide-3b01f80f.active {
    opacity: 1;
    z-index: 2;
}
.hero-bg-3b01f80f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.hero-bg-3b01f80f img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay-3b01f80f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}
.hero-content-3b01f80f {
    position: relative;
    z-index: 3;
    padding: 20px;
    color: #fff;
    max-width: 800px;
}
.hero-badge-3b01f80f {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 15px;
    font-weight: bold;
}
.hero-headline-3b01f80f {
    font-size: 42px;
    margin: 0 0 15px;
    color: #fff;
}
.hero-subtext-3b01f80f {
    font-size: 18px;
    margin: 0 0 25px;
}
.hero-btn-3b01f80f {
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.3s;
}
.hero-btn-3b01f80f:hover {
    opacity: 0.9;
    color: #fff;
}
.hero-nav-3b01f80f {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-nav-3b01f80f svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.hero-nav-3b01f80f:hover {
    background: rgba(0,0,0,0.8);
}
.hero-nav-3b01f80f.prev {
    left: 20px;
}
.hero-nav-3b01f80f.next {
    right: 20px;
}