* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #003087;
    color: white;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.4rem;
}

.logo img {
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

.hero {
    background: linear-gradient(rgba(0, 48, 135, 0.8), rgba(0, 48, 135, 0.8)), url('logo.jpeg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #00a651;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 2rem;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #008c44;
    transform: scale(1.05);
}

.services-preview, .about-section, .services-page, .contact-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

h2, h1 {
    color: #003087;
    text-align: center;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: #00a651;
    margin-bottom: 1rem;
}

.view-more {
    display: block;
    text-align: center;
    margin-top: 3rem;
    color: #003087;
    font-weight: bold;
}

footer {
    background: #003087;
    color: white;
    text-align: center;
    padding: 2rem;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

button {
    background: #00a651;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
}

button:hover {
    background: #008c44;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        height: 100vh;
        width: 100%;
        background: #003087;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 4rem;
        transition: 0.4s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}