body {
    max-width: 100vw;
    background-color: var(--color4);
}

#nav-home {
    color: var(--color1) !important;
}

.home-section-1 {
    max-height: 100vh;
    width: 100%;
    padding-top: 90px;
}

.slider {
    position: relative;
    max-height: calc(100vh - 90px);
    width: 100%;
    overflow: hidden;
    background-color: var(--color4);
}

.slides img {
    display: none;
    width: 100%;
    height: 100%;
    animation: fade 1s ease-in-out;
}

.slides img.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.nav-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    user-select: none;
    margin: 0 50px;
}

.indicators {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.indicator {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid var(--bordercolor1);
}

.indicator.active {
    background-color: white;
    border-color: rgba(0, 0, 0, 0.5);
}





.admission-home {
    height: calc(100vh - 90px);
    width: 100%;
    color: #fdfffc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 0 20px;
}

.admission-home>#p1 {
    font-size: 45px;
    font-weight: 500;
    text-align: center;
}

.admission-home>#p2 {
    font-size: 20px;
    text-align: center;
}

.admission-home>button {
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 30px;
    color: #fdfffc;
    background-color: var(--color1);
    font-size: 20px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
}

.admission-home>button:hover {
    background-color: var(--color2);
}

.home-section-2,
.home-section-3 {
    min-height: 700px;
    width: 100%;
    background-color: var(--color4);
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-evenly;
    color: var(--color3);
    align-items: center;
    padding: 50px;
}

.home-section-3 {
    min-height: 600px;
}

.features-heading,
.statistics-heading {
    max-width: 500px;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.features-heading>p,
.statistics-heading>p {
    font-size: 20px;
    text-align: center;
}

.features-heading>span,
.statistics-heading>span {
    font-size: 45px;
    font-weight: 500;
    text-align: center;
}

.features-list,
.statistics-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.statistics-list {
    gap: 10px;
}

.feature,
.statistic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.5s;
    text-align: center;
    transition: all 0.5s;
}

.feature {
    height: 250px;
    width: 250px;
    gap: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bordercolor1);
}

.statistic {
    height: 250px;
    width: 200px;
    gap: 10px;
}

.feature>div,
.statistic>div {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: var(--color2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature>div>i,
.statistic>div>i {
    font-size: 23px;
    color: var(--color4);
}

.feature>p {
    font-size: 23px;
    text-align: center;
    font-weight: 500;
}

.statistic>p {
    font-size: 40px;
    text-align: center;
    font-weight: 500;
}



@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.video-container-background {
    padding: 50px;
    width: 100%;
    background-color: var(--color2);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color4);
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; 
    margin: auto; 
    aspect-ratio: 16 / 9; 
    background: transparent; 
    overflow: hidden; 
    max-height: 500px; 
    border: 2px solid var(--bordercolor1);
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


