@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;
    --h1:#0080002a;
}

body{
    background-color:var(--background);
}
.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 1s;
    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: -60px;
    height: 80px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.navbar img{
    background: none;        /* Removes background */
    padding: 0;              /* Removes padding */
    margin: 0;               /* Optional: removes margin */
    width: 200px;            /* Resize the logo if needed */
    height: auto;
    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;
}
.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: -60px;
        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: auto;
        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;
        margin-top: -60px;
    
    }
}
@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;
        margin-top: -60px;
    }
    .navbar img{
        background: none;        /* Removes background */
        padding: 0;              /* Removes padding */
        margin: 0;               /* Optional: removes margin */
        width: 160px;            /* Resize the logo if needed */
        height: auto;
        object-fit: contain;
        
        
    
    }
}


















  
  /* === HEADER === */
  .blog-header {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-top:60px;
    background-color: #01321b;
  }
  
  .blog-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    color: #01321b;
    background-color: #01321b;
  }
  
  .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
    font-family: 'Archivo', sans-serif;

  }
  
  /* === LAYOUT === */
  .blog-main {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 124px;
    gap: 2rem;
  }
  
  .blog-left {
    flex: 1 1 60%;
  }
  
  .blog-right {
    flex: 1 1 30%;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    height: fit-content;
  }
  
  /* === SEARCH BAR === */
  .search-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
   
  }
  
  .search-bar input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
  }
  
  .search-bar button {
    padding: 0.5rem 1rem;
    background: #008000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
  }
  
  .search-bar button:hover {
    background: #00582e;
  }
  
  /* === CATEGORIES === */
  .categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: "Inter", sans-serif;
  }
  
  .categories button {
    padding: 0.5rem 1rem;
    background: #e0e0e0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
  }
  
  .categories button:hover {
    background: #008000;
    color: white;
  }
  
  /* === BLOG ITEMS === */
  .blog-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem;
    margin-bottom: 2rem;
  }
  
  .blog-item img {
    width: 100%;
    border-radius: 12px 0 0 12px;
    height: 200px;
    object-fit: cover;
  }
  
  .blog-meta {
    font-size: 12px;
    color: #666;
    margin-top: 0.5rem;
    font-family: "Inter", sans-serif;
  }
  
  .blog-item h4 {
    margin-top: 0.5rem;
    font-size: 24px;
    color: #008000;
    font-family: "Archivo", sans-serif;
  }
  
  .blog-item p {
    margin: 0.5rem 0;
    font-size: 15px;
    color: #444;
    font-family: "Inter", sans-serif;
  }
  
  .read-more {
    display: inline-block;
    margin-top: 2rem;
    color: #008000;
    text-decoration: none;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: left;
    font-size: 15px;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }
  
  /* === RECENT POSTS === */
  .blog-right{
    font-family: "Inter", sans-serif;
    padding: 24px 32px;
  }
  .blog-right ul {
     list-style: unset;
    margin: 4px 4px;
  }
  hr{
    margin: 4px 0px;
    background-color: #444;
    height: 2px;
  }
  .blog-right li {
    margin-bottom: 0.75rem;
  }
  
  .blog-right a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
  }
  
  .blog-right a:hover {
    color: #008000;
  }
  .simple-pagination {
    display: flex;
    justify-content: space-between;
    margin: 40px 0px;
  }
  
  .simple-pagination button {
    padding: 16px 20px;
    border: 1.5px solid #008000;
    background: white;
    color: #008000;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    gap: 16px;
    width: 30%;
    font-size: 15px;
    font-family: "Inter", sans-serif;
  }
  
  .simple-pagination button:hover {
    background: #008000;
    color: white;
  }
  .simple-pagination button i{
margin: 0px 4px;
font-size: 14px;
  }
  



  /* === RESPONSIVE === */
  @media(max-width:1000px){
    .blog-main {
        display: flex;
        flex-wrap: wrap;
        padding: 2rem 56px;
        gap: 2rem;
      }
      .simple-pagination button {
        padding: 10px 20px;
        border: 1.5px solid #008000;
        background: white;
        color: #008000;
        border-radius: 999px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        gap: 15px;
        width: 40%;
        font-size: 15px;
        font-family: "Inter", sans-serif;
      }
  }
  
  @media (max-width: 768px) {
    .blog-main {
      flex-direction: column;
      padding: 2rem 48px;
    }

    .blog-left,
    .blog-right {
      flex: 1 1 100%;
    }
  
    .overlay-text {
      font-size: 2rem;
    }
    .simple-pagination button {
        padding: 12px 20px;
        border: 1.5px solid #008000;
        background: white;
        color: #008000;
        border-radius: 999px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        gap: 15px;
        width: 30%;
        font-size: 15px;
        font-family: "Inter", sans-serif;
      }
  }
  @media (max-width: 468px) {
    .blog-main {
      flex-direction: column;
      padding: 2rem 16px;
    }

    .blog-left,
    .blog-right {
      flex: 1 1 100%;
    }
  
    .overlay-text {
      font-size: 2rem;
    }
    .simple-pagination button {
        padding: 12px 20px;
        border: 1.5px solid #008000;
        background: white;
        color: #008000;
        border-radius: 999px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        gap: 15px;
        width: 40%;
        font-size: 15px;
        font-family: "Inter", sans-serif;
      }
  }
  
 




  footer{
    background-color: black;
    padding: 120px 226px;
    color: white;
    margin-top: 200px;
}
.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: auto;
    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: auto;
    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: auto;
    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;

}
}



