* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;

}

body {
    background-color: #ffffff;
}

hr {
    color: #7a7a7a02;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url("IMAGES/Group.jpg");
    background-repeat: no-repeat;
    background-position: right;
    padding: 15px 30px;
    background-size: 82%;
    /* justify-content: flex-start; */
    justify-content: space-between;
    background-color: white;
}
.navbar span{
    font-size:1.5vw
}

.navbar img{
    height: 8vw;
    padding-left: 5vw;
}

.logo {
    font-size: 2vw;
    font-weight: bold;
    color: #53A731;
    text-align: center;
    padding-right: 0%;
}




.nav-links {
    /* display: flex; */
    gap: 25px;
    /* float: none; */
    position: absolute;
    left: 25vw;
    transform: translate(-1.5vw, -0.5vw);
    ;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 45px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #158f00;
}

.active-btn {
    /* background-color: white; */
    border-radius: 4px;
    padding: 8px 12px;
}

/* HAMBURGER MENU */
.menu-toggle {
    display: none;
    
    cursor: pointer;
    
    font-size: 101%;
    position: absolute;
    right: 20px;
    
}
@media (max-width: 820px) {
    .navbar {
        background-size: 63% 70%;
    }
    .navbar img {
        padding-left: 11vw;
    }
    .logo span{
        font-size: 3vw;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 1350px) {
  
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #a8ff79;
        padding: 15px 0;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }
}



/* HERO SECTION */
.hero {
    display: flex;

    justify-content: space-between;
    padding: 50px 0px;

    background-color: #ffffff;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    padding: 45px;
    background-color: #DAFFCC;
    border-radius: 20px 0px 0px 20px;

}

.hero-text h1 {
    font-size: 50px;
    color: #000;
}

.hero-text span {
    color: #158f00;
}

.hero-text p {
    margin: 20px 0;
    color: #333;
    font-size: 20px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons button {
    background-color: #9FEE80;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

.hero-buttons button:hover {
    background-color: #5abf5a;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 80%;
    max-width: 400px;
}

/* TECHNOLOGY SECTION */
.technology-section {
    text-align: center;
    padding: 40px;
}

.technology-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #000;
}

.tech-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
}

.tech-icons img {
    width: 90px;
    height: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-buttons {
        justify-content: center;
    }
}


/*services*/

.Services {
    text-align: center;
}

.services-header {
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 15px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-header p {
    font-size: 26px;
    font-weight: bold;
    color: #000;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 20px;


}

.service-card {


    display: flex;

    flex-wrap: nowrap;
    transition: 0.3s;
    padding-top: 20px;
    padding-bottom: 20px;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-content {
    width: 55%;
    background-color: #DAFFCC;
    align-items: center;
    padding: 25px;
    transition: transform .2s;

}
.service-content:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.service-card:nth-child(odd) .service-content {
    border-radius: 0px 20px 20px 0px;
}

.service-card:nth-child(even) .service-content {
    border-radius: 20px 0px 0px 20px;
}

.service-content h3 {
    color: #158f00;
    font-size: 30px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 20px;
    color: #333;
    padding: 20px 60px;

}

.arrow-button {
    margin-top: 10px;
    display: inline-block;
    background-color: #74d374;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 16px;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.service-image {
    width: 35%;
    display: flex;
    justify-content: center;
    /* align-items: left; */


}

.service-image img {
    width: 350px;
    height: 250px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    /* Soft shadow effect */
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column !important;
        text-align: center;
        width: 95%;
        padding: 20px;
    }

    .service-content {
        width: 100%;
    }

    .service-image {
        width: 100%;
        margin-top: 10px;
    }
    .service-image img {
        max-width: 100%;
    }
}

/* Competitive-edge */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* .container {
    max-width: 100%;
    margin: auto;
    padding: 20px;
    text-align: center;
} */

.header {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
}

.sub-header {
    color: #4CAF50;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.features-container {
    display: flex;
    justify-content: space-around;
}




.feature {
    background: #d4f8c6;
    padding: 20px;
    border-radius: 10px;

    margin-bottom: 40px;
    text-align: left;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform .2s;
}
.feature:hover{
    transform: scale(1.1);
}

.feature img {
    width: 40px;

    margin-right: 10px;
}

.feature h3 {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.illustration {
    text-align: center;
    margin-top: 20px;
    align-content: center;
}

.illustration img {
    width: 100%;
    max-width: 500px;
}

@media (max-width: 1024px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .illustration {
        max-width: 80%;
    }
}

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

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 90%;
    }

    .illustration {
        max-width: 90%;
    }
}

/* company-facts */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.header h3 {
    font-size: 18px;
    color: #333;
    line-height: 0px;
    /* margin-bottom: 5px; */
}

.header h2 {
    color: #4CAF50;
    font-size: 32px;
    font-weight: bold;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.text-box {
    background: #d4f8c6;
    padding: 40px;
    border-radius: 10px;
    flex: 1;
    max-width: 50%;
    text-align: left;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.text-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.button {
    background: #4CAF50;
    color: white;
    padding: 14px 22px;
    border-radius: 50%;
    display: inline-block;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: background 0.3s;
}

.button:hover {
    background: #388E3C;
}

.illustration {
    flex: 1;
    text-align: right;
    max-width: 50%;
}

.illustration img {
    width: 100%;
    max-width: 500px;
}

@media (max-width: 1024px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .text-box,
    .illustration {
        max-width: 90%;
        text-align: center;
    }

    .text-box {
        padding: 30px;
    }

    .button {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        text-align: center;
        padding-left: 0;
    }

    .header h2 {
        font-size: 26px;
    }

    .text-box {
        width: 100%;
        padding: 25px;
    }

    .illustration {
        max-width: 100%;
    }
}





/* FOOTER */
.footer {
    background-color: #d4f8c4;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer h3 {
    color: #2a7f2a;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.footer-column p {
    padding: 0px 30px;
}


.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    padding: 0px 30px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #158f00;
}

.footer-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.footer-icons i {
    font-size: 16px;
    color: #2a7f2a;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #b8e69c;
    font-size: 14px;
    color: #333;
}

.footer img {
    max-width: 100%;
    height: 15px;
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .footer {
        /* flex-direction: column; */
        text-align: center;
    }

    .footer-icons {
        justify-content: center;
    }
}

/* COMPANY */

.about {
    padding: 20px;
}

.about-us {
    text-align: center;
    background: #DAFFCC;
    padding: 20px;
}

.about-us h1 span {
    color: #228B22;
}

.who-we-are,
.how-we-do-it {
    padding: 40px 20px;
}

.content h2 {
    color: #228B22;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.content .text,
.content .image {
    flex: 1;
    padding: 20px;
}

.image img {
    max-width: 100%;
    height: auto;
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.mission,
.vision {
    flex: 1;
    background: #dfffd8;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: tranform .2s;
}
.mission:hover,
.vision:hover{
    transform: scale(1.1);
} 

.mission-header,
.vision-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mission-header img,
.vision-header img {
    max-width: 40px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    background: #e5ffe5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform .2s;
}
.step:hover{
    transform: scale(1.1);
}

.how-we-do-it {
    text-align: center;
}

.how-we-do-it h2 {
    color: #228B22;
}

@media (max-width: 768px) {

    .content,
    .mission-vision,
    .steps {
        flex-direction: column;
        text-align: center;
    }
}


/* technology */
.block{
    text-align: center;
}
.techA .section-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
    background-color: #e6ffdb;
}
.techA .section {
    background-color: #e6ffdb;
    /* padding: 20px; */
    border-radius: 10px;
    width: 45%;
    max-width: 550px;
    text-align: center;
}
.content {
    color: #2c6e49;
    font-size: 18px;
}
.tech-gridA {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 900px;
    margin: auto;
}
.tech-itemA {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
    
}
.tech-itemA:hover {
  transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.tech-itemA img {
    max-width: 100px;
    
}
.techA{
    padding: 20px;
}
@media (max-width: 800px) {
    .techA .section-container {
        flex-direction: column;
        align-items: center;
    }
    .techA .section {
        width: 90%;
    }
    .tech-gridA {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .tech-gridA {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* services */
.offerings-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}
.offerings-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    text-align: left;
}
.offering-card {
    background-color: #e6ffdb;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform .2s;
}
.offering-card:hover{
    transform: scale(1.1);
}
.offering-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 300px;
}
.offering-image img{
    width: 120%;
}
.lets-talk {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
}
.text-section {
    text-align: left;
    flex: 1;
    padding: 20px;
}
.text-section h2 {
    color: #000;
    font-size: 16px;
}
.text-section h1 {
    color: #3ea73e;
    font-size: 28px;
    margin-top: 10px;
}
.text-section p {
    color: #333;
    margin-top: 10px;
    font-size: 16px;
}
.contact-btn {
    margin-top: 20px;
    background-color: #3ea73e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.contact-btn:hover {
    background-color: #2f892f;
}
.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-section img {
    max-width: 80%;
    height: auto;
}
@media (max-width: 768px) {
    .lets-talk {
        flex-direction: column;
        text-align: center;
    }
    .image-section {
        margin-top: 20px;
    }
    .offering-image img{
        width: 100%;
    }
}
@media (max-width: 800px) {
    .offerings-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .offerings-list {
        width: 90%;
    }
    .offering-image {
        max-width: 90%;
    }
}

/* careers */

.container-mail {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.header {
    padding: 20px 0;
}
.header h2 {
    color: #27ae60;
    font-size: 24px;
}
.apply-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3ea73e;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}
.apply-btn:hover{
    background-color: #2f892f;
}
.perks-section {
    margin-top: 40px;
    text-align: center;
}
.perks-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
}
.perks-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 20px;
}
.perk-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .2s;
}
.perk-box:hover{
    transform: scale(1.1);
}
.perk-header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.perk-header img {
    width: 50px;
}
.perk-content {
    width: 100%;
}
.perk-box h4 {
    font-size: 18px;
    margin: 0;
}
.perk-box p {
    font-size: 18px;
    color: black;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .perks-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .perks-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* contact us  */

.container-form {
    background: #c8f7a5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    text-align: center;
}
h2 {
    margin-bottom: 15px;
}
form {
    display: flex;
    flex-direction: column;
}
.input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #a0d468;
    border-radius: 5px;
}
.input-group input {
    flex: 1;
}
textarea {
    resize: none;
    height: 100px;
}
button {
    background-color:#3ea73e;
    color: black;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
button:hover {
    background-color: #2f892f;
}
.input-form{
    display: flex;
    justify-content: center;
}
.required-field{
    font-size: 10px;
}
@media (max-width: 768px) {
    .container {
        max-width: 90%;
    }
    .input-group {
        flex-direction: column;
    }
}

.primary {
  animation: primary 3s linear infinite;
}

.secondary {
  animation: secondary 3s linear infinite;
}

@keyframes primary {
  from {
    left: 0%;
  }
  to {
    left: -100%;
  }
}

@keyframes secondary {
  from {
    left: 100%;
  }
  to {
    left: 0%;
  }
}
.scroll-wrapper {
  overflow: hidden;
  width: 100%;

  padding: 20px 0;
}

.scroll-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.scroll-track img {
  height: 60px;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
