/* Global styles */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation - ensure it stays on top when zoomed */
nav {
    position: relative;
    z-index: 1000;
}

.section-padding {
    padding: 4rem 0;
}

.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(10, 35, 66, 0.8);
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-in;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-study-card {
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: scale(1.02);
}

.naics-code-item {
    border-left: 3px solid #1e88e5;
}

.btn-primary {
    background-color: #0a2342;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a4a73;
}

.btn-outline {
    border: 2px solid #0a2342;
    color: #0a2342;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #0a2342;
    color: white;
}

/* Container styles */
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 2rem 0;
    }
}