.page-banner {
  background: #0f8dc0;
  background-size: cover;
  background-position: center;
  padding: 30px 0 10px;
  color: #fff;
  margin-bottom: 0px;
  margin-top: 135px;
  text-align: left;
  border-top: 2px solid #fff;
}
.page-banner .banner-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
}
.page-banner .breadcrumb {
  background: transparent;
  justify-content: start;
}
.page-banner .breadcrumb-item {
  color: #fff;
}
.page-banner .breadcrumb-item a {
  color: #fff;
}
.page-banner .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}
.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 991px) {
  .page-banner {
    padding: 80px 0;
  }
  .page-banner .banner-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .page-banner {
    padding: 30px 0 10px;
    margin-top: 101px;
  }
  .page-banner .banner-title {
    font-size: 32px;
  }
}

.about-section {
  padding: 40px 0;
}
.about-section p {
  text-align: justify;
}
.about-section .why-choose-us {
  text-align: left;
}
.about-section .about-image img {
  border-radius: 10px;
  height: 100%;
}
.about-section .about-content h2 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.about-section .about-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #0f8dc0;
}
@media (max-width: 768px) {
  .about-section .about-content {
    margin-top: 30px;
  }
}

.sec-title {
  background: #0f8dc0;
  background-size: cover;
  background-position: center;
  padding: 20px 0 0px;
  color: #fff;
  margin-bottom: 0px;
  margin-top: 0px;
  text-align: left;
}
.sec-title h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-box {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feature-box i {
  font-size: 2.5rem;
  color: #0f8dc0;
  margin-bottom: 15px;
}
.feature-box h4 {
  margin-bottom: 10px;
}
.feature-box p {
  margin-bottom: 0;
  color: #6c757d;
}

.service-card {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-card .icon-box {
  width: 70px;
  height: 70px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.service-card .icon-box i {
  font-size: 30px;
  color: #0f8dc0;
}
.service-card h4 {
  margin-bottom: 15px;
}
.service-card p {
  color: #6c757d;
  margin-bottom: 0;
}

.team-section .team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.team-section .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.team-section .team-card .team-image {
  position: relative;
  overflow: hidden;
}
.team-section .team-card .team-image img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
.team-section .team-card .team-info {
  padding: 20px;
  text-align: center;
}
.team-section .team-card .team-info h4 {
  margin-bottom: 5px;
}
.team-section .team-card .team-info p {
  color: #6c757d;
  margin: 0;
}
.team-section .team-card:hover .team-image img {
  transform: scale(1.05);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #0f8dc0;
}
.section-title .lead {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 30px;
  }
  .section-title h2 {
    font-size: 28px;
  }
}

.stats-counter {
  background: #f8f9fa;
  padding: 60px 0;
  margin: 60px 0;
}
.stats-counter .counter-item {
  text-align: center;
}
.stats-counter .counter-item .counter-number {
  font-size: 36px;
  font-weight: 700;
  color: #0f8dc0;
  margin-bottom: 10px;
}
.stats-counter .counter-item .counter-text {
  color: #6c757d;
  font-size: 16px;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 991px) {
  .about-section .row {
    --bs-gutter-y: 2rem;
  }
}
@media (max-width: 768px) {
  .stats-counter .counter-item {
    margin-bottom: 30px;
  }
  .stats-counter .counter-item:last-child {
    margin-bottom: 0;
  }
}
.core-values-list .value-card {
  background: #c3f5fe;
  border: 2px solid #0f8dc0;
  border-top: 0;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.core-values-list .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.core-values-list .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #0f8dc0, #45bff0);
  transition: all 0.3s ease;
}
.core-values-list .value-card .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 141, 192, 0.1);
  position: relative;
  transition: all 0.3s ease;
}
.core-values-list .value-card .icon-wrapper::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 100px;
  border-radius: 50%;
  border: 1px dashed rgba(15, 141, 192, 0.3);
  animation: rotate 20s linear infinite;
}
.core-values-list .value-card .icon-wrapper i {
  font-size: 24px;
  color: #0f8dc0;
  transition: all 0.3s ease;
}
.core-values-list .value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #0b6a91;
}
.core-values-list .value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 141, 192, 0.3);
}
.core-values-list .value-card:hover::before {
  height: 5px;
}
.core-values-list .value-card:hover .icon-wrapper {
  background: #0f8dc0;
}
.core-values-list .value-card:hover .icon-wrapper i {
  color: #fff;
  transform: scale(1.1);
}
.core-values-list .value-card:hover h3 {
  color: #0f8dc0;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 991px) {
  .core-values-list .value-card {
    padding: 20px 15px;
  }
  .core-values-list .value-card .icon-wrapper {
    width: 80px;
    height: 80px;
  }
  .core-values-list .value-card .icon-wrapper::after {
    width: 90px;
    height: 90px;
  }
  .core-values-list .value-card .icon-wrapper i {
    font-size: 32px;
  }
  .core-values-list .value-card h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .core-values-list .row {
    --bs-gutter-y: 0rem;
  }
}/*# sourceMappingURL=about.css.map */