/* NextGen Infosystems Custom Style Enhancements */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #1e4976;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00b4d8;
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Glowing Elements */
.glow-cyan {
    box-shadow: 0 0 25px rgba(0, 180, 216, 0.25);
}

.glow-orange {
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.25);
}

/* Hero Badge Pulse */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 180, 216, 0);
    }
}

.pulse-glow {
    animation: pulseGlow 2.5s infinite;
}

/* Animation for Modal fade-in */
#solutionModal:not(.hidden) {
    animation: fadeIn 0.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Nav Transitions */
#mobileMenu {
    transition: all 0.3s ease-in-out;
}
