/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1.08); /* Cinematic Zoom */
}

.hero-slider .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    animation: fadeUp 1s ease;
}

.hero-content h1 {
    color: #3f9fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e60000;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #000;
    color: #fff;
}

.slider-nav span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    z-index: 5;
}

.slider-nav .prev { left: 20px; }
.slider-nav .next { right: 20px; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}
/* SCROLL DOWN INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        top: 10px;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        top: 25px;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
    }
}

 /* ----- Mobile Hamburger ----- */ 
@media (max-width: 991px){
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.admission-mobile {
    display: none;
}

@media (max-width: 991px) {

    .admission-mobile {
        display: block;
        position: relative;
        width: 100%;
        height: auto;
        text-align: center;
        margin-top: 30px;
        padding: 20px;
        left: 0;
        bottom: 0;
    }

    .admission-mobile .btn_1 {
        display: inline-block;
        width :100%;
        padding: 12px 30px;
        background: #3f9fff;
        color: #fff;
        border-radius: 30px;
        text-decoration: none;
        transition: 0.3s;
    }

    .admission-mobile .btn_1:hover {
        background: #000;
        color: #fff;
    }
}
