 
 .breadcrumb-wrapper {
  background: #bbedea;
  padding: 12px 15px;
  text-align: center;
}

.main-menu ul li a.active,
.ot-mobile-menu ul li a.active {
    color: #00b7ae !important;
    font-weight: 700;
}

.main-menu ul li.menu-item-has > a.active,
.ot-mobile-menu ul li.menu > a.active {
    background: rgba(0,183,174,0.1);
    border-radius: 4px;
    padding: 5px 10px;
}


.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
}

.breadcrumb li {
  font-size: 16px;
  color: #000;
  margin: 0 5px;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 8px;
  color: #000;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb li a:hover {
  color: #000;
  text-decoration: underline;
}

.breadcrumb li.active {
  color: #00b7ae;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb li {
    font-size: 14px;
  }
}

 .why-card {
    background-color: #e0fafa;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
  }

  .why-card:hover {
    background-color: #c4f3f1;
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  }

   .hover-zoom {
    transition: transform 0.4s ease;
  }

  .hover-zoom:hover {
    transform: scale(1.05);
  }

  .about-banner {
    background-image: url('assets/img/hero/hero-bg1-1.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    position: relative;
  }

  .about-banner::before {
   
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
  }

  .about-banner .container {
    position: relative;
    z-index: 2;
  }


   .hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .card-hover-text {
    transition: color 0.3s ease, font-weight 0.3s ease;
  }

  .hover-card:hover .card-hover-text {
    color: #00b7ae;
    font-weight: 700;
  }

   .hover-box {
    border-left: 5px solid #00b7ae;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
  }

  .hover-box:hover {
    background-color: #e0f7f6;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .core-card {
  transition: all 0.3s ease;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
}
.core-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  background: #e0f7f7;
}

/* Responsive typography */
#core-values h2 {
  font-size: 2rem;
}


@media (max-width: 768px) {
  #core-values h2 {
    font-size: 1.75rem;
  }

}

@media (max-width: 576px) {
  #core-values h2 {
    font-size: 1.5rem;
  }
 
}

/* products css */
.section-wrapper {
    padding: 50px 20px !important;
    max-width: 1200px !important;
    margin: auto !important;
}

h2.custom-heading,
h3.custom-heading,
h4.custom-heading,
h5.custom-heading,
h6.custom-heading {
    color: #00b7ae !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-transform: capitalize !important;
    font-size: 24px !important;
}

.content-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    margin-bottom: 50px !important;
}

.content-box {
    flex: 1 !important;
    min-width: 300px !important;
    padding: 25px !important;
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.content-box p {
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

.feature-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.feature-list li {
    position: relative !important;
    padding-left: 50px !important;
    margin-bottom: 18px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}

.feature-list li::before {
    content: "\f00c" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #00b7ae !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.img-box {
    flex: 1 !important;
    min-width: 300px !important;
    padding: 20px !important;
    text-align: center !important;
}

.img-box img {
    width: 100% !important;
    max-width: 400px !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

@media(max-width: 900px) {
    .content-row {
        flex-direction: column !important;
    }

    .img-box {
        order: -1 !important;
    }
}
