* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background: #0a3d62;
    color: #fff;
    padding: 15px 0;
}

.logo {
    float: left;
}

nav {
    float: right;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline-block;
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header::after {
    content: "";
    display: block;
    clear: both;
}

/* Hero Section */
.hero {
    background: #f1f2f6;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    margin-bottom: 15px;
    color: #0a3d62;
}

.hero p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 25px;
}

.btn {
    background: #0a3d62;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
}

/* Services */
.services {
    padding: 50px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
}

.service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #eaeaea;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
}

/* Footer */
footer {
    background: #0a3d62;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}
/* Why Us */
.why-us {
    background: #f8f9fa;
    padding: 50px 0;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 30px;
}

.why-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.why-card {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
}

/* Clients */
.clients {
    padding: 50px 0;
    text-align: center;
}

/* Highlights */
.highlights {
    background: #f1f2f6;
    padding: 50px 0;
}

.highlight-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

.highlight-card h3 {
    margin-bottom: 10px;
    color: #0a3d62;
}

/* CTA */
.cta {
    background: #0a3d62;
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
}

.cta .btn {
    background: #ffffff;
    color: #0a3d62;
    margin-top: 15px;
    display: inline-block;
}
/* Page Banner */
.page-banner {
    background: #0a3d62;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.page-banner p {
    margin-top: 10px;
}

/* About Content */
.about-content {
    padding: 50px 0;
}

.about-content h3 {
    color: #0a3d62;
    margin-bottom: 10px;
    margin-top: 25px;
}

.about-content p {
    line-height: 1.6;
}

.about-list {
    margin-top: 15px;
    padding-left: 20px;
}

.about-list li {
    margin-bottom: 8px;
}

/* Active Menu */
.nav-links .active {
    border-bottom: 2px solid #ffffff;
}
/* Services Page */
.services-page {
    padding: 50px 0;
}

.service-item {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid #0a3d62;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.service-item h3 {
    color: #0a3d62;
    margin-bottom: 10px;
}

.service-item p {
    line-height: 1.6;
}
/* Contact Page */
.contact-page {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #0a3d62;
    color: #fff;
    padding: 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}