
#about-us-24 {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
}
#about-us-24 .left-col,
#about-us-24 .right-col {
  flex: 1 1 50%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  text-align: center;
}
#about-us-24 .left-col {
  background-color: #f9f9f9;
  color: #333;
}
#about-us-24 .left-col h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
#about-us-24 .left-col p {
  font-size: 1rem;
  line-height: 1.7;
}
#about-us-24 .right-col {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}
#about-us-24 .right-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
#about-us-24 .right-col .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}
#about-us-24 .right-col .overlay-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
#about-us-24 .right-col .overlay-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  #about-us-24 {
    flex-direction: column;
  }
  #about-us-24 .left-col,
  #about-us-24 .right-col {
    flex: 1 1 100%;
    min-height: auto;
  }
}



#why-choose-us-19 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
}
#why-choose-us-19 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#why-choose-us-19 .section-header h2 {
  font-weight: 700;
  color: #343a40;
}
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline-container::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #e9ecef;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
  z-index: 1;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  z-index: 2;
}
.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #fff;
  border: 4px solid var(--bs-primary, #0d6efd);
  top: 20px;
  border-radius: 50%;
  z-index: 3;
}
.timeline-item.left {
  left: 0;
  padding-right: 30px;
  text-align: right;
}
.timeline-item.right {
  left: 50%;
  padding-left: 30px;
  text-align: left;
}
.timeline-item.right::after {
  left: -10px;
}
.timeline-content {
  padding: 15px 20px;
  background-color: #f8f9fa;
  position: relative;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
.timeline-item.left .timeline-content {
}
.timeline-item.right .timeline-content {
}
.timeline-icon i {
  font-size: 1.2rem;
  color: var(--bs-primary, #0d6efd);
  margin-bottom: 0.5rem;
  display: inline-block;
}
.timeline-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #495057;
}
.timeline-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
}
@media screen and (max-width: 767.98px) {
  .timeline-container::after {
    left: 15px;
    margin-left: 0;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 15px;
    text-align: left;
  }
  .timeline-item.left,
  .timeline-item.right {
    left: 0%;
  }
  .timeline-item.left::after,
  .timeline-item.right::after {
    left: 5px;
  }
}



#team-16 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
#team-16 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#team-16 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-16 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-16 .skill-item {
  text-align: center;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.375rem;
  border: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#team-16 .skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#team-16 .skill-icon {
  margin-bottom: 1.5rem;
}
#team-16 .skill-icon i {
  font-size: 3rem;
  color: var(--bs-primary);
}
#team-16 .skill-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.75rem;
}
#team-16 .skill-description {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}
@media (max-width: 991.98px) {
  #team-16 .skill-name {
    font-size: 1.15rem;
  }
}
@media (max-width: 767.98px) {
  #team-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-16 .section-title {
    font-size: 2.1rem;
  }
  #team-16 .skill-icon i {
    font-size: 2.5rem;
  }
}



#awards-11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#awards-11 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#awards-11 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#awards-11 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#awards-11 .certification-item {
  text-align: center;
  padding: 1.5rem;
}
#awards-11 .cert-icon {
  margin-bottom: 1.5rem;
}
#awards-11 .cert-icon i {
  font-size: 3rem;
  color: var(--bs-primary);
}
#awards-11 .cert-area {
  font-size: 1.3rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.75rem;
}
#awards-11 .cert-description {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1rem;
}
#awards-11 .cert-details-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #6c757d;
}
#awards-11 .cert-details-list li {
  margin-bottom: 0.25rem;
}
#awards-11 .cert-details-list li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.5em;
  margin-right: 0.5rem;
  color: var(--bs-primary);
  opacity: 0.6;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  #awards-11 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #awards-11 .section-title {
    font-size: 2.1rem;
  }
  #awards-11 .certification-item {
    padding: 1rem;
  }
  #awards-11 .cert-area {
    font-size: 1.2rem;
  }
}


