@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Colors */
    --white-color: #fff;
    --primary-color: #4D9235;
    --secondary-color: #000000;
    --third-color: #141414;
    --medium-gray-color: #ccc;
    --g-color: #2b2f28;
    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;

    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;
}

html {
    scroll-behavior: smooth;
}

/* stylling for whole site */
ul {
    list-style: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "lato" sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

/* header */
.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1300px;
}

.about-section {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}

.whychooseuscontainer {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1100px;
}

.skills-section {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1100px;
}

.skills-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1150px;
}

.contact-section {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1100px;
}

.footer {
    margin: 0 auto;
    padding: 0 20px;

}

.copyright-section {
    margin: 0 auto;
    padding: 0 20px;

}

/* header / navbar styling */
.header {
    position: fixed;
    width: 100%;
    height: 15%;
    z-index: 1000;
    background: var(--white-color);

}

#logo {
    width: 120px;
    height: 80px;

}

header .navBar {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: space-between;


}

.navBar .nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding-left: 35px;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;


}

.navBar .nav-menu .nav-link {
    color: var(--light-color);
    padding: 10px 18px;
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s;
}

.navBar .nav-menu .nav-link:hover {
    color: #187503;
}

.navBar .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: end;

}

.navBar .social-link-list .social-link {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: 0.2 ease;
}

.navBar .social-link-list .social-link:hover {
    color: var(--primary-color);
}   

.navBar :where(#menu-close-button, #menu-open-button) {
    display: none;
    margin-right: 40px;
}


/* Slideshow container */
.slideshow-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 7500px; /* optional cap */
}

/* wrapper created by JS will use this */
.slides-wrapper {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 100%;
}

/* Each slide (use block so image is visible) */
.mySlides {
  min-width: 100%;
  flex-shrink: 0;
  display: block;        /* must be block so image shows */
  position: relative;
}

.mySlides img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Arrows */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  z-index: 10;
}

.prev { left: 12px; }
.next { right: 12px; }

.prev:hover,
.next:hover { background: rgba(0,0,0,0.65); }

/* Dots themselves */
.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* ensure old fade class can't hide slides */
.fade { animation: none !important; }



















/* about sec styling */
.about-section {
    padding: 120px 0;
    background: rgb(255, 255, 255);
}

.about-section .section-content {
    display: flex;
    gap: 50px;
    color: rgb(0, 0, 0);
}

.about-section .about-image-wrapper .about-image {
    width: 550px;
    height: 500px;
    aspect-ratio: 1;
}

.about-section .about-details .section-tittle {
    padding: 0;
    text-align: start;
    font-size: 3rem;
    color: #000000d6;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.about-section .about-details {
    max-width: 100%;
}

.about-section .about-details .text {
    line-height: 30px;
    display: flex;
    margin: 20px 0 0px;
    font-size: 1.3rem;
    color: rgb(0, 0, 0);
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: justify;
}



/* services sec styling */
.container-serevices {
    background-color: #ffffff;
    padding-bottom: 50px;

}

.container-serevices .heading {
    text-align: center;
    padding-bottom: 40px;
    font-size: 3rem;
    color: #000000;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;


}

.container-serevices .box-container {
    margin: 0;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;


}

.container-serevices .box-container .box {
    border-radius: 5px;
    border: 1px solid #4D9235;
    text-align: center;
    margin: 15px;
    padding: 20px;
    width: 350px;
    background-color: rgb(255, 255, 255);
}

.container-serevices .box-container .box img {
    height: 90px;
    width: 120px;
}


.container-serevices .box-container .box h3 {
    color: #000000;
    font-size: 22px;
    padding: 10px 0;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.container-serevices .box-container .box p {
    display: flex;
    justify-items: start;
    text-align: justify;
    color: #000000;
    font-size: 15px;
    padding: 10px 0;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.container-serevices .box-container .box:hover h3,
.container-serevices .box-container .box:hover p {
    color: #4D9235;
    /* Change text color on hover */
}

.box:hover img {
    filter: brightness(10) saturate(150%) invert(31%) sepia(30%) saturate(550%) hue-rotate(50deg) brightness(100%) contrast(98%);
}



.container-serevices .box-container .box:hover {
    transform: scale(1.02);
    /* Scale the box on hover */
}


.container-serevices .box-container .box .img:hover {
    transform: scale(1.02);
    ;

}

/* why choose us sec styling */
    .whychooseuscontainer {
        margin: 50px auto;
        padding: 20px;
        text-align: center;
        padding-top: 40px;

    }


    .heading-why {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 30px;
        color: #000000;
        font-size: 3rem;
        font-family: "lato", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .boxes {
        display: flex;
        justify-content: space-between;

    }

    .item-why {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 20px;
        flex: 1;
        margin: 0 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        font-family: "lato", sans-serif;
        font-weight: 400;
        font-style: normal;
    }


    .subheading-why {
        font-size: 18px;
        margin: 10px 0;
        color: #000000;
    }

    p {
        font-size: 17px;
        color: #000000;
        font-family: "Lato", sans-serif;
        font-weight: 300;
        text-align: justify;
        font-style: normal;
    }

/* skills styling */
.skills-section {
    padding: 80px 0;
    width: 100%;
    background-color: #ffffff;
}

.skills-section .section-skill-content {
    display: flex;
    gap: 10px;
    color: rgb(0, 0, 0);
    font-family: "lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.skills-section .skill-image-wrapper .skill-image {
    max-width: 550px;
    height: 350px;
}

.skills-section .skill-details .skill-tittle {
    padding-top: 50px;
    text-align: start;
    font-size: 3rem;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.skills-section .skill-details {
    max-width: 50%;
    font-size: 1.3rem;
    color: rgb(0, 0, 0);
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: justify;
}


.skills-section .skill-details .skill-text {
    line-height: 30px;
    margin: 20px 0 0px;
    text-align: start;
    font-size: 1rem;
    color: rgb(0, 0, 0);
}

.skills-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align items to the left */
}

.category {
    margin-bottom: 40px;
    width: 100%;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* Full width */
}

.category h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
    /* Align items to the left */
}

.tech-item {
    margin: 10px;
    text-align: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    width: 135px;
    /* Adjust as needed */
    height: 150px;
    transition: box-shadow 0.3s;
}

.tech-item img {
    width: 80px;
    /* Adjust size as needed */
    height: 70px;
    /* Adjust size as needed */
}

.tech-item p {
    margin-top: 5px;
    font-size: 0.9em;
    /* Slightly smaller font for labels */
    color: #333;
    text-align: center;
    font-family: "lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.tech-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Contact styling  */
.contact-section {
    padding: 50px 0 100px;
    background: rgb(255, 255, 255);
}

.contact-section .section-tittle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 3rem;
    color: #000000;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact-section .section-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;

}

.contact-section .contact-form .form-input {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background: var(--white-color);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--primary-color);
    color: #000000;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact-section .contact-form {
    width: 80%;
}

.contact-section .contact-form .form-input:focus {
    border-color: var(--primary-color);

}

.contact-section .contact-form textarea.form-input {
    height: 100px;
    padding: 12px;
    resize: vertical;
}

.contact-section .contact-form .sumbit-button {
    padding: 10px 20px;
    margin-top: 10px;
    margin-bottom: 50px;
    color: white;
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--primary-color);
    border-radius: 5px;
    border: 1px solid var(--light-color);
    transition: 0.3 ease;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact-section .contact-form .sumbit-button:hover {
    background: black;

}

/* download section */
.download-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: -40px auto;
    margin-bottom: 80px;
    max-width: 860px;
}

.download-content {
    max-width: 50%;
}

.download-section h2 {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 10px;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.download-section p {
    font-size: 1.1em;
    color: #000000;
    margin-bottom: 20px;
    font-family: "lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.download-btn {
    display: inline-block;
    background-color: #4D9235;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.3s;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.download-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.download-image-container {
    flex-shrink: 0;
    /* Prevent the image from shrinking */
}

.download-image {
    width: 300px;
    /* Adjust as needed */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 10px;
    /* Optional: rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Shadow for depth */
}


/* footer styling */
.section {
    padding: 80px 13% 70px;
}

.footer {
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 3.5rem;
    background: #000000;
    display: grid;
    justify-content: center;
    align-items: center;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;


}

.footer-content .logo {
    width: 150px;
    height: 100px;


}

.footer-content h5 {
    color: #ffffff;
    margin-bottom: 2.0rem;
    font-size: var(--font-size-l);
    margin-top: -30px;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2rem;
}

.footer-content {
    list-style: none;
}

.footer-content li {
    color: #ffffff;
    margin-bottom: 16px;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.footer-content .nav-link {
    color: #ffffff;
    font-size: 1.2rem;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;

}

.footer-content li a {
    color: #ffffff;

    font-size: 1.2rem;
    transition: all .40s ease;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.footer-content li a:hover {
    transform: translateY(-3px) translateX(-5px);
    color: #ffffff;
}

.icons a {
    margin-left: 15px;
    margin-top: 20px;
    font-size: 1.5rem;
    color: #ffffff;
    transition: all .40s ease;
}

.icons a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.google-maps {
    padding-top: 10px;



    
}

/* Copyright section */
.copyright-section {
    padding: 20px 0;
    background: black;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.copyright-section .copyright-content {
    display: flex;
    justify-content: center;
    align-items: center;

}

.copyright-section .policy-link {
    color: var(--white-color);
    transition: 0.2s ease;
    font-size: 1rem;
}

.copyright-section .policy-text .policy-link:hover {
    color: var(--primary-color);

}



@media (min-width: 1024px) {

    .header {
        position: fixed;
        width: 100%;
        height: 15%;
        z-index: 1000;
        background: var(--white-color);

    }

    #logo {
        width: 120px;
        height: 80px;

    }

    header .navBar {
        display: flex;
        padding: 15px;
        align-items: center;
        justify-content: space-between;


    }

    .navBar .nav-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        list-style: none;
        padding-left: 35px;

    }

    .navBar .nav-menu .nav-link {
        color: var(--light-color);
        padding: 10px 18px;
        font-size: var(--font-size-m);
        border-radius: var(--border-radius-m);
        transition: 0.3s;
    }

    .navBar .nav-menu .nav-link:hover {
        color: #187503;
    }

    .navBar .social-link-list {
        display: flex;
        gap: 25px;
        justify-content: end;

    }

    .navBar .social-link-list .social-link {
        color: var(--secondary-color);
        font-size: 1.5rem;
        transition: 0.2 ease;
    }

    .navBar .social-link-list .social-link:hover {
        color: var(--primary-color);
    }

    .navBar :where(#menu-close-button, #menu-open-button) {
        display: none;
        margin-right: 40px;
    }

    .slideshow-container {
        width: 100%;
        position: relative;
        margin: auto;

    }

    .mySlides {
        display: none;
    }

    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    .next {
        right: 0;
    }

    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .slide-text {
        position: absolute;
        top: 35%;
        max-width: 80%;
        left: 40%;
        transform: translateX(-50%);
        padding-right: 30%;
        box-sizing: border-box;
        color: #fff;
        text-shadow: 0 5px 10px #0004;
        font-size: 5rem;
        font-weight: bold;



    }

    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active,
    .dot:hover {
        background-color: #717171;
    }

    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    .section {
        padding: 80px 13% 70px;
    }


    .skills-section .skill-details .skill-tittle {
        font-size: 4rem;
    }

    .skills-section .skill-details .skill-text {
        line-height: 30px;
        font-size: 20px;

    }

    .skills-section .skill-image-wrapper .skill-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;

    }


}

@media (max-width: 1024px) {
    .slideshow-container {
        max-width: 1500vw;
        position: relative;
        margin: auto;

    }

    .mySlides {
        display: none;
    }

    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    .next {
        right: 0;

    }

    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .slide-text {
        position: absolute;
        top: 30%;
        max-width: 80%;
        left: 40%;
        transform: translateX(-50%);
        padding-right: 30%;
        box-sizing: border-box;
        color: #fff;
        text-shadow: 0 5px 10px #0004;
        font-size: 3rem;
        font-weight: bold;
    }

    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active,
    .dot:hover {
        background-color: #717171;
    }

    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    section {
        padding: 80px 13% 70px;
        margin: 10px;
    }

    .footer {
        grid-template-columns: repeat(auto-fit, minmax(100px, auto));
        gap: 3.5rem;
        background: #000000;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .footer-content .logo {
        width: 150px;
        height: 100px;
        margin-top: -40px;
    }

    .footer-content h5 {
        color: #ffffff;
        margin-bottom: 2.0rem;
        font-size: var(--font-size-l);
        margin-top: -30px;
        font-size: 1rem;

    }

    .footer-content {
        list-style: none;
        font-size: 1rem;
    }

    .footer-content li {
        margin-bottom: 16px;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
    }

    .footer-content .nav-link {
        font-size: 1rem;

    }

    .footer-content li a {
        display: block;
        color: #ffffff;
        font-size: 15px;
        transition: all .40s ease;
    }

    .footer-content li a:hover {
        transform: translateY(-3px) translateX(-5px);
        color: #ffffff;
    }

    .icons a {
        margin-top: 10px;
        display: inline-block;
        font-size: 1.5rem;
        color: #fffafa;
        margin-right: 30px;
        transition: all .40s ease;
    }

    .icons a:hover {
        color: var(--primary-color);
        transform: translateY(-5px);
    }

    .google-maps {
        padding-top: 10px;
    }

    .skills-section .section-skill-content {
        gap: 10px;

    }

    .skills-section .skill-details .skill-tittle {
        margin-left: 10px;
        margin-top: 20px;
        padding: 0;
        font-size: 3rem;


    }

    .skills-section .skill-details .skill-text {
        margin-top: 20px;
        line-height: 30px;
        font-size: 20px;
        margin-left: 10px;
    }

    .skills-section .skill-image-wrapper .skill-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;

    }



}

@media (max-width: 900px) {
    .header {
        position: fixed;
        width: 100%;
        height: 15%;
        z-index: 1000;
        background: var(--white-color);

    }

    #logo {
        width: 120px;
        height: 80px;

    }

    header .navBar {
        display: flex;
        padding: 10px;
        align-items: center;
        justify-content: space-between;


    }

    .navBar .nav-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        list-style: none;
        padding-left: 10px;
        font-size: 0.5rem;

    }

    .navBar .nav-menu .nav-link {
        color: var(--light-color);
        padding: 10px 18px;
        font-size: 1rem;
        border-radius: var(--border-radius-m);
        transition: 0.3s;
    }

    .navBar .nav-menu .nav-link:hover {
        color: #187503;
    }

    .navBar .social-link-list {
        display: flex;
        gap: 20px;
        justify-content: end;

    }

    .navBar .social-link-list .social-link {
        color: var(--secondary-color);
        font-size: 1.5rem;
        transition: 0.2 ease;
    }

    .navBar .social-link-list .social-link:hover {
        color: var(--primary-color);
    }

    /* Slideshow container */
    .slideshow-container {
        max-width: 1500vw;
        position: relative;
        margin: auto;

    }

    .mySlides {
        display: none;
    }

    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    .next {
        right: 0;

    }

    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .slide-text {
        position: absolute;
        top: 30%;
        max-width: 80%;
        left: 40%;
        transform: translateX(-50%);
        padding-right: 30%;
        box-sizing: border-box;
        color: #fff;
        text-shadow: 0 5px 10px #0004;
        font-size: 3rem;
        font-weight: bold;



    }

    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active,
    .dot:hover {
        background-color: #717171;
    }

    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }


    .about-section .section-content {
        gap: 40px;
        width: 100%;
        height: 50%;
        flex-direction: column-reverse;
    }

    .about-section .about-details .section-tittle {
        padding: 0;
        text-align: start;
        font-size: 2.5rem;
    }

    .about-section .about-details .text {
        text-align: start;
        line-height: 30px;

        font-size: 20px;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;

    }

    .container-serevices .heading {
        text-align: center;
        padding-bottom: 40px;
        font-size: 2.5rem;
        color: #000000;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;


    }

    .container-serevices .box-container .box:hover h3,
    .container-serevices .box-container .box:hover p {
        color: #4D9235;
    }

    .box:hover img {
        filter: brightness(10) saturate(150%) invert(31%) sepia(30%) saturate(550%) hue-rotate(50deg) brightness(100%) contrast(98%);
    }



    .whychooseuscontainer .heading-why {
        font-size: 1.9rem;
        width: 100%;


    }

    .contact-section .section-content {
        align-items: center;
        flex-direction: column-reverse;
    }

    .heading-skills {
        text-align: center;
        padding-bottom: 30px;
        color: #000000db;
        background-color: #ffffff;
        font-size: 1.4rem;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;

    }

    .contact-section .section-tittle {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        font-size: 2.5rem;
        color: #000000;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .section {
        padding: 80px 13% 70px;
    }

    .footer {
        grid-template-columns: repeat(auto-fit, minmax(200px, auto));
        gap: 3.5rem;
        background: #000000;
        display: grid;
        justify-content: center;
        align-items: center;

    }

    .footer-content .logo {
        width: 150px;
        height: 100px;
        margin-top: -40px;
    }

    .footer-content h5 {
        color: #ffffff;
        margin-bottom: 2.0rem;
        font-size: var(--font-size-l);
        margin-top: -30px;
        font-size: 1rem;

    }

    .footer-content {
        list-style: none;
    }

    .footer-content li {
        margin-bottom: 16px;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
    }

    .footer-content .nav-link {
        font-size: 1rem;

    }

    .footer-content li a {
        display: block;
        color: #ffffff;
        font-size: 15px;
        transition: all .40s ease;
    }

    .footer-content li a:hover {
        transform: translateY(-3px) translateX(-5px);
        color: #ffffff;
    }

    .icons a {
        margin-top: 10px;
        display: inline-block;
        font-size: 1.5rem;
        color: #fffafa;
        margin-right: 30px;
        transition: all .40s ease;
    }

    .icons a:hover {
        color: var(--primary-color);
        transform: translateY(-5px);
    }

    .google-maps {
        padding-top: 10px;
    }

    .skills-section .section-skill-content {
        gap: 10px;

    }

    .skills-section .skill-details .skill-tittle {
        margin-left: 10px;
        margin-top: 20px;
        padding: 0;
        font-size: 2rem;


    }

    .skills-section .skill-details .skill-text {
        margin-top: 20px;
        line-height: 30px;
        font-size: 20px;
        margin-left: 10px;
    }

    .skills-section .skill-image-wrapper .skill-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;

    }


}

@media (max-width: 600px) {

    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(2px);
        background: rgba(0, 0, 0, 0.2);
    }

    .navBar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-1);
        margin-right: 5px;

    }

    .navBar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
        font-size: 1rem;
        color: var(--light-color);
    }

    .navBar #menu-open-button {
        color: var(--light-color);
    }

    .navBar .nav-menu {
        display: block;
        position: fixed;
        left: -250px;
        top: 0px;
        width: 250px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--white-color);
        transition: left 0.2s ease;
        z-index: 100;
    }

    body.show-mobile-menu .navBar .nav-menu {
        left: 0;
    }

    .navBar .nav-menu .nav-link {
        color: var(--dark-color);
        display: block;
        margin-top: 20px;
        font-size: 1rem;
    }

    .slide-text {
        position: absolute;
        top: 30%;
        max-width: 80%;
        left: 45%;
        transform: translateX(-50%);
        padding-right: 20%;
        box-sizing: border-box;
        color: #fff;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.3em;


    }

    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 30%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from {
            opacity: .4
        }

        to {
            opacity: 1
        }
    }

    .about-section .section-content {
        gap: 10px;


    }

    .about-section .about-details .section-tittle {
        padding: 0;
        text-align: start;
        font-size: 2rem;


    }

    .about-section .about-details .text {
        text-align: start;
        line-height: 30px;
        font-size: 20px;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
    }


    .container-serevices .box-container {
        gap: 30px;
    }

    .container-serevices .heading {
        text-align: center;
        padding-bottom: 40px;
        font-size: 2rem;
        color: #000000;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;

    }

    .container-serevices .box-container .box {
        width: 50rem;
        padding-bottom: 50px;

    }

    .container-serevices .box-container .box .service-image {
        max-width: 100%;
    }

    .container-serevices .box-container .box:hover h3,
    .container-serevices .box-container .box:hover p {
        color: #4D9235;
    }

    .box:hover img {
        filter: brightness(10) saturate(150%) invert(31%) sepia(30%) saturate(550%) hue-rotate(50deg) brightness(100%) contrast(98%);
    }

    .whychooseuscontainer .boxes {
        gap: 60px;
        flex-direction: column-reverse;
    }

    .whychooseuscontainer .heading-why {
        font-size: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .whychooseuscontainer .boxes .item-why {
        width: calc(100% / 1 - 30px);

    }

    .heading-skills {
        text-align: center;
        padding-bottom: 30px;
        color: #000000db;
        background-color: #ffffff;
        font-size: 1.2rem;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;

    }

    .container {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    .contact-section .section-tittle {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        font-size: 2rem;
        color: #000000;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .contact-section .section-content {
        flex-direction: column-reverse;

    }

    .contact-section .contact-form {
        max-width: 100%;
    }

    .download-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 40px;
        margin: -10px auto;
        margin-bottom: 80px;
        max-width: 500px;
        flex-direction: column-reverse
    }

    .download-content {
        max-width: 100%;
    }

    .download-section h2 {
        font-size: 2.5em;
        color: #000000;
        margin-bottom: 10px;
        font-family: "lato", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .download-section p {
        font-size: 1.1em;
        color: #000000;
        margin-bottom: 20px;
        font-family: "lato", sans-serif;
        font-weight: 300;
        font-style: normal;
    }

    .download-btn {
        display: inline-block;
        background-color: #4D9235;
        color: white;
        padding: 15px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.1em;
        transition: background-color 0.3s, transform 0.3s;
    }

    .download-btn:hover {
        background-color: #000000;
        transform: translateY(-2px);
    }

    .download-image-container {
        flex-shrink: 0;
        /* Prevent the image from shrinking */
    }

    .download-image {
        width: 300px;
        /* Adjust as needed */
        height: auto;
        /* Maintain aspect ratio */
        border-radius: 10px;
        /* Optional: rounded corners */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        /* Shadow for depth */
    }


    section {
        padding: 80px 13% 70px;
    }

    .footer {
        grid-template-columns: repeat(auto-fit, minmax(200px, auto));
        gap: 3.5rem;
        background: #000000;
        display: grid;
        justify-content: center;
        align-items: center;

    }

    .footer-content .logo {
        width: 150px;
        height: 100px;
        margin-top: 40px;
    }

    .footer-content h5 {
        color: #ffffff;
        margin-bottom: 1rem;
        font-size: var(--font-size-l);
        margin-top: -30px;


    }

    .footer-content {
        list-style: none;
    }

    .footer-content li {
        margin-bottom: 16px;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
    }

    .footer-content .nav-link {
        font-size: 1rem;

    }

    .footer-content li a {
        display: block;
        color: #ffffff;
        font-size: 15px;
        transition: all .40s ease;
    }

    .footer-content li a:hover {
        transform: translateY(-3px) translateX(-5px);
        color: #ffffff;
    }

    .icons a {
        margin-top: 10px;
        font-size: 1.5rem;
        color: #fffafa;
        transition: all .40s ease;
        margin-left: 5px;
    }

    .icons a:hover {
        color: var(--primary-color);
        transform: translateY(-5px);
    }

    .google-maps {
        padding-top: 10px;
        margin-left: -2px;
    }

    .skills-section .section-skill-content {
        display: flex;
        justify-content: start;
        align-items: start;
        gap: 10px;
        flex-direction: column-reverse;
    }

    .skills-section .skill-details .skill-tittle {
        margin-left: 20px;
        padding: 0;
        font-size: 2rem;
        width: fit-content;

    }

    .skills-section .skill-details .skill-text {
        width: 350px;
        line-height: 30px;
        font-size: 20px;
        margin-left: 20px;
    }

    .skills-section .skill-image-wrapper .skill-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
        flex-direction: column-reverse;
    }

    .copyright-section {
        padding: 20px 0;
        background: black;
        font-size: 0.8rem;
        font-family: "lato", sans-serif;
        font-weight: 200;
        font-style: normal;

    }

    .copyright-section .copyright-content {
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .copyright-section :where(.policy-link) {
        color: var(--white-color);
        transition: 0.2s ease;
    }

    .copyright-section .policy-text .policy-link:hover {
        color: var(--primary-color);
    }

}