/* Section Navigation Buttons */
.section-nav-buttons {
    position: fixed;
    bottom: 30px;
    right: 50px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.section-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-nav-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.section-nav-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.section-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;

}

.section-nav-btn:disabled:hover {

    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Hide the old scroll-to-top button */
.scroll-top-btn {
    display: none !important;
}

.section-content {
    text-align: center;
    max-width: 800px;
}

.section-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-nav-buttons {
        bottom: 20px;
        right: 20px;
    }

    .section-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}