/* Custom Styles for qvariate */

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

/* Custom Colors */
.bg-navy { 
    background-color: #0f172a; 
}

.text-teal { 
    color: #2dd4bf; 
}

.bg-teal { 
    background-color: #2dd4bf; 
}

.bg-teal-soft {
    background-color: rgba(45, 212, 191, 0.1);
}

.hover-bg-teal:hover { 
    background-color: #0d9488; 
}

.border-teal { 
    border-color: #2dd4bf; 
}

.text-navy {
    color: #0f172a;
}

.border-navy {
    border-color: #0f172a;
}

/* Pattern Background for Hero */
.pattern-bg {
    background-image: radial-gradient(circle at 2px 2px, #2dd4bf 1px, transparent 0);
    background-size: 40px 40px;
}

/* Transitions and Animations */
.transition-all {
    transition: all 0.3s ease;
}

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