@import url('https://fonts.googleapis.com/css2?family=Barlow: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&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Lato';
    src: url(fonts/LATO-FONT/Lato-Regular.ttf);
}

@font-face {
    font-family: 'Gilroy';
    src: url(fonts/GILROY-FONT/Gilroy-Regular.ttf);
}
body, html{
    height: 100%;
    width: 100%;
    font-family: "Barlow", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.about-nk-enterprise{
    padding: 2vw 3vw;
    margin-top: 6vw;
}
.about-nk-enterprise h2{
    font-size: 2vw;
    color: #004914;
    margin: 2vw 0 4vw 0;
    text-transform: uppercase;
    font-family:poppins,  sans-serif;
}

.about-nk-enterprise .underline{
  /* display: inline-block; */
  border-bottom: 2px solid black;
  width: 5%;

}
.text-info h3{
    font-size: 2vw;
    color: #004914;
    margin-bottom: 4vw;
}
.text-info  p{
    text-align: justify;
    padding: 1.5vw 0;
    width: 52vw;
    font-size: 1.2vw;
}
.about-nk-enterprise-flex{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.about-nk-enterprise-flex img{
    width: 38vw;
    border-radius: 4px;
}
#about-page {
    width: 100%;
    background-color: #f7f7f7;
    padding: 6vw 3vw;
}



section .team {
    margin: 10vw 0;
}
.text-info p span{
  font-style: italic;
  color: #00C389;
}
h2 {
    font-size: 2.5vw;
    color: #004914;
}

 p {
    font-size: 1.3vw;
    color: #555;
    line-height: 1.8vw;
}

/* Mission & Vision */
#mission-vision {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2vw ;
  }
  
  .content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;
    width: 100%;
  }
  
  .text-section {
    width: 60%;
  }
  
  .text-section h2 {
    font-size: 2.3vw;
    font-family: 'poppins', sans-serif;
    color: #004914;
    margin-bottom: 1vw;
    border-bottom: 2px solid #00290b10;
    display: inline-block;
  }
  
  .text-section p {
    font-size: 1.3vw;
    line-height: 1.8vw;
    color: #555;
    margin-bottom: 2.5vw;
  }
  
  .image-section {
    width: 40%;
  }
  
  .image-section img {
    max-width: 100%;
    height: auto;
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .content-wrapper {
      flex-direction: column;
      text-align: center;
      margin: 7vw 0;
    }
  
    .text-section {
      width: 100%;
    }
  
    .text-section h2 {
      font-size: 5vw;
    }
  
    .text-section p {
      font-size: 3.5vw;
      line-height: 5vw;
      text-align: justify;
      padding: 6vw;
    }
  
    .image-section {
      width:100%;
      margin-top: 3vw;
    }
    .image-section img {
        height: auto;
        width: 100%;
    }
  }
  

/* Meet the Team */
.team {
    text-align: center;
    padding-bottom: 7vw;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.team h2{
    margin: 8vw 0;
    color:#004914;
    font-family: poppins,sans-serif;
}
.member img {
    width: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.member:hover img {
    transform: scale(1.1);
}
.member {
    width: 20vw;
    text-align: center;
}

.member img {
    width: 100%;
    border-radius: 50%;
}

.member h3 {
    font-size: 1.5vw;
    color: #004914;
    margin-top: 1vw;

}

.member p {
    font-size: 1.2vw;
    color: #505050;
}
/* Testimnial */

/* Testimnial */

.testimonial-flex{
  display: flex;
  flex-direction: column;
  justify-content: center;
align-items: center;
padding: 5vw 0 10vw 0;
}




.testimonial-container {
  
  width: 100%;
  max-width: 70vw;
  overflow: hidden;
  position: relative;
}

.testimonial-item {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #F7F7F7;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  transition: opacity 0.5s ease-in-out;
}

.testimonial-item.active {
  display: flex;
}

.testimonial-content {
  font-size: 1.2rem;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: bold;
  color: #555;
  margin-top: 10px;
}

.stars {
  color: #f39c12;
}

.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #717171;
}

/* Optional: add arrow buttons for manual navigation */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}





/* Milestones */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.milestone {
    background-color: #ffffff;
    padding: 2vw;
    margin: 1vw 0;
    border-radius: 10px;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
}

.milestone h3 {
    font-size: 1.8vw;
    color: #E7B032;
}

/* Core Values */
.core-values ul {
    list-style-type: none;
    padding: 0;
}

.core-values li {
    font-size: 1.5vw;
    color: #003f5f;
    margin-bottom: 1.5vw;
}

/* Behind the Scenes */
.behind-scenes img {
    width: 50%;
    margin-top: 2vw;
    border-radius: 10px;
}

/* Certifications */
.certifications ul {
    list-style-type: none;
    padding: 0;
}

.certifications li {
    font-size: 1.5vw;
    color: #003f5f;
    margin-bottom: 1.5vw;
}


/* =============== Responsiveness ================ */
@media (max-width: 768px) {
    .about-nk-enterprise{
        padding: 7vw;
    }
    .about-nk-enterprise h2{
      display: none;
    }
    .text-info p{
        font-size: 3.5vw;
        width: auto;
        color: #363636;
        padding-top: 7vw;
    }
 .text-info h3{
  margin-top: 18vw;

 }
    .about-nk-enterprise h2 {
        font-size: 4.5vw; 
        margin-top: 25vw;
    }
    h2 {
      font-size: 1.5rem;
    }
  
    .about-nk-enterprise-flex h3 {
      font-size: 6.5vw;
    }
  .about-us-img img{
    width: 86vw;
  }
    p {
        line-height: 1.4;
      font-size: 1rem;
    }
  
  
    .about-nk-enterprise-flex {
      flex-direction: column;
    }
    .team-members .member h3{
    margin-top: 5vw;
    font-size: 5.5vw;
  }
  .team h2 {
    margin: 20vw 0 10vw 0;
  }
    .team-members .member p{
    font-size:3.5vw;
    padding-bottom: 5vw;
  }
    .team-members, .timeline {
      flex-direction: column;
      align-items: center;
    }

  /* testimonial */
  
      .testimonial-container {
          width: 100%;
          padding: 10px;
      }

      .testimonial-item {
          padding: 15px;
      }

      .testimonial-content {
          font-size: 1rem; /* Adjust text size */
          padding: 0 15px;
      }

      .arrow {
          font-size: 1.5rem; /* Adjust arrow size */
      }

      .dot {
          height: 10px;
          width: 10px;
      }
  
    .milestone h3 {
        font-size: 4vw;
    }
    .core-values li {
        font-size: 4vw;
}
.right-side{
  padding: 0;
}
  
.certifications li {
    font-size: 3.5vw;
}
    .team-members .member, .timeline .milestone {
      width: 100%;
    }
  
    .team-members img{
        width: 70vw;
      }
  
  }
/* =============== Responsiveness ================ */

p{
  font-family:barlow, gilroy;
}
