
.breadcrumbs .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}
  

.breadcrumbs-content {
  width: 100%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start !important;
   text-align: left !important;
  gap: 10px;
  color: #fff;
}

.bre-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.bre-subhead {
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.breadcrumb-list li::after {
  content: ">";
  margin: 0 6px;
  color: #fff;
}
.breadcrumb-list li:last-child::after {
  content: "";
}

@media (max-width: 768px) {
  .breadcrumbs {
    height: auto !important;
    padding: 80px 20px !important;
    background-position: center center;
  }

  .breadcrumbs-content {
    max-width: 80%;
    text-align: left;
    align-items: flex-start;
  }

  .bre-title {
    font-size: 24px;
  }

  .bre-subhead {
    font-size: 14px;
  }
}
    .abt-wrap {
      background: #4CAF50;
        position: relative;
    }

    .about-container {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 1326px;
      width: 100%;
      margin: 0 auto;
      padding: 50px 20px;
      position: relative;
      flex-wrap: wrap;
    }

    .image-container {
      flex: 1 1 400px;
     
      justify-content: center;
      align-items: center;
      min-width: 400px;
    }

    .image-container img {
      width: 80%;
      max-width: 400px;
      z-index: 1;
    }

    .abt-container {
      flex: 1 1 500px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      position: relative;
      padding-left: 40px;
      min-width: 300px;
    }

    .content-box {
      max-width: 640px;
      width: 100%;
      background-color: #ffffff;
      padding: 20px 25px;
      border-radius: 6px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .content-box h2 {
      color:var(--main-color);
      font-size: 36px;
      margin-bottom: 15px;
    }

    .content-box p {
      color: var(--head-color);
      font-size: 16px;
      margin-bottom: 10px;
      line-height: 26px;
    }

    .content-box p span {
      color: var(--main-color);
      font-size: 36px;
      font-weight: bold;
      margin-right: 5px;
    }

    .rectangle {
      position: absolute;
      top: 50%;
      left: 40%;
      transform: translatey(-50%);
      width: 200px;
      height: 300px;
      background-color: #4caf50;
      border-left: 9px solid #fff;
      border-top: 9px solid #fff;
      border-bottom: 9px solid #fff;
      display: flex;
      align-items: center;

    }

    .small-rectangle {
      transform: translateX(-100%);
      width: 120px;
      height: 11px;
      background-color: #fff;

    }

    @media (max-width: 1200px) {
      .rectangle {
          left: 45%;
      }
    }
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .abt-container {
    padding-left: 0;
  }

  .rectangle {
   display: none;
  }

  .small-rectangle {
    display: none;
  }

  .content-box h2 {
    font-size: 28px;
  }

  .content-box p span {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .rectangle {
    display: none;
  }

  .small-rectangle {
    display: none;
  }

  .image-container {
    min-width: 250px;
  }

  .content-box h2 {
    font-size: 24px;
  }

  .content-box p span {
    font-size: 24px;
  }

  .abt-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 30px 15px;
  }

  .content-box {
    padding: 15px 20px;
  }

  .content-box h2 {
    font-size: 22px;
  }

  .content-box p {
    font-size: 14px;
    line-height: 24px;
  }

  .content-box p span {
    font-size: 22px;
  }
}


/* team section css */
.custom-team-section {
  padding: 60px 40px;     
  background-color: #fff;
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
}

.team-heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 60px;
  color: var(--main-color);
  text-align: left;
}

.custom-team-wrapper {
  padding-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.custom-team-card-1 {
  width: calc(25% - 30px);
  background-color: #EEEEEE;
  border-radius: 16px;
  padding-top: 60px;
  padding-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 60px;
}

.custom-team-card-1:hover {
  transform: translateY(-5px);
}
.team-card-content{
  padding: 10px 10px;
}
.team-img-wrapper {
  margin-top: -120px;
  margin-bottom: 20px;
}

.team-img-wrapper img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  /* border: 4px solid white; */
  background-color: white;
  display: block;
  margin: 0 auto;
}

.team-card-content h4 {
font-size: 16px;
font-weight: 600;
color: var(--head-color);


}

.team-card-content .role {
font-size: 16px;
font-weight: 700;
color: var(--head-color);
margin-bottom: 15px;
} 

.team-card-content .desc {
  font-size:16px;
  color: var(--muted-color);
font-weight: 400;
  padding: 0 10px;
}

/* Responsive Layouts */
@media (max-width: 1200px) {
  .custom-team-card {
    width: calc(33.33% - 30px); 
  }
}

@media (max-width: 768px) {
  .custom-team-card {
    width: calc(50% - 30px);
  }
  .team-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 60px;
    color: var(--main-color);
  }
}

@media (max-width: 500px) {
  .custom-team-card {
    width: 100%; 
  }
}

