
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #111;
    color: #fff;
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #00274D;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
}

.logo {
    width: 120px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-links li a:hover {
    color: #FF9900;
}

/* Hero Section */
.hero-section {
    height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    padding: 10px 20px;
    background-color: #FF9900;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #cc7a00;
}

/* Services Section */
.services-overview {
    padding: 50px 10%;
    background-color: #222;
    text-align: center;
}

.services-overview h2 {
    margin-bottom: 30px;
    color: #fff;
}

.services-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    max-width: 300px;
    background: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    color: #fff;
}

.service-item img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.service-item h3 {
    color: #FF9900;
    margin: 15px 0;
}

/* Footer */
.footer {
    background: #00274D;
    color: #fff;
    text-align: center;
    padding: 20px;
}
