:root {
    --primary: #1e3a8a; /* slate-900 style blue */
    --accent: #60a5fa;  /* blue-400 */
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', sans-serif;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 1rem 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#navbar.scrolled .text-slate-700 {
    color: #1e293b;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #1e3a8a;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1e293b;
}

/* Animations */
.faq-content {
    transition: all 0.3s ease-out;
}

.faq-item button i.rotate-45 {
    transform: rotate(45deg);
}

/* Force text visibility */
body {
    color: #0f172a !important;
    background-color: #ffffff !important;
}

h1, h2, h3, h4, h5, h6, p, span, div, a, li, section, article, header, footer, nav {
    color: #0f172a !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure hero section text is visible */
#home {
    color: white !important;
}

#home h1, #home p, #home span {
    color: white !important;
}

/* Ensure all sections have proper contrast */
#services, #about, #contact, footer {
    background-color: #f8fafc !important;
}

/* Mobile Menu */
#mobile-nav {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-nav.active {
    transform: translateX(0);
}

.service-card {
    perspective: 1000px;
}