@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #0d3b2f;
    --accent-color: #33A849;
    --black-text: #1D1D1C;
    --body-text: #4e5c79;
}


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


html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 12px;
    color: var(--black-text);
    font-weight: 400;
    background: #fefefe;

}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.header {
    align-items: center;
    width: 100%;
    background: #F8F9FA;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .menu {
        flex-direction: column;
    }
}


.menu.hidden {
    transform: translateY(-100%);
}

.menu-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
}



.menu-header i {
    display: none;
    font-size: 1.2rem;
    padding: 4px 12px;
    margin-right: 8px;
    color: var(--accent-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
}


@media (max-width: 768px) {
    .menu-header i {
        display: flex;
        align-items: center;
    }
}

.menu-header img {
    height: 40px;
}

.menu-body {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;  
    width:80vw;
    justify-content: end;
}

@media (max-width: 768px) {
    .menu-body {
        flex-direction: column;
        gap: 30px;
        height: 0vh;
        overflow-y: hidden;
        justify-content: start;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .show-menu {
        height: 100vh;
        overflow-y: auto;
        padding: 80px 0px 0px 20px;
    }
}

.menu-body li {
    display: inline;
    padding-bottom: 4px;
}

.menu-body a {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;

}

.menu-body a:hover {
    color: var(--accent-color);
}


.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
    .active {
        color: var(--accent-color);
        border-bottom: none;
    }
}



.header-space {
    height: 40px;
}

.hero-wrapper {
    background: var(--primary-color);
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 0px 80px;
}

@media (max-width: 768px) {
    .hero-wrapper {
        width: 90%;
        padding: 0px 10px;
    }
}

#hero {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;

}

@media (max-width: 768px) {
    #hero {
        height: 500px;
    }
}

#hero .hero-content {
    text-align: left;
    padding: 0px 0px;
}

@media (max-width: 768px) {
    #hero .hero-content {
        padding: 0px 20px;
        width: 100%;
    }
}


#particles-js {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 400px;
    width: 100%;
    margin: 0px;
}

@media (max-width: 768px) {
    #particles-js {
        height: 500px;
        width: 100%;
    }
}

#hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    color: var(--accent-color);

}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 22px;
        line-height: 1.5;
    }
}

#hero h1 span {
    color: #fff;
}

#hero p {
    font-size: 1rem;
    line-height: 1.5;
    padding: 30px 0px;
    width: 70%;
    max-width: 1000px;
    color: #fff;

}

@media (max-width: 768px) {
    #hero p {
        width: 100%;
    }
}

#hero img {
    height: 400px;
    border-radius: 20px;

}

#hero .get-started {
    display: inline-block;
    padding: 12px 36px;
    background-color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    color: #fff;
}

.page-header {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    height: 250px;
    background: var(--primary-color);
}


.page-header-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    padding: 80px 0px 0px 0px;
    /* color: #fff; */
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 42px;
        padding: 40px 0px 0px 0px;
    }
}

.page-description {
    font-size: 1rem;
    line-height: 1.5;
    width: 60%;
    max-width: 700px;
    color: #fff;
    margin: 10px 0px 0px 0px
}

@media (max-width: 768px) {
    .page-description {
        width: 90%;
        max-width: 90%;

    }
}

.section {
    text-align: center;
    margin-top: 80px;
}

.section h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20px 0px 0px 0px;
}


@media (max-width: 768px) {
    .section h2 {
        text-align: center;
        font-size: 1.5em;
        width: 100%;
        margin: 40px 0px 0px 0px;
    }
}


.grid-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

.grid-item {
    width: 100%;
    padding: 20px;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.grid-item h3 {
    font-size: 1.5em;
    font-weight: 800;
    margin: 0px 0px 16px 0px;


}

.grid-item ul li {
    padding: 2px 0px;
}

.grid-item p {
    font-size: 0.95rem;
    margin: 6px 0px;
    line-height: 1.4;
}

.grid-item p strong {
    color: var(--accent-color);
}

.grid-item:hover p strong {
    color: #fafafa;
}


.footer-wrapper {
    background: #F8F9FA;
    margin: 0px;
    padding: 0px;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    width: 90%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 40px 0px;

}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        gap: 40px;
    }

}

footer .title {
    font-weight: 600;
    font-size: 18px;
    padding: 20px 0px;
}

footer ul {
    width: 100%;
    min-width: 300px;
}

footer ul li {
    line-height: 2;
    font-size: 0.95rem;
    transition: all ease 0.4s;
}

footer ul li a:hover {
    color: var(--accent-color);
}


footer .social {
    display: flex;
    gap: 30px;
    margin: 70px 0px 0px 0px;
}

footer .social i {
    font-size: 24px;
    color: var(--accent-color);
}

footer .links li {
    padding: 0px 0px 8px 0px
}

footer .description {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 400px;
    padding: 0px 0px 16px 0px;
}


footer input[type=submit] {
    width: 100%;
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 1rem;
    border: none;
    outline: none;
    height: 40px;
    margin: 10px 0px;
    border-radius: 6px;
    cursor: pointer;
}


.legal {
    border-top: 1px solid lightgrey;
    padding: 20px 0px;
    width: 90%;
    max-width: 1200px;
    margin: 0px auto;
}

@media (max-width: 768px) {
    .legal {
        padding: 20px 10px;
    }
}

@media (max-width: 768px) {
    .legal .copyright {
        text-align: center;
    }
}





/* WhatsApp Chat Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-button img {
    width: 25px;
    height: 25px;
}

.about-wrapper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0px 80px 0px 60px;
}

@media (max-width: 768px) {
    .about-wrapper {
        padding: 0px 0px;
    }
}




.title-large {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent-color);
    padding: 80px 0px 20px 0px;
}

@media (max-width: 768px) {
    .title-large {
        font-size: 1.25rem;
    }
}

.headline {
    font-weight: 300;
    font-size: 32px;
}

@media (max-width: 768px) {
    .headline {
        font-size: 28px;
    }
}

.body-text {
    font-size: 1rem;
    line-height: 1.5;
    padding: 20px 0px;
}

.cta-banner {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    background: var(--primary-color);
    padding: 50px 60px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        padding: 40px 20px;
    }
}

.cta-banner .logo img {
    height: 40px;
}

.cta-banner .cta-text {
    font-size: 1.5rem;
    color: #fff;
}

@media (max-width: 768px) {
    .cta-banner .cta-text {
        font-size: 0.95rem;
        text-align: center;
    }
}

.cta-text span {
    color: var(--accent-color);
    font-weight: 700;
}

.cta-button a {
    background: var(--accent-color);
    color: #fff;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
}

.project-grid {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    row-gap: 80px;

}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    cursor: pointer;
}

.project-image {
    height: 240px;
    background: #fafafa;
    border-radius: 16px;
    opacity: 0.1;
}

@media (max-width: 768px) {
    .project-image {
        height: 200px;
    }
}

.project-image img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.project-category {
    padding: 16px 0px 0px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
}


.project-title {
    padding: 8px 0px 0px 20px;
    font-size: 1.5rem;
    font-weight: 700;
}


.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
    gap: 30px;
    row-gap: 80px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.news-image {
    height: 240px;
    background: #0D3B2F;
    opacity: 0.2;
    border-radius: 8px;
}

.news-date {
    font-size: 1rem;
    color: var(--accent-color);
}

.news-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
}

.news-brief {
    font-size: 1rem;
    line-height: 1.5rem;
}

.contacts {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    display: flex;
    gap: 40px;


    /* background: #F8F9FA; */
    border-radius: 16px;
}

@media (max-width: 768px) {
    .contacts {
        flex-direction: column;
        gap: 20px;
        padding: 0px;
        background: none;
    }
}

.contact-form {
    width: 50%;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-form {
        width: 100%;
    }
}


.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group textarea {
    resize: none;
    height: 120px;
    font-family: "Montserrat", Sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 16px;
    color: #666;
    background: #fefefe;
    padding: 0 4px;
    transition: all 0.3s;
    pointer-events: none;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -8px;
    left: 8px;
    font-size: 12px;
    color: var(--primary-color);
}

.form-group input:placeholder-shown+label,
.form-group textarea:placeholder-shown+label {
    top: 12px;
    font-size: 16px;
}

.form-group button {
    width: 100%;
    padding: 12px;
    background: var(--accent-color);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-group button:hover {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
    }
}

.google-map {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.google-map ul {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}


@media (max-width: 768px) {
    .google-map ul {
        flex-direction: column;
    }
}

.google-map ul li {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .google-map ul li {
        font-size: 0.9rem;
    }
}

.google-map ul li i {
    font-size: 2rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .google-map ul li i {
        font-size: 1rem;
    }
}


.google-map ul li label {
    font-weight: 600;
}


.careers-wrapper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 100px 80px 200px 60px;
}

@media (max-width: 768px) {
    .careers-wrapper {
        padding: 80px 0px;
    }
}

.careers-wrapper p {
    font-size: 1rem;
}


.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.show {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.modal.show {
    display: block;
}