* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-bg-color: #F5F4F0;
    --main-logo-color: #2A2A2A;
    --main-menu-color: #cd6b08;
    --main-line-color: #C7BEB8;
    --main-text-color: #6B6B6B;
    --main-slider-color: #0c5c40;
}


body {
     font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    font-size: 1em;
    color: var(--main-text-color);
    background-color: var(--main-bg-color);
    scroll-behavior: smooth;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    /* letter-spacing: 0.15rem; */
}

h1,
h2,
h3 {
    margin-bottom: 1rem;
}

h2 {
    color: #004085;
    /* Professional blue */
    text-align: center;
    margin-bottom: 2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-padded {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.bg-light {
    background-color: #f4f7f9;
}

/* --- Navigation Bar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--main-logo-color);
    /* Navy Blue */
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    margin-left: 20px;
    padding: 5px 10px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--main-menu-color);
    /* Light blue on hover */
}

/* Mobile Nav (Burger Menu) styles are in the JS section of CSS below */

/* --- Hero Section --- */
.hero {
    background: linear-gradient(to left, #0c5c40, #066b3c);
    color: white;
    padding: 100px 5%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}
.price{
    font-size: 33px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--main-menu-color);
    /* Success Green */
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: rgb(212, 138, 41);
}

/* --- Services Section --- */
.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.reverse>.service-card {
    background:var(--main-slider-color);
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    /* Allows cards to grow/shrink but maintain a minimum width */
    text-align: center;
    transition: transform 0.3s;
}
.reverse h3{
    color: white !important;
    font-size: 33px;
}
.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 400px;
    /* Allows cards to grow/shrink but maintain a minimum width */
    text-align: left;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #004085;
}

/* --- Contact Section & Form --- */
#contactForm {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#contactForm label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

#contactForm input,
#contactForm textarea {
    padding: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

#formStatus {
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 5%;
}

/* --- Mobile Responsiveness (using CSS for structure, JS for toggle logic) --- */

.burger {
    display: none;
    /* Hide burger menu on desktop */
    background: none;
    border: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0px;
        height: 90vh;
        top: 60px;
        /* Adjust based on navbar height */
        background-color: #004085;
        display: flex;
        flex-direction: column;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 2rem;
    }

    .nav-links li {
        opacity: 0;
        margin: 15px 0;
        text-align: center;
    }

    .burger {
        display: block;
    }

    /* Classes added by JavaScript */
    .nav-active {
        transform: translateX(0%);
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}