* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #222;
    line-height: 1.6;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10%;
    background: rgba(0,0,0,0.3);
}

nav h1 {
    color: white;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: linear-gradient(to right, #0f4fa8, #1fa2ff);
    color: white;
    min-height: 100vh;
}

.hero-content {
    text-align: center;
    padding: 120px 10%;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 800px;
    margin: auto;
    font-size: 1.2rem;
}

.hero-buttons {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    background: white;
    color: #0f4fa8;
    padding: 14px 30px;
    margin: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

section {
    padding: 80px 10%;
}

.about h2,
.services h2,
.jobs h2,
.hours h2,
footer h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}
.quote-section {
    padding: 80px 10%;
    background: #eef4ff;
}

.quote-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #0f4fa8;
}

.quote-section form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.about p,
.jobs p {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card h3 {
    color: #0f4fa8;
    font-size: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #0f4fa8;
}
form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

input,
textarea,
select {
    width: 100%;
}

textarea {
    grid-column: span 2;
    min-height: 150px;
    resize: vertical;
}

button {
    grid-column: span 2;
}

button:hover {
    background: #08397c;
}

.hours-box {
    background: white;
    max-width: 500px;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

footer p {
    margin: 10px 0;
}

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

}
