.landingSection {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
}



.landing-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #000;     overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide-bg img,
.slide-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65) saturate(1.1);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-bg img,
.slide.active .slide-bg video {
    transform: scale(1.04);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(6px);
    margin-top: 100px;
}

.slide-badge {
    display: inline-block;
    background: #f8f9fa;
    color: #343a40;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.slide-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
    font-family: 'Montserrat', sans-serif;
}

.slide-title .highlight {
    color: #00bed5;
}

.slide-description {
    font-size: 20px;
    color: #f1f1f1;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.slide-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    justify-content: center;
}

.slide-stat {
    text-align: center;
}

.slide-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 4px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.slide-stat-label {
    font-size: 12px;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.slide-btn {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 1px solid;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    min-width: 140px;
    letter-spacing: 0.2px;
}

.slide-btn-primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.slide-btn-primary:hover {
    background: #00bed5;
    color: #fff;
    border-color: #00bed5;
}

.slide-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.slide-btn-secondary:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.slide-video {
    position: relative;
}

.slide-video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f04b';
    color: white;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.slide-video:hover::before {
    opacity: 1;
}

.slide-video video {
    cursor: pointer;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.slider-dot.active {
    background: #000000;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: #000000;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    color: #000000;
    font-size: 14px;
    backdrop-filter: blur(10px);
    opacity: 0.8;
}

.slider-arrow:hover {
    background: #000000;
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .slide-content {
        gap: 60px;
        padding: 40px 20px;
        
    }
    
    .slide-title {
        font-size: 44px;
    }
    
    .slide-description {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .slide-content {
        margin-top: 0;
    }
    .slide-title { font-size: 32px; }
    .slide-content { padding: 40px 10px; }
    .slide-description { font-size: 16px; }
}

@media (max-width: 768px) {
    .landingSection {
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .slide-content {
        padding: 20px 16px;
        min-height: auto;
    }
    
    .slide-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .slide-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .slide-stats {
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .slide-stat-number {
        font-size: 24px;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .slide-btn {
        width: 100%;
        max-width: 250px;
        padding: 8px 10px;
        font-size: 12px;
        min-width: auto;
    }

    .slide-btn i {
        font-size: 12px !important;
        margin-right: 4px;
        margin-left: 0;
        line-height: 1;
        vertical-align: middle;
    }


    
    .slider-nav {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot i {
        font-size: 9px;
        line-height: 1;
    }
}


@media (max-width: 600px) {
    .slide-content {
        padding: 20px 2vw;
        border-radius: 10px;
        min-height: 180px;
        height: auto;
        justify-content: flex-start;
    }

    .slider-arrow {
        top: 65%;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .slide-stats {
        gap: 16px;
    }
    
    .slide-stat-number {
        font-size: 20px;
    }
    
    .slide-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .slide-btn {
        font-size: 8.5px;
        padding: 3px 4px;
        min-width: 40px;
        max-width: 80px;
        height: 26px;
        border-radius: 14px;
    }
    .slide-btn i {
        font-size: 11px !important;
    }
    .slide-content {
        min-height: 120px;
        padding: 3px 1vw;
    }
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.slider-progress-bar {
    height: 100%;
    background: #000000;
    width: 0%;
    transition: width 0.1s linear;
    transform: translateZ(0);
    will-change: width;
}

.slider-control {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    color: #000000;
    font-size: 12px;
    backdrop-filter: blur(10px);
    opacity: 0.8;
}

.slider-control:hover {
    background: #000000;
    color: white;
    transform: scale(1.05);
    opacity: 1;
}

@media (max-width: 768px) {
    .slider-control {
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
}
