@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:#00800004;
}

body{
    background-color: #00800009;
}
.hidde {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  .show {
    opacity: 1;
    transform: translateX(0);
  }
  
.hidd {
    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);
  }
.hidden{
    transform: translateY(100px);
    
    transition: transform 1.2s;
    opacity: 0;
    
}


.show{
    transform: translateY(0);
    
    
}
.overflow{
    opacity: 0;
    transition: opacity 2s, transform 1s;
    transform: translateY(100px);
}
.show{
    opacity: 1;
    transform: translateY(0);
}
.icon{
    opacity: 0;
    transform: rotate(60deg);
    transition: transform 2s;
}
.show{
    opacity: 1;
}
.icon{
    animation: rotate-icon 2s infinite;
}


/* 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: -80px;
    height: 84px;
    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: 74px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    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: -80px;
        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;
        
        
    
    }
}

.content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--background);
    padding: 109px 124px;
    align-items: center;
    gap: 48px;
    
}
.content .first{
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}
.content .first h1{
    font-size: 40px;
    letter-spacing: -1.2px;
    font-family: "Archivo", sans-serif;
    font-weight: 500;
    width: 100%;
    line-height: 64px;
}
.content .first p{
    color: #3C4049;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.27px;
    margin-bottom: 17px;
    line-height: 32px;
}
.second {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.second .email{
    padding: 24px;
    color: #9EA2AD;
    background-color: white;
    width: 100%;
    margin-bottom: 24px;
    border-radius: 8px;
}
.second form{
    background-color:#04a00403;
    
}
.second .message{
    padding-top: 24px;
    padding-bottom: 140px;
    padding-left: 24px;
    color: #9EA2AD;
    background-color: white;
    width: 100%;
    
    border-radius: 8px;
}

.second .button a{
    display: flex;
    padding: 20px 0px;
    text-decoration: none;
    color:white;
    list-style: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    background-color: #008000;
    width: 100%;
    border-radius: 32px;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 1s ease;
    cursor: pointer;


}
.second .button a:hover{
    background-color: white;
    color: #008000;
    border: 1px solid #008000;
}

.i{
    background-image: url("../images/Rectangle\ 20.jpg");
    background-color: #666769;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 80px;
    height: 400px;
    width: 100%;
}
@media(max-width:1200px){
    .content{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        background-color: var(--background);
        padding: 109px 80px;
        align-items: center;
        gap: 48px;
        
    }
    .i{
        background-image: url("../images/21.png");
        background-color: #666769;
        background-blend-mode: multiply;
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 80px;
        height: 300px;
        width: 100%;
    }
}
@media(max-width:900px){
    .content{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: var(--background);
        padding: 32px 56px;
        align-items: center;
        gap: 48px;
        
    }
    .content .first{
        width:100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 24px;
    }
    .content .first h1{
        font-size: 30px;
        letter-spacing: -1.2px;
        font-family: "Archivo", sans-serif;
        font-weight: 500;
        width: 100%;
        line-height: 50px;
    }
    .content .first p{
        color: #3C4049;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: -0.27px;
        margin-bottom: 17px;
        line-height: 32px;
    }
    .second {
      display: flex;
      flex-direction: column;
      gap: 24px;
      width: 100%;
    }
    .second .email{
        padding: 24px;
        color: #9EA2AD;
        background-color: white;
        width: 100%;
        margin-bottom: 24px;
        border-radius: 8px;
    }
    .second form{
        background-color:#04a00403;
        
    }
    .second .message{
        padding-top: 24px;
        padding-bottom: 140px;
        padding-left: 24px;
        color: #9EA2AD;
        background-color: white;
        width: 100%;
        
        border-radius: 8px;
    }
    
    .second .button a{
        display: flex;
        padding: 12px 0px;
        text-decoration: none;
        color:white;
        list-style: none;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 500;
        background-color: #008000;
        width: 70%;
        border-radius: 32px;
        text-align: center;
        align-items: center;
        justify-content: center;
        height: 48px;
        margin: auto;
    
    
    }
    
    .image{
        width: 100%;
        margin-top: 80px;
        
        
    
    }
    .image img{
        width: 100%;
        color: black;
        mix-blend-mode: multiply; 
        opacity: 0.75;
        height: 30vh;
    }
    .image img::before{
    color: black;
    z-index: 1000;
    }
    .i{
        background-image: url("../images/21.png");
        background-color: #666769;
        background-blend-mode: multiply;
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 80px;
        height: 40vh;
    }
}

@media(max-width:480px){
    .content{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: var(--background);
        padding: 32px 16px;
        align-items: center;
        gap: 48px;
        
    }
    .content .first{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 24px;
    }
    .content .first h1{
        font-size: 32px;
        letter-spacing: -1.2px;
        font-family: "Archivo", sans-serif;
        font-weight: 500;
        width: 100%;
        line-height: 50px;
    }
    .content .first p{
        color: #3C4049;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: -0.27px;
        margin-bottom: 17px;
        line-height: 32px;
    }
    .second {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .second .email{
        padding: 24px;
        color: #9EA2AD;
        background-color: white;
        width: 100%;
        margin-bottom: 24px;
        border-radius: 8px;
    }
    .second form{
        background-color:#04a00403;
        
    }
    .second .message{
        padding-top: 24px;
        padding-bottom: 140px;
        padding-left: 24px;
        color: #9EA2AD;
        background-color: white;
        width: 100%;
        
        border-radius: 8px;
    }
    
    .second .button a{
        display: flex;
        padding: 12px 0px;
        text-decoration: none;
        color:white;
        list-style: none;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 500;
        background-color: #008000;
        width: 100%;
        border-radius: 32px;
        text-align: center;
        align-items: center;
        justify-content: center;
        height: 48px;
    
    
    }
    
    .image {
        width: 100%;
        margin-top: 80px;
        height: 30vh; /* or any value to control the height */
        overflow: hidden; /* Hide any excess part of the image */
      }
      
      .image img {
        width: 100%;
        height: 100%; /* Ensure it covers the full container */
        object-fit: cover;
        object-position: 120% center; /* Ensure it's focused on the man */
        mix-blend-mode: multiply;
        opacity: 0.75;
      }
      
      .i{
        background-image: url("../images/21.png");
        background-color: #666769;
        background-blend-mode: multiply;
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 80px;
        height: 50vh;
    }
      
    
}

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;        /* Removes background */
    padding: 0;              /* Removes padding */
    margin: 0;               /* Optional: removes margin */
    width: 200px;            /* Resize the logo if needed */
    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: 180px;
    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;

}
}












