/* General */
body {
    font-family: 'Figtree', sans-serif;
    margin: 0;
    color: #333;
}

/* Header */
header {
    background: #004a7c;
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
}
.logo img {
    height: 50px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}
nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
}

/* Section Backgrounds */
.alt-bg {
    background: #f7f9fc;
}

/* Services */
#services {
    padding: 3rem 1rem;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card h3 {
    margin: 1rem 0;
}

/* Testimonials */
#testimonials {
    padding: 3rem 1rem;
    max-width: 700px;
    margin: auto;
}
blockquote {
    font-style: italic;
    border-left: 4px solid #004a7c;
    padding-left: 1rem;
    margin-bottom: 2rem;
    color: #555;
}
cite {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #333;
}

/* About */
#about {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: auto;
}

/* Contact */
#contact {
    padding: 3rem 1rem;
    max-width: 600px;
    margin: auto;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
input,
textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Figtree', sans-serif;
}
button {
    background: #004a7c;
    color: white;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background: #006bb3;
}

/* Footer */
footer {
    background: #004a7c;
    color: white;
    text-align: center;
    padding: 1rem 2rem;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 600px) {
    nav ul {
        gap: 1rem;
    }
}