.lexcot-hero-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.lexcot-hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lexcot-slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

.lexcot-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.lexcot-slide-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.lexcot-slide-icon {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
}
.lexcot-slide-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.lexcot-slide-badge {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.lexcot-slide-heading {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 700;
}

.lexcot-slide-desc {
    font-size: clamp(16px, 2vw, 20px);
    margin: 0 auto 30px;
    max-width: 600px;
}

.lexcot-slide-btn {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lexcot-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Animations setup */
.slide-anim-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.swiper-slide-active .slide-anim-up {
    opacity: 1;
    transform: translateY(0);
}

.swiper-button-prev, .swiper-button-next {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
}

/* Timeline Navigation */
.lexcot-timeline-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 40px;
    box-sizing: border-box;
}

.lexcot-timeline-line {
    position: absolute;
    bottom: 11px; /* Align with middle of dots roughly */
    left: 40px;
    right: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    z-index: 1;
}

.lexcot-timeline-nav .swiper-pagination {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
    z-index: 2;
}

.lexcot-timeline-nav .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: rgba(255,255,255,0.5);
    margin: 0 !important;
    position: relative;
    transition: all 0.3s ease;
}

.lexcot-timeline-title {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Responsive Background handling */
@media (max-width: 767px) {
    .lexcot-hero-slide.has-mobile-bg {
        background-image: var(--mobile-bg) !important;
    }
    
    .lexcot-timeline-nav {
        display: none; /* Hide timeline on mobile for space */
    }
}