/* Base Styles */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Roboto', sans-serif; }

/* Header */
header {
    background-color: #001F3F; /* Navy for rest of page */
}

/* Header */
.header-top {
    display: flex;
    flex-direction: column;   /* stack logo on top of nav */
    align-items: center;      /* center horizontally */
    background-color: #ffffff;
    padding: 0;               /* remove padding */
    margin: 0;                /* ensure no spacing */
}

/* Logo */
.logo {
    height: 220px;   /* make bigger (adjust as needed) */
    width: auto;
    display: block;
    margin: 0 auto;  /* center the image */
}
/* Navigation */
nav {
    display: flex;
    gap: 20px; /* space between links */
}

nav a {
    text-decoration: none;
    color: #000080; /* navy */
    font-weight: 500;
    font-size: 16px;
}

nav a:hover {
    color: #1A237E; /* modern navy hover */
}

/* Body & Hero */
body {
    background-color: #001f3f; /* Navy page background */
    color: #000000;
}

#hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(to right, #e6f0ff, #ffffff);
}

.hero-content h2{
    font-size: 24px;
    color:  #001F3F;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
    color: #001F3F;
    margin-bottom: 30px;
}

.cta-button {
    background: #0d6efd;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    background: #0056b3;
}

/* Services Section */
#services {
    padding: 80px 20px;
    text-align: center;
}

#services h2 {
    color: #0d6efd;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #ffffff;
    color: #001f3f;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Contact Section */
#contact {
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

/* Footer */
footer {
    background-color: #001f3f;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: center;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin: 8px 10px;
    }
}
