/* Slider Container */
.home-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Slides Wrapper */
.slider-wrapper {
    display: flex;
    width: 300%;
    /* 3 slides */
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Individual Slide */
.slide {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    position: relative;
}

/* Slide Content */
.slide-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
}

.slide-title {
    /* font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards 0.2s; */

    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: black;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards 0.2s;
    font-family: raleway;
    font-weight: 300;
}

.slide-image {
    max-height: 40vh;
    /* Responsive height */
    width: auto;
    margin: 2rem 0;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    animation: zoomIn 0.8s forwards 0.4s;
}

.slide-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #757575;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards 0.6s;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navigation Controls */
.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

/* Dots */
.slider-dots {
    display: flex;
    gap: 0.75rem;
    pointer-events: auto;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #a4d7ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #60a5fa;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    cursor: pointer;
    font-size: 2rem;
    color: black;
    transition: all 0.3s ease;
    pointer-events: auto;
    background: none;
    border: none;
    z-index: 20;
}

.nav-arrow:hover {
    color: black;
    transform: scale(1.1);
}

.nav-prev {
    left: 2rem;
}

.nav-next {
    right: 2rem;
}

.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

/* Start Button */
.btn-start {
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.8s;
    background: #4040ed;
    color: white;
    padding: 7px 16px;
    border: 0;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }

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