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

body {
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at left, rgba(6, 82, 34, 1), rgba(0, 0, 0, 1));
    color: white;
    /* color: #333; */
    line-height: 1.6;
}

.container {
    padding: 20px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
}

header {
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #dd7100;
}

.hero {
    padding: 75px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: white;
    margin-bottom: 40px;
    padding-left: 25px;
    padding-right: 25px;
}

.cta-button {
    background-color: #dd7100;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.contact {
    padding: 75px 0;
    text-align: center;
    font-size: 28px;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(25% - 60px);
    padding: 25px;
    margin: 10px;
}

.service-card h3 {
    font-size: 16px;
    color: #065222;
    text-align: center;
}

.service-card p {
    font-size: 18px;
    color: #555;
    text-align: justify;
    max-width: 90%;
}


.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.contact label {
    font-size: 18px;
    color: #ccc;
}

.contact input,
.contact textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact button {
    align-self: center;
}

footer {
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

footer p {
    font-size: 12px;
}


@media screen and (max-width: 900px) {
    .container {
        gap: 15px;
        max-width: 600px;
    }

    .service-card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 480px) {
    .container {
        gap: 10px;
        max-width: 320px;
    }

    .service-card {
        flex: 1 1 100%; /* 1 item per row */
    }
}
