* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

:root {
    --green: #3ba744;
}

header {}

header .top-header {
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
    padding: 1rem 5rem;
    color: #B3B3B3;
    font-size: 16px;
    z-index: 10;
}

header .top-header div {
    display: flex;
    gap: 1rem;
}

header .top-header div span {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .top-header ul {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

header .top-header a {
    text-decoration: none;
}

header .top-header ul li {
    list-style: none;
    padding: 0 .8rem;
}

header .top-header ul li a {
    color: #B3B3B3;
}

header .top-header ul li a i {
    font-size: 19px;
}


header .top-header a.top-header-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--green);
    color: white;
    width: 150px;
    height: 35px;
    border-radius: 5px;
}

header nav {
    margin: 1rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 11;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

header nav .nav-menu {
    display: flex;
    align-items: center;
}

header nav .nav-menu li {
    list-style: none;
    padding: 0 1rem;
}

header nav .nav-menu li a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    transition: color 0.3s;
    position: relative;
}

header nav .nav-menu li a:hover {
    color: var(--green);
}

header nav .nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--green);
    transition: all 0.3s;
    transform: translateX(-50%);
}

header nav .nav-menu li a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)), url('./img/2025-08-10.webp') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 86vh;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 5rem;
}

.hero h1 {
    width: 450px;
}

.hero a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 200px;
    height: 50px;
    background: white;
    color: var(--green);
    text-decoration: none;
    margin-top: 2rem;
    font-size: 22px;
}

.welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem 10rem;
    gap: 5rem;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.welcome h2 {
    font-size: 35px;
    font-weight: 600;
}

.welcome h2 span {
    color: var(--green)
}

.welcome .signature {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 10px;
}

.welcome .signature h5 {
    font-weight: 400;
    font-size: 20px;
}

.welcome .signature span {
    color: #B3B3B3;
}

.welcome .lines {
    margin-bottom: 10px;
}

.welcome img {
    width: 100%;
}


.lines {
    width: 80px;
    position: relative;
    display: block;
    height: 5px;
    margin: 5px 0 0;
}

.lines:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 1px;
    background: var(--green);
    content: "";
}

.lines:after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 1px;
    background: var(--green);
    content: "";
}

.comments {
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 10rem;
}

.comments h2 {
    font-size: 40px;
    font-weight: 500;
}

.comments hr {
    border: 1px solid #3ba744;
    width: 400px;
}


.comments .testimonials {
    width: 85%;
}

.testimonials .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    padding: 1rem 2rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin: 5rem 1rem 1rem 1rem;
    gap: 1rem;
    min-height: 300px;
}

.testimonials .item h4 {
    font-weight: 500;
    font-size: 19px;
}

.testimonials .item hr {
    border-bottom: .3px solid #3ba744;
    opacity: .3;
    width: 100%;
}

.testimonials .item .veh {
    display: flex;
    align-items: center;
    gap: 1rem;
    align-self: flex-end;
}

.testimonials .item .veh img {
    width: 30px;
}

.comments-nav {
    display: flex;
    gap: 3rem;
}

.comments-prev,
.comments-next {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    background-color: #3ba744;
    color: white;
    border-radius: 100px;
    width: 50px;
    height: 50px;
}

.services-container {
    display: flex;
    margin: 10rem 10rem;
    flex-direction: column;
    align-items: center;
}

.services-container h2 {
    font-size: 40px;
    font-weight: 500;
}

.services-container hr {
    border: 1px solid #3ba744;
    width: 400px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
}

.services .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.services .item p {
    width: 300px;
    color: #848484;
}

.services .item h3 {
    color: #343434;
    font-weight: 600;
}



/* Contact CTA Section */
.cta {
    background: linear-gradient(rgba(59, 167, 68, 0.9),
            rgba(59, 167, 68, 0.8)), url('./img/heroimage.jpg') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta h2 {
    font-size: 48px;
    font-weight: 700;
}

.cta p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10rem 10rem;
}

.contact-container h2 {
    font-size: 40px;
    font-weight: 500;
}

.contact-container hr {
    border: 1px solid #3ba744;
    width: 400px;
}

.contact-cards {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
}

.contact-cards .column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    height: 180px;
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-top: 3rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding-top: 3rem;
}

.footer-content {
    margin: 0 10rem;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 18px;
    color: var(--green);
}

.footer-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background: #2e8f36;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--green);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    color: var(--green);
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
}

.footer-contact-item span {
    color: #ccc;
    line-height: 1.5;
}

.footer-contact-item a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
    background: #111;
}

.footer-bottom-content {
    margin: 0 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
}

.footer-bottom-content a {
    color: var(--green);
    text-decoration: none;
}

.footer-bottom-content a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    .top-header {
        padding: 1rem 2rem !important;
    }

    header nav {
        margin: 1rem 2rem !important;
    }

    .hero {
        padding: 0 2rem !important;
    }

    .welcome,
    .services-container,
    .contact-container {
        margin: 5rem 2rem !important;
    }

    .comments .testimonials {
        width: 100% !important;
    }

    .footer-content,
    .footer-bottom-content {
        margin: 0 2rem !important;
        padding-bottom: 2rem;
    }
}

@media screen and (max-width: 1150px) {
    .welcome {
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center;
    }

    .welcome-content {
        align-items: center !important;
    }
}

@media screen and (max-width: 1050px) {
    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 2rem;
    }

    .footer-content .social-links {
        justify-content: center !important;
    }

    .footer-content .footer-contact {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 900px) {
    .hamburger-menu {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.5s;
        z-index: -1;
        padding: 2rem 0;
    }

    .nav-menu.active {
        top: 135px;
    }

    .nav-menu li {
        padding: 1rem 0 !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        font-size: 18px !important;
        display: block;
        padding: 1rem;
    }

    header .top-header div:last-child {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .contact-cards {
        flex-wrap: wrap !important;
    }
}

@media screen and (max-width: 600px) {
    .hero h1 {
        width: 100% !important;
        font-size: 28px !important;
    }
    .top-header {
        justify-content: center !important;
        font-size: 13px !important;
    }
    
}

@media screen and (max-width: 550px) {
    .footer-bottom-content {
        flex-direction: column !important;
        gap: 1rem;
        text-align: center;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 500px) {
    hr {
        width: 250px !important;
    }
}

@media screen and (max-width: 450px) {
    .top-header div span:last-child {
        display: none !important;
    }
}