body {
    font-family: 'Inter', Arial, sans-serif;
    background: #1B3556;
    color: #fff;
    margin: 0;
    padding: 0;
}
nav {
    background: #178CA4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
}
nav img.nav-logo {
    height: 42px;
}
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}
nav ul li a {
    color: #fff;
    padding: 0 16px;
    text-decoration: none;
    font-weight: 600;
}
nav ul li a:hover {
    color: #2AE085;
}
.hero {
    background: linear-gradient(135deg, #178CA4 60%, #51C4D3 100%);
    padding: 80px 0 40px 0;
    text-align: center;
}
.cta-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 12px 28px;
    background: #2AE085;
    color: #1B3556;
    border: none;
    border-radius: 28px;
    font-weight: 700;
    text-decoration: none;
}
.service-section, .capabilities-section, .metrics, .testimonials, .about-vision, .about-values, .leadership, .why-choose-us, .contact-section {
    max-width: 900px;
    margin: 48px auto;
    padding: 0 18px;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.service-card {
    background: #142243;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 14px rgba(23,140,164,0.14);
}
.capabilities-icons {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
    margin-bottom: 18px;
}
.badge-row span.badge {
    display: inline-block;
    background: #51C4D3;
    color: #1B3556;
    padding: 4px 14px;
    border-radius: 8px;
    margin-right: 10px;
    font-weight: 600;
}
.metrics ul, .about-values ul, .leadership ul, .why-choose-us ul {
    list-style: none;
    padding: 0;
}
.metrics ul li, .about-values ul li, .leadership ul li, .why-choose-us ul li {
    margin-bottom: 8px;
    font-size: 1.1em;
}
.testimonials {
    display: flex;
    gap: 28px;
}
.testimonial-card {
    background: #142243;
    border-radius: 14px;
    padding: 24px;
    max-width: 300px;
    box-shadow: 0 2px 14px rgba(23,140,164,0.09);
}
.social-links {
    margin: 24px 0 8px 0;
    display: flex;
    gap: 14px;
    justify-content: center;
}
.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}
footer {
    background: #142243;
    text-align: center;
    color: #51C4D3;
    padding: 24px 0;
    margin-top: 48px;
}
input, textarea, button {
    font-family: inherit;
    width: 100%;
    max-width: 400px;
    margin-bottom: 18px;
    padding: 9px;
    border-radius: 6px;
    border: 1px solid #178CA4;
    background: #212F46;
    color: #fff;
}
button[type="submit"] {
    background: #2AE085;
    color: #1B3556;
    font-weight: 700;
    cursor: pointer;
}
@media (max-width: 700px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
