/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,35,102,0.8), rgba(0,35,102,0.8)), 
                url('../images/hero-bg.jpg');
    background-size: cover;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services Grid */
.services-section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    height: 100px;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .header {
        flex-direction: row;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}