
#hero-21 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}
#hero-21 .hero-overlay-21 {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-21 .container {
  position: relative;
  z-index: 2;
}
#hero-21 .hero-content-wrapper-21 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#hero-21 .hero-title-21 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#hero-21 .hero-subtitle-21 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-21 .hero-cta-button-21 {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#hero-21 .hero-cta-button-21:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  #hero-21 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-21 .hero-title-21 {
    font-size: 2.5rem;
  }
  #hero-21 .hero-subtitle-21 {
    font-size: 1.1rem;
  }
}



#about-us-11 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#about-us-11 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#about-us-11 .awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
#about-us-11 .award-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#about-us-11 .award-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 10px;
}
#about-us-11 .award-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #007bff;
}
#about-us-11 .award-card p {
  font-size: 0.95rem;
  color: #555;
}
#about-us-11 .statistics {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
#about-us-11 .stat {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
}
#about-us-11 .stat-label {
  font-size: 1rem;
  color: #555;
}



#timeline-2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#timeline-2 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-2 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-2 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-2 .timeline-horizontal-row {
  position: relative;
}
/*
#timeline-2 .timeline-horizontal-row::before {
    content: '';
    position: absolute;
    top: 60px; // Position relative to icon/year top
    left: 5%; // Start after first item padding
    right: 5%; // End before last item padding
    height: 4px;
    background-color: var(--bs-primary);
    opacity: 0.3;
    z-index: 1;
}
*/
#timeline-2 .milestone-column {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}
#timeline-2 .milestone-column::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border: 4px solid var(--bs-primary);
  border-radius: 50%;
  z-index: 3;
}
#timeline-2 .milestone-icon {
  margin-bottom: 0.75rem;
}
#timeline-2 .milestone-icon i {
  font-size: 2rem;
  color: var(--bs-primary);
}
#timeline-2 .milestone-year {
  font-size: 1.3rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#timeline-2 .milestone-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.75rem;
}
#timeline-2 .milestone-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #timeline-2 {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  #timeline-2 .section-title {
    font-size: 2.1rem;
  }
  #timeline-2 .timeline-horizontal-row::before {
    display: none;
  }
  #timeline-2 .milestone-column {
    border-bottom: 1px dashed #dee2e6;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  #timeline-2 .row > div:last-child .milestone-column {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  #timeline-2 .milestone-column::before {
    display: none;
  }
}



#team-2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#team-2 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#team-2 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-2 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-2 .leader-card {
  background-color: #ffffff;
  border: 1px solid #e0e5eb;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
  height: 100%;
}
#team-2 .leader-image {
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}
#team-2 .leader-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#team-2 .leader-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#team-2 .leader-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.25rem;
}
#team-2 .leader-role {
  font-size: 1rem;
  color: var(--bs-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}
#team-2 .leader-bio {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  max-width: 450px;
}
#team-2 .leader-social-links {
  margin-top: auto;
}
#team-2 .leader-social-links a {
  display: inline-block;
  color: #6c757d;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
#team-2 .leader-social-links a:hover {
  color: var(--bs-primary);
  transform: scale(1.1);
}
@media (min-width: 768px) {
  #team-2 .leader-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  #team-2 .leader-image {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  #team-2 .leader-image img {
    width: 150px;
    height: 150px;
  }
  #team-2 .leader-info {
    align-items: flex-start;
  }
}
@media (max-width: 767.98px) {
  #team-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-2 .section-title {
    font-size: 2.1rem;
  }
  #team-2 .leader-card {
    padding: 1.5rem;
  }
  #team-2 .leader-name {
    font-size: 1.3rem;
  }
}



#awards-5 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #f8f9fa;
  overflow: hidden;
  position: relative;
}
#awards-5 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#awards-5 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#awards-5 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#awards-5 .aw5-swiper-container {
  overflow: hidden;
  position: relative;
}
#awards-5 .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 200px;
}
#awards-5 .award-slide-content {
  background-color: #ffffff;
  border: 1px solid #e0e5eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  width: 90%;
  margin: 0 auto;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#awards-5 .award-slide-visual {
  margin-bottom: 1rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#awards-5 .award-slide-visual img {
  max-height: 45px;
  max-width: 130px;
  width: auto;
}
#awards-5 .award-slide-visual i {
  font-size: 2.5rem;
  color: var(--bs-primary);
}
#awards-5 .award-slide-name {
  font-size: 1rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.25rem;
}
#awards-5 .award-slide-by {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}
#awards-5 .award-slide-year {
  font-size: 0.85rem;
  color: #6c757d;
}
#awards-5 .swiper-pagination-aw5 {
  position: static;
  margin-top: 2.5rem;
}
#awards-5 .swiper-pagination-aw5 .swiper-pagination-bullet {
  background-color: var(--bs-primary);
  opacity: 0.4;
}
#awards-5 .swiper-pagination-aw5 .swiper-pagination-bullet-active {
  opacity: 1;
}
#awards-5 .swiper-button-next-aw5,
#awards-5 .swiper-button-prev-aw5 {
  color: var(--bs-primary);
  top: 50%;
  transform: translateY(-50%);
  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);
}
#awards-5 .swiper-button-next-aw5::after,
#awards-5 .swiper-button-prev-aw5::after {
  font-size: 1.1rem;
  font-weight: 900;
}
#awards-5 .swiper-button-prev-aw5 {
  left: 5px;
}
#awards-5 .swiper-button-next-aw5 {
  right: 5px;
}
@media (max-width: 767.98px) {
  #awards-5 {
    padding-bottom: 5rem;
  }
  #awards-5 .swiper-button-next-aw5,
  #awards-5 .swiper-button-prev-aw5 {
    width: 38px;
    height: 38px;
  }
  #awards-5 .swiper-button-next-aw5::after,
  #awards-5 .swiper-button-prev-aw5::after {
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  #awards-5 .swiper-slide {
    min-height: 180px;
  }
  #awards-5 .award-slide-content {
    padding: 1rem;
    width: 100%;
    min-height: 160px;
  }
  #awards-5 .award-slide-name {
    font-size: 0.9rem;
  }
}



#faq-2 {
  padding: 60px 0;
  background-color: #ffffff;
}
#faq-2 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-2 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 30px;
}
#faq-2 .search-box {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
#faq-2 .search-box input {
  width: 60%;
  padding: 10px 15px;
  border: 1px solid #ced4da;
  border-radius: 4px 0 0 4px;
  outline: none;
}
#faq-2 .search-box button {
  padding: 10px 20px;
  border: none;
  background-color: #17a2b8;
  color: #ffffff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}
#faq-2 .search-box button:hover {
  background-color: #138496;
}
#faq-2 .accordion-button {
  background-color: #f1f1f1;
  color: #333333;
  border: none;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
}
#faq-2 .accordion-button:hover {
  background-color: #e2e6ea;
}
#faq-2 .accordion-body {
  padding: 20px;
  background-color: #ffffff;
  border-left: 2px solid #17a2b8;
}



#call-to-action-19 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.cta-features-intro h2 {
  font-weight: 700;
  color: #212529;
}
.cta-features-intro p {
  color: #6c757d;
  font-size: 1.1rem;
}
.cta-features-list {
}
.cta-feature-item {
  padding: 1rem;
}
.cta-feature-icon i {
  margin-bottom: 1rem;
}
.cta-feature-title {
  font-weight: 600;
  color: #343a40;
}
.cta-feature-description {
  color: #6c757d;
  font-size: 0.9rem;
}
.cta-features-button .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-features-button .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-features-button .btn i {
  margin-left: 8px;
}


