
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primary:#008000;
    --background: #04a0040b;
    --h1:#0080002a;
}
.fade-in {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  .show {
    opacity: 1;
    transform: translateX(0);
  }
  
.slide {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .overflo {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
  }
  
  .show{
    opacity: 1;
    transform: scale(1);
  }
.slide_up{
    transform: translateY(100px);
    transition: transform 0.3s;
    opacity: 0;
    
}


.show{
    transform: translateY(0);
    
    
}
.overflow{
    opacity: 0;
    transition: opacity 2s, transform 1s;
    transform: translateY(100px);
}
.show{
    opacity: 1;
    transform: translateY(0);
}


/* Navbar styles */

.navbar {
    display: flex;
    justify-content: left;
    gap: 135px;
    align-items: center;
    background:white;
    color: black;
    padding: auto;
    padding-left: 84px;
    font-family:poppins;
    width: 100%;
    position: fixed;
    margin-top: -70px;
    height: 80px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.navbar img{
    background: none;        
    padding: 0;        
    margin: 0;               
    width: 160px;           
    height: 200px;
    object-fit: contain;
    

}

/* Navigation links */

.nav-links {
    list-style: none;
    display: flex;
    gap: 74px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
}
.nav-links a:hover{
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
}
.nav-links a.active {
  color: #008000;
  font-weight: bold;
}

.menu-btn {
    font-size: 30px;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    display: none;
}


/* Responsive: Hide menu on small screens */
@media(max-width:1200px){
    .navbar {
        display: flex;
        justify-content: left;
        gap: 100px;
        align-items: center;
        background:white;
        color: black;
        padding: auto;
        padding-left: 24px;
        font-family:poppins;
        width: 100%;
        position: fixed;
        margin-top: -70px;
        height: 80px;
        z-index: 1000;
    
    }
    
    .navbar img{
        background: none;        /* Removes background */
        padding: 0;              /* Removes padding */
        margin: 0;               /* Optional: removes margin */
        width: 200px;            /* Resize the logo if needed */
        height: 200px;
        object-fit: contain;
        
    
    }
    
    /* Navigation links */
    
    .nav-links {
        list-style: none;
        display: flex;
        gap: 70px;
    }
    
    .nav-links li {
        display: inline;
    }
    
    .nav-links a {
        text-decoration: none;
        color: black;
        font-size: 15px;
        font-weight: 500;
        line-height: 28px;
    }
    .nav-links a:hover{
        text-decoration: none;
        color: var(--primary);
        font-size: 16px;
    }
    .menu-btn {
        font-size: 30px;
        background: none;
        border: none;
        color: var(--primary);
        cursor: pointer;
        display: none;
    }
    
}
@media (max-width: 1000px) {
    .menu-btn {
        display: block; /* Show menu button */
    }

    .nav-links {
        display: none; /* Hide links*/
        flex-direction: column;
        background:white;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 16px 0;
        text-align: center;
        color: black;
        font-size: 16px;
        gap: 64px;
    }
    
    
    .nav-links.show-menu {
        display: flex; /* Show menu when class is added */
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background:white;
        color: black;
        padding: 10px 16px;
        margin-left: 0;
    
    }
}
@media(max-width:480px){
    .menu-btn {
        display: block; /* Show menu button */
    }

    .nav-links {
        display: none; /* Hide links */
        flex-direction: column;
        background:white;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 16px 0;
        text-align: center;
        color: black;
        font-size: 16px;
        gap: 64px;
    }
    
    
    .nav-links.show-menu {
        display: flex; /* Show menu when class is added */
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background:white;
        color: black;
        padding: 10px 16px;
        margin-left: 0;
        padding-left: 0px;
    }
    .navbar img{
        background: none;        /* Removes background */
        padding: 0;              /* Removes padding */
        margin: 0;               /* Optional: removes margin */
        width: 160px;            /* Resize the logo if needed */
        height: 180px;
        object-fit: contain;
        
        
    
    }
}

/* Homepage*/

.homepage{
    background-image: url("../images/african-man-harvesting-vegetables\ 1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
    padding-left:94px;
    padding-top: 8%;
    background-color: #0000005b;
    background-blend-mode: multiply;
    font-family:poppins;
    margin-top: 70px;


}

.homepage h1{
    font-size: 56px;
    color: white;
    font-weight: 600;
    line-height: 1.5;
    
}
.homepage p{
    font-size: 18px;
    color: white;
    font-weight: 300;
    margin-top: 24px;
    
    
}
.buttons{
    display: flex;
    gap: 28px;
    margin-top: 28px;
    
}
.buttons .a{
    color:white;
    border: 1px solid white;
    font-weight: bold;
    padding: 12px 0px;
    text-decoration: none;
    border-radius: 32px;
    width: 256px;
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: all 1s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.buttons .a:hover{
    color: white;
    background-color: #008000;
border: none;
transform: scale(1.05);


}
.buttons .b{
    color:white;
    background-color: #008000;
    font-weight: bold;
    padding: 12px 0px;
    text-decoration: none;
    border-radius: 32px;
    width: 256px;
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: all 1s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.buttons .b:hover{
    color: black;
    background-color: white;
    border:1px solid #008000;
    transform: scale(1.05);
}




@media(max-width:950px){
    .homepage{
        background-image: url("../images/african-man-harvesting-vegetables\ 1.jpg");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 500px;
        padding-left:56px;
        padding-top: 10%;
        background-color: #0000005b;
        background-blend-mode: multiply;
        font-family:poppins;
        margin-top: 70px;
    
    
    }
    
    .homepage h1{
        font-size:40px;
        color: white;
        font-weight: 600;
        line-height: 1.5;
        
    }
    .homepage p{
        font-size: 17px;
        color: white;
        font-weight: 300;
        margin-top: 24px;
        
        
    }
    .buttons{
        display: flex;
        gap: 6%;
        margin-top: 3%;
        flex-wrap: wrap;
    }
    .buttons .a{
        color:white;
        border: 1px solid white;
        font-weight: bold;
        padding: 12px 0px;
        text-decoration: none;
        border-radius: 32px;
        width: 300px;
        text-align: center;
        margin-top: 2%;
        font-size: 18px;
    }
    .buttons .a:hover{
        color: white;
        background-color: #008000;
        border: 1px solid white;
    }
    .buttons .b{
        color:white;
        background-color: #008000;
        font-weight: bold;
        padding: 12px 0px;
        text-decoration: none;
        border-radius: 32px;
        width: 300px;
        text-align: center;
        margin-top: 2%;
        font-size: 18px;
    }
    .buttons .b:hover{
        color: black;
        background-color: white;
        border:1px solid #008000;
    }
}


@media(max-width:468px){
    .homepage{
        background-image: url("../images/african-man-harvesting-vegetables\ 1.jpg");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 600px;
        padding-left:24px;
        padding-top: 64px;
        background-color: #0000005b;
        background-blend-mode: multiply;
        font-family:poppins;
        margin-top: 70px;
    
    
    }
    
    .homepage h1{
        font-size: 36px;
        color: white;
        font-weight: 600;
        line-height: 1.3;
        margin-top: 10px;
        
    }
    .homepage p{
        font-size: 16px;
        color: white;
        font-weight: 300;
        margin-top: 24px;
        width: 92%;
        
        
    }
    .buttons{
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 28px;
    }
    .buttons .a{
        color:white;
        border: 1px solid white;
        font-weight: bold;
        padding: 12px 0px;
        text-decoration: none;
        border-radius: 32px;
        width: 90%;
        text-align: center;
        margin-top: 10px;
        font-size: 16px;
    }
    .buttons .a:hover{
        color: white;
        background-color: #008000;
        border:1px solid white;
    }
    .buttons .b{
        color:white;
        background-color: #008000;
        font-weight: bold;
        padding: 12px 0px;
        text-decoration: none;
        border-radius: 32px;
        width: 90%;
        text-align: center;
        margin-top: 10px;
        font-size: 16px;
    }
    .buttons .b:hover{
        color: black;
        background-color: white;
        border:1px solid #008000;
    }
    
}

/* image part*/
.image{
    display: flex;
    justify-content: center;
    margin: 8px auto;
    height: 74px;
    width: 41px;
    background-color: white;
}
/*second section*/
.second-section{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    margin-top: 35px;
    padding: 0px 124px;
    margin-bottom: 120px;
    background-color: white;
    align-items: center;
}
.content{
    display:flex;
    flex-direction:column;
    gap:12px;
    width: 50%;
    margin-top: 0;
}
.merge{
    width: 50%;
}

.container {
    position: relative;
    width: fit-content;
    display: inline-block;
  }

  .background-image {
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    display: block;
    height: 500px;
  }
hr{
    background-color: #e9e9e98f;
    height: 1px;
}
  .card {
    position: absolute;
    bottom: 20px;
    right: -80px;
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 220px;
    font-size: 14px;
    border:0.8px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: "Inter", sans-serif;
    
  }

  .card h4 {
    margin: 0 0 8px 0;
    font-weight: 400;
  }

  .card .details-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    float: right;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
.card .details-btn:hover{
    background-color: white;
    border: 1px solid #008000;
    color: #008000;
    transform: scale(1.05);
}
  .card .stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .card .icon {
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card .percent {
    font-weight: bold;
  }

.content .items .item{
    display: flex;
    flex-direction: row;
    gap:16px;
    border:1px solid rgba(0, 0, 0, 0.171);
    border-radius:8px;
    padding: 8px 8px;
    align-items: center;
    font-weight: 500;
}

.content .items{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 90%;
}
.content h3{
    font-size: 14px;
    color: var(--primary);
    margin-top: 16px;
    font-family:  "Inter", sans-serif ;
    line-height: 24px;
    font-weight: 500;
}
.content h1{
    font-family: "Archivo", sans-serif;

    font-size: 32px;
    letter-spacing: -1.2px;
    font-weight: 500;
    
}
.content h1 span{
    background-color: var(--h1);
    height: 60px;
    width: 248px;
    padding: 6px 4px;
    font-family: "Archivo", sans-serif;
    border-radius: 6px;
}
.content p{
    font-family:  "Inter", sans-serif ;
    font-size:15px;
    font-weight:400;
    color: #3C4049;
    width: 90%;
}
@media(max-width:1200px){
    .second-section{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 48px;
        justify-content: space-between;
        margin-top: 35px;
        padding: 0px 70px;
        margin-bottom: 120px;
        background-color: white;
        align-items: center;
    }
    .content{
        display:flex;
        flex-direction:column;
        gap:12px;
        width: 55%;
        margin-top: 0;
    }
    .merge{
        width: 40%;
    }
    
    .container {
        position: relative;
        width: fit-content;
        display: inline-block;
      }
    
      .background-image {
        border-radius: 20px;
        width: 100%;
        max-width: 400px;
        display: block;
        height: 500px;
      }
    hr{
        background-color: #e9e9e98f;
        height: 1px;
    }
      .card {
        position: absolute;
        bottom: 20px;
        right: -9%;
        background-color: white;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        width: 220px;
        font-size: 14px;
        border:0.8px solid var(--primary);
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-family: "Inter", sans-serif;
      }
    
      .card h4 {
        margin: 0 0 8px 0;
        font-weight: 400;
      }
    
      .card .details-btn {
        background-color: var(--primary);
        color: white;
        border: none;
        padding: 6px 12px;
        border-radius: 6px;
        cursor: pointer;
        float: right;
      }
    
      .card .stats {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
      }
    
      .card .icon {
        background-color: var(--primary);
        color: white;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    
      .card .percent {
        font-weight: bold;
      }
    
    .content .items .item{
        display: flex;
        flex-direction: row;
        gap:16px;
        border:1px solid rgba(0, 0, 0, 0.171);
        border-radius:8px;
        padding: 8px 8px;
        align-items: center;
        font-weight: 500;
    }
    
    .content .items{
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 90%;
    }
    .content h3{
        font-size: 14px;
        color: var(--primary);
        margin-top: 16px;
        font-family:  "Inter", sans-serif ;
        line-height: 24px;
        font-weight: 500;
    }
    .content h1{
        font-family: "Archivo", sans-serif;
    
        font-size: 32px;
        letter-spacing: -1.2px;
        font-weight: 500;
        
    }
    .content h1 span{
        background-color: var(--h1);
        height: 60px;
        width: 248px;
        padding: 6px 4px;
        font-family: "Archivo", sans-serif;
        border-radius: 6px;
    }
    .content p{
        font-family:  "Inter", sans-serif ;
        font-size:15px;
        font-weight:400;
        color: #3C4049;
        width: 90%;
    }
}
@media(max-width:900px){
    .image{
        display: flex;
        justify-content: center;
        margin: 8px auto;
        height: 64px;
        width: 36px;
        background-color: white;
    }
    /*second section*/
    .second-section{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 32px;
        margin-top: 35px;
        padding: 0px 56px;
        margin-bottom: 120px;
        background-color: white;
        flex-wrap: wrap;
    }
    .content{
        display:flex;
        flex-direction:column;
        gap:16px;
        width: 100%;
        margin-top: 0;
    }
    .merge{
        width: 90%;
        align-items: center;
        display: flex;
        justify-content: center;
        margin: auto;
    }
    .merge img{
        width: 85%;
        margin: auto;
        height: 70vh;
    }
    .container {
    position: relative;
    width: fit-content;
    display: inline-block;
  }

  .background-image {
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    display: block;
    height: 450px;
  }
hr{
    background-color: #e9e9e98f;
    height: 1px;
}
  .card {
    position: absolute;
    bottom: 20px;
    right: -7%;
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 220px;
    font-size: 14px;
    border:0.8px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: "Inter", sans-serif;
  }

  .card h4 {
    margin: 0 0 8px 0;
    font-weight: 400;
  }

  .card .details-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    float: right;
  }

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

  .card .icon {
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card .percent {
    font-weight: bold;
  }

    .content .items .item{
        display: flex;
        flex-direction: row;
        gap:16px;
        border:1px solid rgba(0, 0, 0, 0.171);
        border-radius:8px;
        padding: 8px 8px;
        align-items: center;
        font-weight: 500;
    }
    
    .content .items{
        display: flex;
        flex-direction: column;
        gap: 6;
        width: 90%;
    }
    .content h3{
        font-size: 14px;
        color: var(--primary);
        margin-top: 16px;
        font-family:  "Inter", sans-serif ;
        line-height: 24px;
        font-weight: 500;
    }
    .content h1{
        font-family: "Archivo", sans-serif;
        font-size: 30px;
        letter-spacing: -1.2px;
        font-weight: 500;
        
    }
    .content h1 span{
        background-color: var(--h1);
        height: 60px;
        width: 248px;
        padding: 6px 4px;
        font-family: "Archivo", sans-serif;
        border-radius: 6px;
    }
    .content p{
        font-family:  "Inter", sans-serif ;
        font-size:15px;
        font-weight:400;
        color: #3C4049;
        width: 90%;
    }
}




@media(max-width:468px){
    .second-section{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20%;
        margin-top: 35px;
        padding: 0px 16px;
        margin-bottom: 120px;
        background-color: white;
        flex-wrap: wrap;
    } 
    .merge{
        width: 100%;
        margin: auto;
    }
    .container {
        position: relative;
        width: fit-content;
        display: inline-block;
        height: 60vh;
      }
    .container img{
        height:60vh;
    }
      .background-image {
        border-radius: 20px;
        width: 100%;
        display: block;
        height: 400px;
        
      }
    hr{
        background-color: #e9e9e98f;
        height: 1px;
    }
      .card {
        position: absolute;
        bottom: 40px;
        right: -2%;
        background-color: white;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        width: 220px;
        font-size: 14px;
        border:0.8px solid var(--primary);
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-family: "Inter", sans-serif;
      }
    
      .card h4 {
        margin: 0 0 8px 0;
        font-weight: 400;
      }
    
      .card .details-btn {
        background-color: var(--primary);
        color: white;
        border: none;
        padding: 6px 12px;
        border-radius: 6px;
        cursor: pointer;
        float: right;
      }
    
      .card .stats {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
      }
    
      .card .icon {
        background-color: var(--primary);
        color: white;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    
      .card .percent {
        font-weight: bold;
      }
    
    .content .items .item{
        display: flex;
        flex-direction: row;
        gap:16px;
        border:1px solid rgba(0, 0, 0, 0.171);
        border-radius:8px;
        padding: 8px 8px;
        align-items: center;
        font-weight: 500;
    }
    
    .content .items{
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    .content h3{
        font-size: 14px;
        color: #008000;
        margin-top: 24px;
        font-family:  "Inter", sans-serif ;
        line-height: 24px;
        font-weight: 500;
    }
    .content h1{
        font-family: "Archivo", sans-serif;
        line-height: 40px;
        font-size: 28px;
        letter-spacing: -1.2px;
        font-weight: 500;
        
    }
    .content h1 span{
        background-color: #00800021;
        height: 60px;
        width: 248px;
        padding: 6px 4px;
        font-family: "Archivo", sans-serif;
        border-radius: 6px;
    }
    .content p{
        font-family:  "Inter", sans-serif ;
        font-size:15px;
        font-weight:400;
        color: #3C4049;
        width: 100%;
    }
    .content{
        display:flex;
        flex-direction:column;
        gap:12px;
        width: 100%;
    }
    .image{
        display: flex;
        justify-content: center;
        margin: 8px auto;
        height: 56px;
        width: 32px;
        background-color: white;
    }
}
/*third section*/
.main{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px; 
    padding: 77px 124px;
    align-items: center;
    background-color:var(--background);
    
}
.main .texts{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 65%;
}
.grid{
    display: flex;
    flex-direction: row;
    gap: 0px;
    margin-top: 16px;
}
.grid1{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.grid11{
    height: 180px;
    width: 28.5vw;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.grid11 img{
    width: 48px;
    height: 48px;
}
.texts h3{
    font-family: "inter", sans-serif;
    font-size:14px;
    color: var(--primary);
    font-weight: 500;
}
.texts h1{
    font-family: "Archivo", sans-serif;
    margin: 8px 0px;
    background-color: var(--h1);
    padding: 7px 4px;
    
    width: 500px;

    justify-content: center;
    font-size: 32px;
    letter-spacing: -1.2px;
    font-weight: 500;
    border-radius: 6px;
    
}
.texts p{
    font-family: "inter", sans-serif;
    font-size:14.5px;
    color: #3C4049;
    line-height: 24px;
    letter-spacing: -0.12px;
    width: 90%;
    
}
.grid_text h3{
    font-family: "Archivo", sans-serif;
    color: black;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: -0.72px;
    
}
.grid_text p{
    font-family: "inter", sans-serif;
    font-size:14.5px;
    color: #3C4049;
    line-height: 24px;
    letter-spacing: -0.18px;
    width: 75%;
    
}
.imge{
    width: 50%;
     margin: auto;
}
.imge img{
    width: 100%;
    height: 500px;
}
@media(max-width:1200px){
    .main{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 32px; 
        padding: 77px 70px;
        align-items: center;
        background-color:var(--background);
        
    }
}
@media(max-width:1000px){
    .main{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 32px; 
        padding: 57px 56px;
        align-items: center;
        background-color:var(--background);
        flex-wrap: wrap-reverse;
        
    }
    .main .texts{
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .grid{
        display: flex;
        flex-direction: row;
        margin-top: 16px;
        width: 80%;
        
    }
    .grid1{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .grid11{
        height: 220px;
        
        
        width: 45vw;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .grid11 img{
        width: 48px;
        height: 48px;
    }
    .texts h3{
        font-family: "inter", sans-serif;
        font-size:14px;
        color: var(--primary);
        font-weight: 500;
    }
    .texts h1{
        font-family: "Archivo", sans-serif;
        margin: 8px 0px;
        background-color: var(--h1);
        padding: 6px 4px;
        max-width: 500px;
        width: 90%;
        justify-content: center;
        font-size: 30px;
        letter-spacing: -1.2px;
        font-weight: 500;
        border-radius: 6px;
        
    }
    .texts p{
        font-family: "inter", sans-serif;
        font-size:14.5px;
        color: #3C4049;
        line-height: 24px;
        letter-spacing: -0.12px;
        width: 90%;
        
    }

    .grid_text h3{
        font-family: "Archivo", sans-serif;
        color: black;
        font-size: 22px;
        line-height: 36px;
        letter-spacing: -0.72px;
        
    }
    .grid_text p{
        font-family: "inter", sans-serif;
        font-size:14.5px;
        color: #3C4049;
        line-height: 24px;
        letter-spacing: -0.18px;
        width: 75%;
        
    }
    .imge{
        width: 90%;
        align-items: center;
        display: flex;
        justify-content: center;
        margin: auto;
    }
    .imge img{
        width: 85%;
        max-width: 400px;
        height:480px;
        margin: auto;
        
    }
}
@media(max-width:650px){
.grid{
        display: flex;
        flex-direction: row;
        gap: 16px;
        margin-top: 16px;
        flex-wrap: wrap;
        width: 100%;
    }
    .grid1{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        width: 100%;
    }
    .grid11{
        height: 120px;
        width: 100%;
    
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    }

@media(max-width:468px){
    .main{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 32px; 
        padding: 77px 16px;
        align-items: center;
        background-color:var(--background);
        flex-wrap: wrap-reverse;
        
    }
    .main .texts{
        display: flex;
        flex-direction: column;
        gap: 8px;
        
        width: 100%;
    }
    .grid{
        display: flex;
        flex-direction: row;
        gap: 16px;
        margin-top: 16px;
        flex-wrap: wrap;
        width: 100%;
    }
    .grid1{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        width: 100%;
    }
    .grid11{
        height: 120px;
        width: 100%;
    
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    .texts h3{
        font-family: "inter", sans-serif;
        font-size:14px;
        color: var(--primary);
        margin-top: 24px;
        font-weight: 500;
    }
    .texts h1{
        font-family: "Archivo", sans-serif;
        margin: 8px 0px;
        
        padding: 7px 4px;
        justify-content: center;
        font-size: 28px;
        letter-spacing: -1.2px;
        font-weight: 500;
        border-radius: 6px;
        width: 90%;
        line-height: 32px;
        
    }
    .texts p{
        font-family: "inter", sans-serif;
        font-size:14px;
        color: #3C4049;
        line-height: 24px;
        letter-spacing: -0.12px;
        width: 100%;
        
    }
    .grid_text h3{
        font-family: "Archivo", sans-serif;
        color: black;
        font-size: 20px;
        line-height: 36px;
        letter-spacing: -0.72px;
        
    }
    .grid_text p{
        font-family: "inter", sans-serif;
        font-size:14.5px;
        color: #3C4049;
        line-height: 24px;
        letter-spacing: -0.18px;
        
    }
    .imge{
        width: 90%;
    }
    .imge img{
        width: 100%;
        height: 400px;
    }
}
/*fourth section*/
.fourth_main{
    display: flex;
    padding: 56px 124px;
    flex-direction: column;
    padding-bottom: 20px;
    gap: 8px;
    
}
.fourth_main h3{
    font-family: "inter", sans-serif;
    font-size:14px;
    color: var(--primary);
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}
.fourth_main h1 span{
    font-family: "Archivo", sans-serif;
    margin: 8px 0px;
    background-color: var(--h1);
    padding: 7px 4px;
    justify-content: center;
    border-radius: 6px;
    
}
.fourth_part h1{
    font-family: "Archivo", sans-serif;
    margin-bottom: 16px;
    font-size: 40px;
    letter-spacing: -1.2px;
    font-weight: 500;
    
}
.fourth_main a{
    line-height: 24px;
}
.fourth_part{
    display: flex;
    flex-direction: row;
    
    justify-content:space-between;
    align-items: center;
    place-items: center;
}

.fourth_part a{
    text-decoration: none;
    color: #008000;
    background-color:#00800024;
    padding: 8px 24px;
    border-radius: 99px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    display:inline-flex;
    flex-direction:row;
    gap:16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
    
}
.fourth_part a:hover{
    background-color: white;
    transform: scale(1.05);
}
.fourth_part i{
    display: inline-flex;
    border: 2px solid #008000;
    border-radius: 100%;
    font-size: 14px;
    padding: 3px 4px;
}
.image_text{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap:24px;
    height: 700px;
    width: 100%;  
}
 
.image_text h3{
    font-size: 18px;
color: #3C4049;
line-height: 32px;
letter-spacing: -0.3px;
}
.image_text p{
    color: #3C4049;
    font-size: 14.5px;
    font-family: "Inter", sans-serif;
    line-height: 24px;
    letter-spacing: -0.08px;
    height: 160px;
}
.image_text .first {
    width: 33%;
    
    
}
    .image_text .second{
    width: 33%;
    
    
}
    .image_text .third{
    width: 33%;
    
    
}

.image_text .first img{
    width: 25vw;
    height: 400px;
    
    
}
    .image_text .second img{
    width: 25vw;
    height: 400px;
    
    
}
    .image_text .third img{
    width: 25vw;
    height: 400px;
    
    
}

.image_text .real{
    
    color: #008000;
}
.image_text a{
    text-decoration: none;
    color: #008000;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0px;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in;
    
}
.image_text a:hover{
    transform: scale(1.05);
    color: #008000;
    font-size:15px ;
}
.image_text i{
    padding: 2px 3px;
    border: 2px solid #008000;
    font-size: 10px;
    border-radius: 100%;
    background-color: #008000;
    color: white;
    align-items: center;
}
@media(max-width:1200px){
    .fourth_main{
        display: flex;
        padding: 56px 70px;
        flex-direction: column;
        padding-bottom: 20px;
        gap: 8px;
        
    }
    .fourth_part{
        display: flex;
        justify-content: space-between;
        align-items: center;

    }
    .fourth_part .button{
        width: 30%;
    }
    .fourth_part a{
        text-decoration: none;
        color: #008000;
        background-color:#00800024;
        padding: 8px 24px;
        border-radius: 99px;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 500;
        display:inline-flex;
        flex-direction:row;
        gap:16px;
        transition: var(--background) 0.3s ease;
        
    }
    .fourth_part i{
        display: inline-flex;
        border: 2px solid #008000;
        border-radius: 100%;
        font-size: 14px;
        padding: 3px 4px;
    }

    .fourth_part h1{
        font-family: "Archivo", sans-serif;
        margin-bottom: 16px;
        font-size: 40px;
        letter-spacing: -1.2px;
        font-weight: 500;
        width:65%;
    }
    .image_text p{
        color: #3C4049;
        font-size: 14.5px;
        font-family: "Inter", sans-serif;
        line-height: 24px;
        letter-spacing: -0.08px;
        height: 200px;
    }
    .image_text h3{
        font-size: 18px;
    color: #3C4049;
    line-height: 32px;
    letter-spacing: -0.3px;
    height: 50px;
    }
}
@media(max-width:900px){
    .fourth_main{
        display: flex;
        padding: 56px 56px;
        flex-direction: column;
        padding-bottom: 20px;
        gap: 8px;
        
    }
    .fourth_main h3{
        font-family: "inter", sans-serif;
        font-size:14px;
        color: var(--primary);
        margin-top: 24px;
        margin-bottom: 16px;
        font-weight: 500;
    }
    .fourth_main h1 span{
        font-family: "Archivo", sans-serif;
        margin: 8px 0px;
        background-color: var(--h1);
        padding: 7px 4px;
        justify-content: center;
        border-radius: 6px;
        
    }
    .fourth_part h1{
        font-family: "Archivo", sans-serif;
        margin-bottom: 16px;
        font-size: 32px;
        letter-spacing: -1.2px;
        font-weight: 500;
        line-height: 40px;
        width: 65%;
    }
    .fourth_main a{
        line-height: 24px;
    }
    
    .fourth_part{
       display: flex;
       justify-content: space-between;

    }
    .fourth_part .button{
        width: 30%;
    }
    .fourth_part a{
        text-decoration: none;
        color: #008000;
        background-color:#00800024;
        padding: 8px 24px;
        border-radius: 99px;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 500;
        display:inline-flex;
        flex-direction:row;
        gap:16px;
        transition: var(--background) 0.3s ease;
        
    }
    .fourth_part i{
        display: inline-flex;
        border: 2px solid #008000;
        border-radius: 100%;
        font-size: 14px;
        padding: 3px 4px;
    }
   
    .image_text{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap:24px;
        height: 100%;
        width: 100%;
        flex-wrap: wrap;
        
        
        
        
    }
     
    .image_text h3{
        font-size: 17px;
    color: #3C4049;
    line-height: 32px;
    letter-spacing: -0.3px;
    }
    .image_text p{
        color: #3C4049;
        font-size: 14px;
        font-family: "Inter", sans-serif;
        line-height: 24px;
        letter-spacing: -0.08px;
        height: 100%;
        max-height: 120px;
    }
    .image_text .first {
        width: 100%;
        margin-bottom: 50px;
        
        
    }
        .image_text .second{
        width: 100%;
        margin-bottom: 50px;
        
        
    }
        .image_text .third{
        width: 100%;
        margin-bottom: 50px;
        
        
    }
    
    .image_text .first img{
        width: 40vw;
        height: 450px;
        max-width: 400px;
        
    }
        .image_text .second img{
        width: 40vw;
        height: 450px;
        max-width: 400px;
        
    }
        .image_text .third img{
        width: 40vw;
        height: 450px;
        max-width: 400px;
        
        
    }
    
    .image_text .real{
        
        color: #008000;
    }
    .image_text a{
        text-decoration: none;
        color: #008000;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        line-height: 24px;
        align-items: center;
    }
    .image_text i{
        padding: 2px 3px;
        border: 2px solid #008000;
        font-size: 10px;
        border-radius: 100%;
        background-color: #008000;
        color: white;
        align-items: center;
    }
    
}
@media(max-width:840px){
    .fourth_main{
        display: flex;
        padding: 56px 32px;
        flex-direction: column;
        padding-bottom: 20px;
        gap: 8px;
        
    }
    .fourth_part{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: -20px;
    }
    .fourth_part .button{
        margin-left: 0px;
        width: 50%;
    }
    .fourth_part a{
        text-decoration: none;
        color: #008000;
        background-color:#00800024;
        padding: 11px 20px;
        border-radius: 99px;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 500;
        display:inline-flex;
        flex-direction:row;
        gap:16px;
        transition: var(--background) 0.3s ease;
        
    }
    .fourth_part i{
        display: inline-flex;
        border: 2px solid #008000;
        border-radius: 100%;
        font-size: 14px;
        padding: 3px 4px;
    }

    .fourth_part h1{
        font-family: "Archivo", sans-serif;
        margin-bottom: 16px;
        font-size: 30px;
        letter-spacing: -1.2px;
        font-weight: 500;
        line-height: 48px;
        width: 100%;
        
    }
    .image_text .first img{
        width: 60vw;
        
        
        
    }
        .image_text .second img{
        width: 60vw;
        
        
    }
        .image_text .third img{
        width: 60vw;
        
        
        
    }
    .image_text p{
        color: #3C4049;
        font-size: 14.5px;
        font-family: "Inter", sans-serif;
        line-height: 24px;
        letter-spacing: -0.08px;
        
    }
    
}

@media(max-width:600px){
    .fourth_main{
        display: flex;
        padding: 56px 16px;
        flex-direction: column;
        gap: 8px;
        
        
    }
    .fourth_main h3{
        font-family: "inter", sans-serif;
        font-size:14px;
        color: var(--primary);
        margin-top: 24px;
        margin-bottom: 8px;
        font-weight: 500;
    }
    .fourth_main h1 span{
        font-family: "Archivo", sans-serif;
        margin: 8px 0px;
        background-color: var(--h1);
        padding: 7px 4px;
        justify-content: center;
        border-radius: 6px;
        
    }
    .fourth_main h1{
        font-family: "Archivo", sans-serif;
        margin-bottom: 16px;
        font-size: 28px;
        letter-spacing: -1.2px;
        font-weight: 500;
        line-height: 48px;
        width: 100%;
        
    }
    
    .fourth_part{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .fourth_part .button{
        width: 50%;
    }
    .fourth_part a{
        text-decoration: none;
        color: #008000;
        background-color:#00800024;
        padding: 12px 20px;
        border-radius: 99px;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 500;
        display:inline-flex;
        flex-direction:row;
        gap:16px;
        transition: var(--background) 0.3s ease;
        
    }
    .fourth_part i{
        display: inline-flex;
        border: 2px solid #008000;
        border-radius: 100%;
        font-size: 14px;
        padding: 3px 4px;
    }
   
    .image_text{
        display: flex;
        flex-direction: column;
        justify-content:space-between;
        gap: 32px;
        width: 100%; 
        height: 100%;
    }
     
    .image_text h3{
        font-size: 17px;
    color: #3C4049;
    line-height: 32px;
    letter-spacing: -0.3px;
    }
    .image_text p{
        color: #3C4049;
        font-size: 14px;
        font-family: "Inter", sans-serif;
        line-height: 24px;
        letter-spacing: -0.08px;
        height: 100%;
        max-height: 200px;
        margin-bottom: 20px;
        
    }
    .image_text img{
        width: 100%;
        
        
    }
    
    .image_text .real{
        
        color: #008000;
    }
    .image_text a{
        text-decoration: none;
        color: #008000;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        line-height: 24px;
        align-items: center;
        margin-top: 30px;
    }
    .image_text i{
        padding: 2px 3px;
        border: 2px solid #008000;
        font-size: 10px;
        border-radius: 100%;
        background-color: #008000;
        color: white;
        align-items: center;
    }
    .image_text .first {
        width: 100%;
        
        
    }
        .image_text .second{
        width: 100%;
        
        
    }
        .image_text .third{
        width: 100%;
        
        
    }
    
    .image_text .first img{
        width: 90%;
        height: 360px;
        
    }
        .image_text .second img{
        width: 90%;
        height: 360px;
        
    }
        .image_text .third img{
        width: 90%;
        height: 360px;
        
        
    }
    
    
}
@media(max-width:400px){
    .fourth_part .button{
        width: 70%;
        margin-top: -10px;
    }
    .fourth_main{
        display: flex;
        padding: 56px 16px;
        flex-direction: column;
        gap: 8px;
        
        
    }
    .fourth_main h3{
        font-family: "inter", sans-serif;
        font-size:14px;
        color: var(--primary);
        margin-top: 24px;
        margin-bottom: 8px;
        font-weight: 500;
    }
    .fourth_main h1 span{
        font-family: "Archivo", sans-serif;
        margin: 8px 0px;
        background-color: var(--h1);
        padding: 7px 4px;
        justify-content: center;
        border-radius: 6px;
        
    }
    .fourth_main h1{
        font-family: "Archivo", sans-serif;
        margin-bottom: 16px;
        font-size: 28px;
        letter-spacing: -1.2px;
        font-weight: 500;
        line-height: 48px;
        width: 100%;
        
    }
    
    .fourth_part{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .fourth_part .button{
        width: 90%;
    }
    .fourth_part a{
        text-decoration: none;
        color: #008000;
        background-color:#00800024;
        padding: 12px 20px;
        border-radius: 99px;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 500;
        display:inline-flex;
        flex-direction:row;
        gap:16px;
        transition: var(--background) 0.3s ease;
        
    }
    .fourth_part i{
        display: inline-flex;
        border: 2px solid #008000;
        border-radius: 100%;
        font-size: 14px;
        padding: 3px 4px;
    }
   
    .image_text{
        display: flex;
        flex-direction: column;
        justify-content:space-between;
        gap: 32px;
        width: 100%; 
        height: 100%;
    }
     
    .image_text h3{
        font-size: 17px;
    color: #3C4049;
    line-height: 32px;
    letter-spacing: -0.3px;
    }
    .image_text p{
        color: #3C4049;
        font-size: 14px;
        font-family: "Inter", sans-serif;
        line-height: 24px;
        letter-spacing: -0.08px;
        height: 100%;
        max-height: 200px;
        margin-bottom: 20px;
        
    }
    .image_text img{
        width: 100%;
        
        
    }
    
    .image_text .real{
        
        color: #008000;
    }
    .image_text a{
        text-decoration: none;
        color: #008000;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        line-height: 24px;
        align-items: center;
        margin-top: 30px;
    }
    .image_text i{
        padding: 2px 3px;
        border: 2px solid #008000;
        font-size: 10px;
        border-radius: 100%;
        background-color: #008000;
        color: white;
        align-items: center;
    }
    .image_text .first {
        width: 100%;
        
        
    }
        .image_text .second{
        width: 100%;
        
        
    }
        .image_text .third{
        width: 100%;
        
        
    }
    
    .image_text .first img{
        width: 90%;
        height: 350px;
        
    }
        .image_text .second img{
        width: 90%;
        height: 350px;
        
    }
        .image_text .third img{
        width: 90%;
        height: 350px
        
        
    }
    
    

}
/* fifth section*/
.fifth_section{
    display: flex;
    flex-direction: column;
    background-color:var(--background);
    padding-bottom: 223px;
    margin-top: 56px;

}
.fifth_section .image{
        display: flex;
        justify-content: center;
        margin: 0px auto;
        height: 74px;
        width: 41px;
    
}
.mainn{
    padding: 24px 124px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    place-items: center;
    margin-top: 35px;

}
.mainn .ime{
    width: 40%;
}
.mainn .ime img{
    width: 100%;
    
}
.testimonial{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 55%;
}
.testimonial h3{
    font-family: "inter", sans-serif;
    font-size:14px;
    color: var(--primary);
    margin-top: 24px;
    font-weight: 500;
    
}
.testimonial h1{
    font-family: "Archivo", sans-serif;
    width:90%;
    
    background-color: var(--h1);
    padding: 7px 4px;
    justify-content: center;

    letter-spacing: -1.2px;
    border-radius: 6px;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
    
}
.testimonial p{
    font-family: "inter", sans-serif;
    font-size:24px;
    color: #3C4049;
    margin-bottom: 24px;    
} 
@media(max-width:1200px){
    .mainn{
        padding: 0px 70px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        place-items: center;
        margin-top: 35px;
    
    }
    .fifth_section{
        display: flex;
        flex-direction: column;
        background-color:var(--background);
        padding-bottom: 120px;
    
    
    }
}
@media(max-width:900px){
    .fifth_section{
        display: flex;
        flex-direction: column;
        background-color:var(--background);
        padding-bottom: 180px;
    margin-top: 56px;
    
    
    }
    .fifth_section .image{
            display: flex;
            justify-content: center;
            margin: 0px auto;
            height: 64px;
            width: 40px;
        
    }
    .mainn{
        padding: 0px 56px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        place-items: center;
        margin-top: 35px;
    
    }
    .mainn .ime{
        width: 90%;
        margin: auto;
        
    }
    .mainn .ime img{
        width: 70%;
        height: 450px;
        margin: auto;
        align-items: center;
        display: flex;
        justify-content: center;
        
    }
    .testimonial{
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    .testimonial h3{
        font-family: "inter", sans-serif;
        font-size:14px;
        color: var(--primary);
        margin-top: 24px;
        font-weight: 500;
        
    }
    .testimonial h1{
        font-family: "Archivo", sans-serif;
        width: 90%;
        max-width:520px;
        background-color: var(--h1);
        padding: 7px 4px;
        justify-content: center;
    
        letter-spacing: -1.2px;
        border-radius: 6px;
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 24px;
        
    }
    .testimonial p{
        font-family: "inter", sans-serif;
        font-size:24px;
        color: #3C4049;
        margin-bottom: 24px;    
    } 
}
@media(max-width:600px){
    .mainn .ime{
        width: 90%;
        margin: auto;
        
    }
    .mainn .ime img{
        width: 90%;
        height: 400px;
        margin: auto;
        align-items: center;
        display: flex;
        justify-content: center;
        
    }
}
@media(max-width:468px){
    .fifth_section{
        display: flex;
        flex-direction: column;
        background-color:var(--background);
        padding-bottom: 80px;
    
    
    }
    .fifth_section .image{
            display: flex;
            justify-content: center;
            margin: 0px auto;
            height: 56px;
            width: 32px;
        
    }
    .mainn{
        padding: 0px 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        place-items: center;
        margin-top: 35px;
        
    
    }
    .mainn .ime{
        width: 100%;
        margin: auto;
    }
    .mainn .ime img{
        width: 90%;
        height: 400px;
        
    }
    .testimonial{
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    .testimonial h3{
        font-family: "inter", sans-serif;
        font-size:14px;
        color: var(--primary);
        margin-top: 24px;
        font-weight: 500;
        
    }
    .testimonial h1{
        font-family: "Archivo", sans-serif;
        padding: 7px 4px;
        justify-content: center;
        letter-spacing: -1.2px;
        border-radius: 6px;
        font-size:28px;
        font-weight: 500;
        margin-bottom: 24px;
        width:90%;
        background-color: var(--background);
        line-height: 40px;
        
    }
    .testimonial p{
        font-family: "inter", sans-serif;
        font-size:18px;
        color: #3C4049;
        margin-bottom: 24px;
        
        
        
    } 
    
}

.pre_footer{
    background-color: var(--background);
    

}
.man{
    background-color: #008000;
    display:flex;
    flex-direction: row;
    margin-left: 124px;
    margin-right: 124px;
    margin-bottom: 93px;
    padding: 92px 67px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}
.mainnn{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    
}
.mainnn h1{
    font-family: "Archivo", sans-serif;
    color: white;
    font-size: 38px;
    font-weight: 500;
}
.mainnn p{
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: white;
    font-weight: 200;
    letter-spacing: -0.18px;
    width: 80%;
}
.mainnn .buttons{
    display: flex;
    gap: 16px;
    font-family: poppins;
    font-weight: 500;
    font-size: 24px;
    margin-top: 0px;
    width: 90%;
    
}
.mainnn .buttons .a{
    color:white;
    border: 1px solid white;
    font-weight: bold;
    padding: 10px 0px;
    text-decoration: none;
    border-radius: 32px;
    width: 45%;
    text-align: center;
    
}
.mainnn .buttons .a:hover{
    color: black;
    background-color:white;
    border: none;
}
.mainnn .buttons .b{
    color:#008000;
    background-color: white;
    font-weight: bold;
    padding: 10px 0px;
    text-decoration: none;
    border-radius: 32px;
    width: 45%;
    text-align: center;
    
}
.mainnn .buttons .b:hover{
    color: white;
    background-color:black;
}

.other{
    background-color: white;
    padding: 35px 35px;
    width: 35%;
    height: 35vh;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: "Inter", sans-serif;

    border-radius: 18px;
    margin-top: -16px;
    justify-content: center;
    
}
.others{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.others p{
    font-weight: 500;
}
.go{
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    font-weight: 400;
}
.last{
    border-radius: 100%;
    padding: 14px 17px;
    background-color: #008000;
    color: white;
}
.dis{
    font-size: 20px;
}
.others button{
    background-color: #008000;
    padding: 12px 24px;
    border-radius: 6px;
    color: white;
    cursor: default;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 1s ease;
    cursor: pointer;

}
.others button:hover{
    background-color: white;
    border: 2px solid #008000;
    color: #008000;
}
.hr{
    background-color: #e9e9e9;
    height: 1.3px;
    border: none;
}
@media(max-width:1200px){
    .man{
        background-color: #008000;
        display:flex;
        flex-direction: row;
        margin-left: 70px;
        margin-right: 70px;
        margin-bottom: 93px;
        padding: 92px 40px;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
        align-items: center;
    }
    .mainnn{
        width: 60%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        
    }
    .other{
        background-color: white;
        padding: 35px 30px;
        width: 38%;
        height: 220px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        font-family: "Inter", sans-serif;
    
        border-radius: 18px;
        margin-top: -16px;
        justify-content: center;
        
    }
    
}
@media(max-width:900px){
    .pre_footer{
        background-color: var(--background);
        
    
    }
    .man{
        background-color: #008000;
        display:flex;
        flex-direction: row;
        margin-left: 56px;
        margin-right: 56px;
        margin-bottom: 93px;
        padding: 92px 24px;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
        align-items: center;
    }
    .mainnn{
        width: 55%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: auto;
        
    }
    .mainnn h1{
        font-family: "Archivo", sans-serif;
        color: white;
        font-size: 30px;
        font-weight: 500;
    }
    .mainnn p{
        font-family: "Inter", sans-serif;
        font-size: 15px;
        color: white;
        font-weight: 200;
        letter-spacing: -0.18px;
        width: 90%;
    }
    .mainnn .buttons{
        display: flex;
        gap: 12px;
        font-family: poppins;
        font-weight: 500;
        font-size: 24px;
        margin-top: 0px;
        width: 90%;
        
    }
    .mainnn .buttons .a{
        color:white;
        border: 1px solid white;
        font-weight: 500;
        padding: 12px 0px;
        text-decoration: none;
        border-radius: 32px;
        width: 80%;
        text-align: center;
        
    }
    .mainnn .buttons .a:hover{
        color: black;
        background-color:white;
        border: none;
    }
    .mainnn .buttons .b{
        color:#008000;
        background-color: white;
        font-weight: 500;
        padding: 12px 0px;
        text-decoration: none;
        border-radius: 32px;
        width: 80%;
        text-align: center;
        
    }
    .mainnn .buttons .b:hover{
        color: white;
        background-color:black;
    }
    
    .other{
        background-color: white;
        padding: 24px 35px;
        width: 40%;
        height: 250px;
        display: flex;
        flex-direction: column;
        gap: 32px;
        font-family: "Inter", sans-serif;
    
        border-radius: 18px;
        margin-top: -16px;
        justify-content: center;
        
    }
    .others{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .others p{
        font-weight: 500;
    }
    .go{
        display: flex;
        flex-direction: row;
        gap: 16px;
        align-items: center;
        font-weight: 400;
    }
    .last{
        border-radius: 100%;
        padding: 14px 17px;
        background-color: #008000;
        color: white;
    }
    .dis{
        font-size: 16px;
    }
    .others button{
        background-color: #008000;
        padding: 12px 24px;
        border-radius: 6px;
        color: white;
        cursor: default;
        border: none;
    
    }
    .hr{
        background-color: #e9e9e9;
        height: 1.3px;
        border: none;
    }
    
}
@media(max-width:800px){
    .man{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 92px 48px;
    }
    .mainnn{
        width: 100%;
    }
    .mainnn .buttons{
        width: 100%;
        display: flex;
        flex-direction: row;
        margin-bottom: 70px;
    }
    .mainnn .buttons .a{
        width: 48%;
    }
    .mainnn .buttons .b{
        width: 48%;
    }
   
    .other{
        background-color: white;
        padding: 35px 35px;
        width: 90%;
        height: 40vh;
        display: flex;
        flex-direction: column;
        gap: 32px;
        font-family: "Inter", sans-serif;
    
        border-radius: 18px;
        margin-top: -16px;
        justify-content: center;
        
        
    }
}
@media(max-width:700px){
    .mainnn .buttons{
        display: flex;
        gap: 24px;
        font-family: poppins;
        font-weight: 500;
        font-size: 16px;
        margin-top: 0px;
        width: 100%;
        
    }
    .mainnn .buttons .a{
        color:white;
        border: 1px solid white;
        font-weight: bold;
        padding: 12px 0px;
        text-decoration: none;
        border-radius: 32px;
        width: 90%;
        text-align: center;
        
    }
    .mainnn .buttons .a:hover{
        color: black;
        background-color:white;
        border: none;
    }
    .mainnn .buttons .b{
        color:#008000;
        background-color: white;
        font-weight: bold;
        padding: 12px 0px;
        text-decoration: none;
        border-radius: 32px;
        width: 90%;
        text-align: center;
        
    }
    .mainnn .buttons .b:hover{
        color: white;
        background-color:black;
    }
    
}
@media(max-width:468px){
    .pre_footer{
        background-color: var(--background);
        
    
    }
    .man{
        background-color: #008000;
        display:flex;
        flex-direction: row;
        margin-left: 16px;
        margin-right:16px;
        margin-bottom: 93px;
        padding: 92px 24px;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        
        width: 92%;
    }
    .mainnn{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: auto;
        
    }
    .mainnn h1{
        font-family: "Archivo", sans-serif;
        color: white;
        font-size: 28px;
        font-weight: 500;
    }
    .mainnn p{
        font-family: "Inter", sans-serif;
        font-size: 16px;
        color: white;
        font-weight: 200;
        letter-spacing: -0.18px;
        width: 100%;
    }
    .mainnn .buttons{
        display: flex;
        gap: 24px;
        font-family: poppins;
        font-weight: 500;
        font-size: 16px;
        margin-top: 0px;
        width: 100%;
        
    }
    .mainnn .buttons .a{
        color:white;
        border: 1px solid white;
        font-weight: bold;
        padding: 12px 0px;
        text-decoration: none;
        border-radius: 32px;
        width: 100%;
        text-align: center;
        
    }
    .mainnn .buttons .a:hover{
        color: black;
        background-color:white;
        border: none;
    }
    .mainnn .buttons .b{
        color:#008000;
        background-color: white;
        font-weight: bold;
        padding: 12px 0px;
        text-decoration: none;
        border-radius: 32px;
        width: 100%;
        text-align: center;
        
    }
    .mainnn .buttons .b:hover{
        color: white;
        background-color:black;
    }
    
    .other{
        background-color: white;
        padding: 24px 20px;
        width: 100%;
        height: 32vh;
        display: flex;
        flex-direction: column;
        gap: 24px;
        font-family: "Inter", sans-serif;
        border-radius: 18px;
        justify-content: center;
        margin: auto;
        
        
    }
    .others{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .others p{
        font-weight: 500;
    }
    .go{
        display: flex;
        flex-direction: row;
        gap: 16px;
        align-items: center;
        font-weight: 400;
    }
    .last{
        border-radius: 100%;
        padding: 14px 17px;
        background-color: #008000;
        color: white;
    }
    .dis{
        font-size: 18px;
    }
    .others button{
        background-color: #008000;
        padding: 12px 24px;
        border-radius: 6px;
        color: white;
        cursor: default;
        border: none;
    
    }
    .hr{
        background-color: #e9e9e9;
        height: 1.3px;
        border: none;
    }
   
} 











footer{
    background-color: black;
    padding: 120px 226px;
    color: white;
}
.first_column{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-bottom: 56px;
}
.company_details{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.company_details img{
    background: none;        /* Removes background */
    padding: 0;              /* Removes padding */
    margin: 0;               /* Optional: removes margin */
    width: 200px;            /* Resize the logo if needed */
    height: 120px;
    object-fit: contain;
 

}
.company_details p{
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    color: #9EA2AD;
    letter-spacing: -0.08px;
}
.info{
    display: flex;
    flex-direction: row;
    gap: 8px;

}
.info p{
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 32px;
    padding: 12px;
}
.your_mail{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.your_mail p{
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
form{
    background-color: black;
    
    
}
input{
    background-color: black;
    border: 1px solid rgba(255, 255, 255, 0.043);
    padding: 12px;
    width: 270px;
}
input:hover{
    border: 1px solid #008000;
}
.your_mail  a{
    background-color: #008000;
    border: none;
    font-weight: 500;
    color: white;
    padding: 12px 24px;
    border-radius: 32px;
    transition: all 1s ease;
    cursor:pointer;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    align-items: center;
    font-size: 14px;
    display: flex;
    justify-content: center;

}
.your_mail a:hover{
    transform:scale(1.05);
    background-color: white;
    border: 1.5px solid #008000;
    color: #008000;
}
footer hr{
   background-color: #008000;
   height: 1px;
   border: none;
}
.third_column{
    margin-top: 56px;
    display: flex;
    flex-direction: row;

}
.third_column .icons{
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 50%;
    font-size: 20px;
}
.third_column .icons a{
    cursor: pointer;
transition: all 1s ease;
}
.third_column .icons a:hover{
    transform: scale(1.05);
}
.third_column .items{
    display: flex;
    flex-direction: row;
    width: 50%;
    justify-content: space-between;
    
}

.third_column .products a{
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color:#9EA2AD;
  list-style: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
}
.third_column .products li{
    list-style: none;
    font-size: 14px;
    margin: 20px auto;
}
.third_column .products h3{
    margin-bottom: 12px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
.fourth_column{
    font-family: "Inter", sans-serif;
    font-size: 14px;
    margin-top: 56px;
    justify-content: right;
    text-align: right;
    font-weight: 200;
}
.fa-linkedin-in{
color: white;

}

.fa-whatsapp{
    color:#075E54;
}
.fa-instagram{

color: #C32AA3;

}
@media(max-width:1200px){
    footer{
        background-color: black;
        padding: 120px 80px;
        color: white;
    }
}
@media(max-width:900px){
    footer{
     background-color: black;
     padding:60px 56px;
     color: white;
     width: 100%;
 }
 .first_column{
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 56px;
 }
 .company_details{
     width: 100%;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }
 .company_details img{
    background: none;     
    padding: 0;            
    margin: 0;             
    width: 200px;            
    height: 100px;
    object-fit: contain;
 
 
 }
 .company_details p{
     font-family: "Inter", sans-serif;
     font-size: 15px;
     color: #9EA2AD;
     letter-spacing: -0.08px;
 }
 .info{
     display: flex;
     flex-direction: row;
     gap: 8px;
 
 }
 .info p{
     border: 1px solid rgba(255, 255, 255, 0.13);
     border-radius: 32px;
     padding: 12px;
 }
 .your_mail{
     display: flex;
     flex-direction: column;
     gap: 16px;
     width: 100%;
 }
 .your_mail p{
     font-family: "Inter", sans-serif;
     font-size: 14px;
 }
 form{
     background-color: black;
     
     
 }
 input{
     background-color: black;
     border: 1px solid rgba(255, 255, 255, 0.043);
     padding: 12px;
     width: 100%;
 }
 input:hover{
     border: 1px solid #008000;
 }
 .your_mail a{
     background-color: #008000;
     border: none;
     font-weight: bold;
     color: white;
     padding: 12px 24px;
     border-radius: 32px;
     width: 50%;
     align-items: center;
     margin: auto;
     transition: all 1s ease;
     cursor:pointer;
     text-decoration: none;
 
 }
 footer hr{
    background-color: #008000;
    height: 1px;
    border: none;
 }
 .third_column{
     margin-top: 56px;
     display: flex;
     flex-direction: column;
     gap: 48px;
 
 }
 .third_column .icons{
     display: flex;
     flex-direction: row;
     gap: 24px;
     width: 100%;
 }
 .third_column .items{
     display: flex;
     flex-direction: row;
     width: 100%;
     justify-content: space-between;
 
     
 }
 
 .third_column .products a{
   display: flex;
   flex-direction: column;
   gap: 8px;
   text-decoration: none;
   color:#9EA2AD;
   list-style: none;
   font-family: "Inter", sans-serif;
   font-size: 14px;
   font-weight: 300;
 }
 .third_column .products li{
     list-style: none;
     font-size: 14px;
     margin: 20px auto;
 }
 .third_column .products h3{
     margin-bottom: 12px;
     font-family: "Inter", sans-serif;
     font-size: 14px;
 }
 .fourth_column{
     font-family: "Inter", sans-serif;
     font-size: 14px;
     margin-top: 56px;
     justify-content: left;
     text-align: left;
     font-weight: 200;
 
 }
 }

@media(max-width:480px){
   footer{
    background-color: black;
    padding:60px 16px;
    color: white;
    width: 100%;
}
.first_column{
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
margin-bottom: 56px;
}
.company_details{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.company_details img{
    background: none;        /* Removes background */
    padding: 0;              /* Removes padding */
    margin: 0;               /* Optional: removes margin */
    width: 170px;            /* Resize the logo if needed */
    height: 100px;
    object-fit: contain;
    

}
.company_details p{
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #9EA2AD;
    letter-spacing: -0.08px;
}
.info{
    display: flex;
    flex-direction: column;
    gap: 8px;

}
.info p{
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 32px;
    padding: 12px;
}
.your_mail{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.your_mail p{
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
form{
    background-color: black;
    
    
}
input{
    background-color: black;
    border: 1px solid rgba(255, 255, 255, 0.043);
    padding: 12px;
    width: 100%;
}
input:hover{
    border: 1px solid #008000;
}
.your_mail a{
    background-color: #008000;
    border: none;
    font-weight: bold;
    color: white;
    padding: 12px 24px;
    border-radius: 32px;
    width: 70%;
    margin: auto;
    transition: all 1s ease;
    cursor:pointer;
    text-decoration: none;
    justify-content: center;
    font-family: "Archivo", sans-serif;
    font-family: 14px;
    align-items: center;
    place-items: center;

}
footer hr{
   background-color: #008000;
   height: 1px;
   border: none;
}
.third_column{
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 48px;

}
.third_column .icons{
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
}
.third_column .items{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;

    
}

.third_column .products a{
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color:#9EA2AD;
  list-style: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
}
.third_column .products li{
    list-style: none;
    font-size: 14px;
    margin: 20px auto;
}
.third_column .products h3{
    margin-bottom: 12px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
.fourth_column{
    font-family: "Inter", sans-serif;
    font-size: 14px;
    margin-top: 56px;
    justify-content: left;
    text-align: left;
    font-weight: 200;

}
}





  .blog-section {
  padding: 126px 80px;
  
  }
    
  
  
  .section-title  {
    text-align: left;
    font-size: 32px;
    margin-bottom: 30px;
    font-family: "Archivo", sans-serif;
    font-weight: 500;
    letter-spacing: -1.2px;
    margin-top: 20px;
    
  }
  .section-title  span{
    background-color: var(--h1);
    padding: 7px 1px;
    justify-content: center;

    letter-spacing: -1.2px;
    border-radius: 6px;
  }
  .pre-section {
    text-align: left;
    font-size: 14px;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #008000;
  }
  .blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .blog-card {
    background-color: #04990404;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    flex: 1 1 30%;
    
  }
  
  .blog-card h3 {
    margin-top: 0;
    font-size: 18px;
    font-family: "Archivo", sans-serif;
    min-height:50px;
    font-weight: 500;
  }
  
  .blog-card p {
    font-size: 14px;
    color: #555;
    font-family: "Inter", sans-serif;
    min-height: 80px;
  }
  
  .read-more-btn {
    color: #008000;
    border: none;
    background-color: #04990404;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
    justify-content: right;
    margin-left: 65%;
  }
  
  .read-more-btn:hover {
    background-color:white;
    color: #333;
    font-size: 16px;
  }
  
  .blog-intro {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
  }
  .blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px  0 0;
    margin-bottom: 16px;
  }
  
  .view-more-container {
    text-align: center;
    margin-top: 2rem;
  }
  
  .view-more-btn {
    background-color: #008000;
    color: white;
    padding: 12px 48px;
    border: none;
    border-radius: 32px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .view-more-btn:hover {
    background-color: #679322; /* Slightly darker green on hover */
  }
  
@media(max-width:1000px){
    .blog-section {
        padding:126px 56px;
        
      }
      
      .section-title  {
        text-align: left;
        font-size: 32px;
        margin-bottom: 30px;
        font-family: "Archivo", sans-serif;
        font-weight: 500;
        letter-spacing: -1.2px;
        margin-top: 20px;
        
      }
      .section-title  span{
        background-color: var(--h1);
        padding: 7px 1px;
        justify-content: center;
    
        letter-spacing: -1.2px;
        border-radius: 6px;
      }
      .pre-section {
        text-align: left;
        font-size: 14px;
        margin-bottom: 8px;
        font-family: "Inter", sans-serif;
        font-weight: 500;
        color: #008000;
      }
      .blog-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin: auto;
      }
      
      .blog-card {
        background-color: #04990404;
        padding: 50px 20px;
        border-radius: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex: 1 1 45%;
        width: 45%;
  max-width: 45%;
  min-width: 280px;
        
      }
      
      .blog-card h3 {
        margin-top: 0;
        font-size: 18px;
        font-family: "Archivo", sans-serif;
        min-height:50px;
        font-weight: 500;
      }
      
      .blog-card p {
        font-size: 14px;
        color: #555;
        font-family: "Inter", sans-serif;
        min-height: 80px;
      }
      
      .read-more-btn {
        color: #008000;
        border: none;
        background-color: #04990404;
        cursor: pointer;
        margin-top: 10px;
        transition: background-color 0.3s;
        justify-content: right;
        margin-left: 70%;
      }
      
      .read-more-btn:hover {
        background-color:white;
        color: #333;
        font-size: 16px;
      }
      
      .blog-intro {
        font-size: 16px;
        color: #333;
        margin-bottom: 10px;
        line-height: 1.2;
        font-family: "Inter", sans-serif;
      }
      .blog-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px 10px  0 0;
        margin-bottom: 16px;
      }
      
    
}
@media(max-width:650px){
    .blog-card {
        background-color: #04990404;
        padding: 50px 20px;
        border-radius: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex: 1 1 90%;
        width:90%;
  max-width: 90%;
  min-width: 280px;
        
      }
      .read-more-btn {
        color: #008000;
        border: none;
        background-color: #04990404;
        cursor: pointer;
        margin-top: 10px;
        transition: background-color 0.3s;
        justify-content: right;
        margin-left: 75%;
      }
      .blog-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px 10px  0 0;
        margin-bottom: 16px;
      }
      .section-title  {
        text-align: left;
        font-size: 32px;
        margin-bottom: 30px;
        font-family: "Archivo", sans-serif;
        font-weight: 500;
        letter-spacing: -1.2px;
        margin-top: 20px;
        line-height: 56px;
        
      }
      
}
  @media(max-width:480px){
    .blog-section {
        padding:126px 16px;
        
      }
      
      .section-title  {
        text-align: left;
        font-size: 32px;
        margin-bottom: 30px;
        font-family: "Archivo", sans-serif;
        font-weight: 500;
        letter-spacing: -1.2px;
        margin-top: 20px;
        line-height: 48px;
        
      }
      .section-title  span{
        background-color: var(--h1);
        padding: 7px 1px;
        justify-content: center;
    
        letter-spacing: -1.2px;
        border-radius: 6px;
      }
      .pre-section {
        text-align: left;
        font-size: 14px;
        margin-bottom: 8px;
        font-family: "Inter", sans-serif;
        font-weight: 500;
        color: #008000;
      }
      .blog-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        
      }
      
      .blog-card {
        background-color: #04990404;
        padding: 40px 25px;
        border-radius: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex: 1 1 85%;
        width:90%;
        max-width: 90%;
        min-width: 20px;
        
      }
      
      .blog-card h3 {
        margin-top: 0;
        font-size: 18px;
        font-family: "Archivo", sans-serif;
        min-height:50px;
        font-weight: 500;
      }
      
      .blog-card p {
        font-size: 14px;
        color: #555;
        font-family: "Inter", sans-serif;
        min-height: 80px;
      }
      
      .read-more-btn {
        color: #008000;
        border: none;
        background-color: #04990404;
        cursor: pointer;
        margin-top: 10px;
        transition: background-color 0.3s;
        justify-content: right;
        margin-left: 70%;
      }
      
      .read-more-btn:hover {
        background-color:white;
        color: #333;
        font-size: 16px;
      }
      
      .blog-intro {
        font-size: 16px;
        color: #333;
        margin-bottom: 10px;
        line-height: 1.2;
        font-family: "Inter", sans-serif;
      }
      .blog-img {
        width:96%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px 10px  0 0;
        margin-bottom: 16px;
      }
      
  }