body {
    margin: 0;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
}

.slider {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
    overflow: hidden;
}

.slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% { transform: translateX(-10px) translateY(-5px); }
    100% { transform: translateX(10px) translateY(5px); }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    pointer-events: none;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding: 20px; */
    box-sizing: border-box;
    z-index: 2;
    border-radius: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: -1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.slide h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.slide p {
    font-size: 1.3rem;
    color: #475569;
    max-width: 800px;
    line-height: 1.6;
    font-weight: 400;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    z-index: 15;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.prev:hover, .next:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.prev:active, .next:active {
    transform: translateY(-50%) scale(0.98);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.prev::before {
    content: '‹';
    font-size: 1.4em;
    margin-right: 4px;
}

.next::after {
    content: '›';
    font-size: 1.4em;
    margin-left: 4px;
}

.indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 15;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.indicator.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.indicator.active::before {
    background: rgba(255, 255, 255, 0.8);
}







/* Navigation buttons responsive styles */
@media (max-width: 1025px) {
    .prev, .next {
        position: fixed;
        top: auto;
        bottom: 35px;
        transform: none;
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 25px;
        z-index: 20;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    .prev {
        left: 20px;
        right: auto;
    }

    .next {
        right: 20px;
        left: auto;
    }

    .prev:hover, .next:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    }

    .prev:active, .next:active {
        transform: scale(0.98);
    }

    /* Adjust indicators position to avoid button overlap */
    .indicators {
        top: 20px;
        bottom: unset !important;

        margin: 10px 0 30px 0;
      
    }
}





@media (max-width: 768px) {
    .slide h1 {
        font-size: 1.8rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .prev, .next {
        padding: 10px 16px;
        font-size: 0.9rem;
        bottom: 15px;
    }

    .prev {
        left: 15px;
    }

    .next {
        right: 15px;
    }

    .indicators {
        bottom: 70px;
    }
}



















