@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Sour Gummy", sans-serif;
  }

  nav {
    background: #fff;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    animation: slideTop 1.5s ease-in;
    animation-fill-mode: forwards;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0 30px; 
  }

  html {
    scroll-behavior: smooth;
  }
  

  label.logo {
    color: #46b740;
    font-size: 50px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
  }

  nav ul {
    float: right;
    margin-right: 30px;
  }

  nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
  }

  nav ul li a {
    color: #46b740;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
  }

  a.active,
  a:hover {
    background: #46b740;
    color: #fff;
    transition: 0.5s;
  }

  .checkbtn {
    font-size: 22px;
    color: #46b740;
    float: right;
    line-height: 80px;
    margin-right: 30px;
    cursor: pointer;
    display: none;
  }

  #check {
    display: none;
  }

  .button {
    height: 60px;
    width: 250px;
    border: none;
    border-radius: 30px;
    background-color: #46b740;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
  }
  
  .button:hover {
    background-color: #fff;
    color: #46b740;
  }

  .content-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    background: rgba(0, 0, 0, 0.2);
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; 
}


.content {
    color: white;
    width: 60%;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    animation: slideRight 1.5s ease-in;
    animation-fill-mode: forwards;
}

  
  .content h2 {
    font-weight: 600;
    font-size: 6vmin;
    margin-bottom: 20px;
  }
  
  .content p {
    font-size: 3vmin;
    margin-bottom: 20px;
  }
  
  .section2 {
    width: 80%;
    padding-top: 90px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .part1 {
    width: 40%;
  }
  
  .part1-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; 
  }
  
  .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 5px; 
  }

  .item{
    color: #7d7987;
  }

  .item p {
    font-size: 18px;
  }
  
  .part1 h2 {
    color: #112D58;
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2em;
  }
  
  .div-dec {
    width: 50px;
    height: 4px;
    background: #46b740;
    margin: 20px auto;
  }
  
  .part2 {
    width: 50%;
  }

  .number{
    color: #46b740;
    font-size: 55px;
    font-weight: bold;
    line-height: 1em;
  }
  .part2-paragraph p {
    font-weight: 700;
    font-size: 20px;
}

.part2-paragraph2 p{
  font-weight: 600;
  margin-bottom: -10px;
  font-size: 16px;
}

.btn {
  margin-top: 30px;
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 16px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  position: relative;
  background-color: #46b740;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
 }
 
 .btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #112D58;
  transform: translateX(-100%);
  transition: all .3s;
  z-index: -1;
 }
 
 .btn:hover::before {
  transform: translateX(0);
 }

 .content-team{
  padding-top: 150px;
 }

 .content-team h3{
  text-align: center;
  font-size: 50px;
  color: #46b740;
}

.content-team p{
  text-align: center;
  margin-top: 10px;
  font-size: 20px;
  color: #9ba1ad;
  line-height: 29px;
}

.container-team{
  display: grid;
  grid-template-columns: repeat(auto-fill, 400px);
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.col-team{
  margin-left: 20px;
  border-radius: 24px;
  transition: 1.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.col-team:hover {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.col-team img{
margin-top: 20px;
transition: 0.5s;
cursor: pointer;
width: 300px;
height: 300px;
border-radius: 25% 10%;
object-fit: cover;
}

.col-team img:hover{ 
  filter: brightness(70%)
}

.col-team h5{
  text-align: center;
  margin-top: 20px;
  color: #46b740;
  font-size: 29px;
  font-family: "Poppins" sans-serif;
  transition: 0.7s;
  cursor: pointer;
}


.col-team p{
  color: #8a8f99;
  font-size: 25px;
  margin-top: 10px;
  text-align: center;
}

.col-team{
  margin: 25px;
 }

.member-text  p{
  font-size: 18px;
}


.blog-section {
  width: 90%;
  margin: 100px auto;
  text-align: center;
}

.blog-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.blog-title h2 {
  font-size: 3rem;
  color: #112D58;
}

.read-all-btn {
  padding: 12px 24px;
  font-size: 1rem;
  color: white;
  background-color: #46b740;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.read-all-btn:hover {
  background-color: #3a9238;
}

.blog-cards {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-card {
  padding: 10px;
  width: calc(33.333% - 20px);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: scale(1.03);
}

.blog-card img {
  border-radius: 10px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 1rem;
  color: #7d7987;
  margin-bottom: 10px;
}

.blog-heading {
  font-size: 1.5rem;
  color: #46b740;
  margin-bottom: 10px;
}

.blog-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

 
footer{
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  background-color: #46b740;
  padding: 60px 8%;
}

ul{
  list-style: none;
}

.footer-col{
  width: 15%;
  margin: 0px 30px
}


.footer-col h4{
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
}



ul li:not(:last-child){
  margin-bottom: 8px;
}

footer ul li a{
  font-size: 15px;
  text-transform: capitalize;
  color: #fff;
  text-decoration: none;
  font-weight: 200;
  transition: 0.4s;
  padding: 5px;
}

footer ul li{
  display: block;
  margin: 10px 0px;
}

footer ul li a:hover{
border-radius: 5px;
  padding-left: 2px;
}


.input {
  width: 100%;
  margin-top: 20px;
  max-width: 150px;
  height: 15px;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid lightgrey;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
}

.firstfooter-p{
  color: #fff;
}

.secondfooter-p{
  color: #fff;
  margin-top: 15px;
}

@media (max-width: 920px){
  .footer-col{
      width: 50%;
      margin-bottom: 30px;
      text-align: center;
      margin: auto;
  }

  footer ul li a{
      margin: 20px 0px;
  }

  .footer-col h4::before{
      all: unset;
  }
}

@media(max-width: 576px){
  .footer-col{
      width: 100%;
      margin: 20px 0px;
  }
}

.copyright{
  display: flex;
  justify-content: center;
  justify-content: space-between;
  border-top: 1px solid lightgray;
  background-color: #46b740;
  padding: 35px;
  text-align: center;
  color: lightgray;
  font-weight: 300;
}












  @keyframes slideTop {
    0% {
      transform: translateY(-100px);
      opacity: 0;
    }

    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }

  @keyframes slideRight {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }

    100% {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  @keyframes slideLeft {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }

    100% {
      transform: translateX(0px);
      opacity: 1;
    }
  }



  @media (max-width: 890px) {
    nav ul {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background: #46b740;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: all 0.5s ease-in-out;
    }

    nav ul li {
      margin: 20px 0;
    }

    nav ul li a {
      color: #fff;
      font-size: 20px;
    }

    #check:checked ~ ul {
      left: 0;
    }

    .checkbtn {
      display: block;
    }

    .part1, .part2 {
      width: 100%; 
      text-align: center; 
    }
  
    .part1-content {
      flex-direction: column; 
      align-items: center;
    }
  
    .item {
      align-items: center; 
      text-align: center; 
    }
  
    .part1 h2 {
      font-size: 40px; 
    }

    .col-team {
      width: 90%;
  }

  .container-team {
      grid-template-columns: repeat(auto-fill, 90%);
  }

  label.logo {
    font-size: 45px; 
    padding: 0; 
    text-align: center; 
}

 nav ul {
    padding: 0; 
}
}

    


  @media (max-width: 1200px) {
    .content-box {
      padding: 1% 1%;
      text-align: center;
    }
  
    .content h2 {
      font-size: 7vmin;
      text-align: center;
    }
  
    .content p {
      font-size: 4vmin;
      text-align: center;
    }
  
    .button {
      width: 100%; 
      max-width: 300px; 
      font-size: 3.5vmin; 
      margin-top: 20px; 
    } 
    .blog-card {
      width: calc(50% - 15px);
    }
}

    
  
  @media (max-width: 480px) {
    .part1 h2 {
      font-size: 30px; 
    }
  
    .div-dec {
      width: 40px; 
      height: 3px;
    }
  
    .item {
      gap: 10px; 
    }
  }

    @media (max-width: 768px) {
      .blog-title {
        flex-direction: column;
        gap: 20px;
      }
    
      .read-all-btn {
        width: fit-content;
      }
    
      .blog-cards {
        flex-direction: column;
        align-items: center;
      }
    
      .blog-card {
        width: 100%;
      }
    }
    
  

  @media (max-width: 600px) {
    .content-box {
      padding: 1% 1%;
      text-align: center;
    }
  
    .content h2 {
      font-size: 7vmin;
      text-align: center;
    }
  
    .content p {
      font-size: 4vmin;
      text-align: center;
    }

    .section2{
      margin-top: 50px;
    }

    .part2-paragraph p {
      font-weight:600;
      font-size: 18px;
      margin-bottom: -5px;
  }

  .part2-paragraph{
    margin-top: 15px;
  }
  .content-team{
    margin-top: 100px;
  }

  .col-team img{
    width: 200px;
    height: 200px;
  }
 

  .content-team h3 {
    font-size: 8vmin;
  }

  .content-team p {
    font-size: 5vmin;
  }
  

   .content-team{
    margin-top: -20px;
   }

   .col-team{
    margin: 25px;
   }

   .box-group {
    flex-direction: column;
    align-items: center;
  }
  }

