
#hero-13 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  padding: 6rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  --hero-overlay-color: transparent;
}
#hero-13::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
  pointer-events: none;
}
#hero-13 .container {
  position: relative;
  z-index: 2;
}
#hero-13 .hero-content-wrapper-13 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
#hero-13 .hero-title-13 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-13 .hero-subtitle-13 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#hero-13 .cta-button-wrapper-13 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
#hero-13 .hero-cta-button-13 {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
#hero-13 .hero-cta-button-13.cta-style-secondary {
  border-color: #ffffff;
}
#hero-13 .hero-cta-button-13:hover {
  transform: translateY(-2px);
  filter: brightness(110%);
}
@media (max-width: 767.98px) {
  #hero-13 {
    min-height: 55vh;
    padding: 4rem 0;
  }
  #hero-13 .hero-title-13 {
    font-size: 2.3rem;
  }
  #hero-13 .hero-subtitle-13 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  #hero-13 .cta-button-wrapper-13 {
    gap: 0.8rem;
  }
}



#about-us-22 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#about-us-22 .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}
#about-us-22 .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}
#about-us-22 .highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  clear: both;
}
#about-us-22 .highlight-item.left .image-col {
  float: left;
  width: 45%;
  margin-right: 30px;
}
#about-us-22 .highlight-item.left .text-col {
  float: left;
  width: 55%;
}
#about-us-22 .highlight-item.right {
  flex-direction: row-reverse;
}
#about-us-22 .highlight-item.right .image-col {
  float: right;
  width: 45%;
  margin-left: 30px;
}
#about-us-22 .highlight-item.right .text-col {
  float: right;
  width: 55%;
  text-align: right;
}
#about-us-22 .image-col img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#about-us-22 .text-col h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}
#about-us-22 .text-col p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}
@media (max-width: 768px) {
  #about-us-22 .highlight-item {
    flex-direction: column;
    align-items: stretch;
  }
  #about-us-22 .highlight-item .image-col,
  #about-us-22 .highlight-item .text-col {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    text-align: left !important;
  }
  #about-us-22 .highlight-item .image-col {
    margin-bottom: 20px;
  }
}



#team-5 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #f8f9fa;
  overflow: hidden;
  position: relative;
}
#team-5 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#team-5 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-5 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-5 .t5-swiper-container {
  overflow: hidden;
  position: relative;
}
#team-5 .swiper-slide {
  height: auto;
  display: flex;
  padding-bottom: 1rem;
}
#team-5 .team-member-slide {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #ffffff;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.06);
  width: 100%;
  height: 100%;
}
#team-5 .member-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}
#team-5 .team-member-slide:hover .member-image img {
  transform: scale(1.05);
}
#team-5 .member-info {
  padding: 1.25rem 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#team-5 .member-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.2rem;
}
#team-5 .member-role {
  font-size: 0.85rem;
  color: var(--bs-primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}
#team-5 .member-social-links {
  margin-top: auto;
  padding-top: 0.5rem;
}
#team-5 .member-social-links a {
  display: inline-block;
  color: #adb5bd;
  margin: 0 0.3rem;
  font-size: 1rem;
  transition: color 0.3s ease;
  line-height: 1;
}
#team-5 .member-social-links a:hover {
  color: var(--bs-primary);
}
#team-5 .swiper-pagination-t5 {
  position: static;
  margin-top: 2.5rem;
}
#team-5 .swiper-pagination-t5 .swiper-pagination-bullet {
  background-color: var(--bs-primary);
  opacity: 0.4;
}
#team-5 .swiper-pagination-t5 .swiper-pagination-bullet-active {
  opacity: 1;
}
#team-5 .swiper-button-next-t5,
#team-5 .swiper-button-prev-t5 {
  color: var(--bs-primary);
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  top: 45%;
}
#team-5 .swiper-button-next-t5::after,
#team-5 .swiper-button-prev-t5::after {
  font-size: 1rem;
  font-weight: 900;
}
#team-5 .swiper-button-prev-t5 {
  left: 10px;
}
#team-5 .swiper-button-next-t5 {
  right: 10px;
}
@media (max-width: 767.98px) {
  #team-5 {
    padding-bottom: 5rem;
  }
  #team-5 .swiper-button-next-t5,
  #team-5 .swiper-button-prev-t5 {
    display: none;
  }
}



#timeline-11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#timeline-11 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-11 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-11 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-11 .timeline-column {
  padding-right: 2rem;
}
#timeline-11 .timeline-wrapper {
  position: relative;
  padding-left: 30px;
}
#timeline-11.content-right .timeline-wrapper {
  padding-left: 0;
  padding-right: 30px;
}
#timeline-11 .timeline-wrapper::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #e9ecef;
  top: 5px;
  bottom: 5px;
  z-index: 1;
  left: 0;
}
#timeline-11.content-right .timeline-wrapper::after {
  left: auto;
  right: 0;
}
#timeline-11 .timeline-item {
  padding: 0 0 1.8rem 25px;
  position: relative;
  width: 100%;
}
#timeline-11.content-right .timeline-item {
  padding-left: 0;
  padding-right: 25px;
}
#timeline-11 .timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
#timeline-11 .timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 4px solid var(--bs-primary);
  top: 3px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 3px #ffffff;
  left: -10px;
}
#timeline-11.content-right .timeline-item::after {
  left: auto;
  right: -10px;
}
#timeline-11 .timeline-content {
  position: relative;
}
#timeline-11 .timeline-date {
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 0.3rem;
  display: block;
  font-size: 1rem;
}
#timeline-11 .timeline-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #343a40;
}
#timeline-11 .timeline-item-title i {
  margin-right: 0.5rem;
  font-size: 1em;
  opacity: 0.8;
}
#timeline-11 .timeline-item-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}
#timeline-11 .map-column {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#timeline-11 .map-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  #timeline-11 .timeline-column {
    padding-right: 1rem;
  }
}
@media (max-width: 767.98px) {
  #timeline-11 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #timeline-11 .section-title {
    font-size: 2.1rem;
  }
  #timeline-11 .timeline-column {
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
  #timeline-11 .timeline-wrapper {
    padding-left: 25px;
    padding-right: 0;
  }
  #timeline-11 .timeline-wrapper::after {
    left: 0;
  }
  #timeline-11 .timeline-item {
    padding-left: 20px;
    padding-right: 0;
  }
  #timeline-11 .timeline-item::after {
    left: -10px;
  }
}



#awards-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
}
#awards-12 .section-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c757d;
  margin-bottom: 2.5rem;
}
#awards-12 .logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
#awards-12 .logo-item {
  text-align: center;
}
#awards-12 .logo-item a {
  display: inline-block;
  filter: grayscale(80%);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
#awards-12 .logo-item a:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}
#awards-12 .logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 50px;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  #awards-12 .logo-grid {
    gap: 2rem 2.5rem;
  }
  #awards-12 .logo-item img {
    max-height: 45px;
  }
}
@media (max-width: 767.98px) {
  #awards-12 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  #awards-12 .logo-grid {
    gap: 1.5rem 2rem;
  }
  #awards-12 .logo-item img {
    max-height: 40px;
  }
}



#why-choose-us-8 {
  position: relative;
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
}
#why-choose-us-8 .section-hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#why-choose-us-8 .feature-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#why-choose-us-8 .feature-box .reason-item {
  margin-bottom: 20px;
}
#why-choose-us-8 .feature-box .reason-item i {
  font-size: 2rem;
  color: #dc3545;
  margin-bottom: 10px;
}
#why-choose-us-8 .feature-box .reason-item h5 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}
#why-choose-us-8 .feature-box .reason-item p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}



#call-to-action-10 {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
#call-to-action-10 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
#call-to-action-10 p {
  font-size: 18px;
  margin-bottom: 30px;
}
#call-to-action-10 .cta-btn {
  padding: 12px 30px;
  background-color: #fff;
  color: #2575fc;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
#call-to-action-10 .cta-btn:hover {
  background-color: #e2e6ea;
  color: #2575fc;
}
@media (max-width: 767.98px) {
  #call-to-action-10 h2 {
    font-size: 28px;
  }
  #call-to-action-10 p {
    font-size: 16px;
  }
}


