body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.navbar-navgation {
    width: 100%;
    background: rgba(34, 207, 255, 0.95);
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
}


.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}


.page {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 0.5s ease-out;
}


.page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}


.hero-section .content-box {
    color: #fff;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out forwards;
}

.main-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ff9a9e, #fecfef);
    background-clip: text;
    color: transparent;
}

.sub-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.scroll-hint {
    margin-top: 50px;
    font-size: 1rem;
    animation: bounce 2s infinite;
}


.char-section {
    display: flex;
    justify-content: space-around;
    padding: 0 10%;
}

.char-container {
    z-index: 1;
    flex: 1;
    display: flex;
    justify-content: center;
}

.char-img {
    height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));

}

.info-box {
    z-index: 1;
    flex: 1;
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-self: center;
}

.info-box h2 {
    margin-top: 0;
    color: #ff9a9e;
}

.badge {
    background-color: #ff6b6b;
    font-size: 1rem;
    margin-bottom: 15px;
    padding: 8px 12px;
}

.info-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
}


.reverse {
    flex-direction: row-reverse;
}


.footer-section .content-box {
    z-index: 1;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 20px;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

