/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

/* Header Scroll Effect (Custom since Tailwind needs js for dynamic class toggling generally) */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Mobile Nav Styles override for Tailwind hidden logic logic */
@media (max-width: 768px) {
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        z-index: 50;
    }
}
