/* Header */
.header {
    background: #002B5B; /* No background image */
    color: white;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for separation */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header .logo {
    font-size: 2rem;
    font-weight: bold;
}

.header .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.header .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 15px;
    transition: background 0.3s ease, border-radius 0.3s ease; /* Smooth hover effect */
}

.header .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1); /* Subtle hover effect */
    border-radius: 5px;
}

.header .nav-links .active {
    border-bottom: 2px solid #FF7A00; /* Indicate active page */
}


/* Services Page Hero Section */
.services-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 60vh;
    padding: 20px;
    background: linear-gradient(to right, #002B5B, #005FA8);
    color: #ffffff;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.8;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Services Page Main Section */
.services-section {
    background-color: #f2f2f2;
    padding: 50px 20px;
    color: #333;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 30px;
}

.service-item {
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #ff9900;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Footer Styling */
footer {
    background-color: #003366;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
    margin: 0;
}

