
#hero-5 {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  padding: 150px 20px;
  color: #fff;
  text-align: center;
}
#hero-5 .hero-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-5 .hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
}
.btn.btn-light {
  padding: 14px 40px;
  font-size: 18px;
  background-color: #fff;
  color: #2575fc;
  text-decoration: none;
  border-radius: 4px;
}



#about-us-25 {
  padding: 60px 0;
  background-color: #333;
  color: #fff;
}
#about-us-25 .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #eee;
  text-align: center;
  margin-bottom: 20px;
}
#about-us-25 .section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 40px;
}
#about-us-25 .image-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
#about-us-25 .grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1 / 1;
}
#about-us-25 .grid-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
#about-us-25 .grid-item:hover img {
  transform: scale(1.05);
}
#about-us-25 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 20px;
}
#about-us-25 .grid-item:hover .overlay {
  opacity: 1;
}
#about-us-25 .overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #eee;
}
#about-us-25 .overlay p {
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.5;
}



#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-10 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#timeline-10 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-10 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-10 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-10 .milestone-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
#timeline-10 .milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
#timeline-10 .card-header {
  padding: 1rem 1.25rem;
  background-color: #e9ecef;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#timeline-10 .header-icon i {
  font-size: 1.3rem;
  color: var(--bs-primary);
}
#timeline-10 .header-date {
  font-size: 1.1rem;
  font-weight: 700;
  color: #495057;
  line-height: 1.2;
}
#timeline-10 .header-image {
  text-align: center;
  padding: 1rem 0 0 0;
  background-color: #e9ecef;
  border-bottom: 1px solid #dee2e6;
}
#timeline-10 .header-image img {
  max-height: 100px;
  width: auto;
  max-width: 80%;
  margin-bottom: -1px;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
#timeline-10 .card-body {
  padding: 1.25rem;
  flex-grow: 1;
}
#timeline-10 .milestone-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.75rem;
}
#timeline-10 .milestone-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #timeline-10 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #timeline-10 .section-title {
    font-size: 2.1rem;
  }
  #timeline-10 .card-header {
    padding: 0.8rem 1rem;
  }
  #timeline-10 .header-date {
    font-size: 1rem;
  }
  #timeline-10 .card-body {
    padding: 1rem;
  }
  #timeline-10 .milestone-title {
    font-size: 1rem;
  }
}



#awards-3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#awards-3 .content-wrapper {
  display: flex;
  align-items: center;
}
#awards-3 .text-column {
  padding-right: 3rem;
}
#awards-3 .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #212529;
}
#awards-3 .section-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bs-primary);
  margin-bottom: 1.5rem;
}
#awards-3 .text-content p {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#awards-3 .text-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
#awards-3 .text-content ul li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: #495057;
}
#awards-3 .text-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--bs-primary);
  font-size: 0.9em;
}
#awards-3 .cta-button .btn {
  padding: 0.75rem 1.8rem;
  font-weight: 500;
}
#awards-3 .image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  #awards-3 .text-column {
    padding-right: 1.5rem;
  }
  #awards-3 .section-title {
    font-size: 2.1rem;
  }
}
@media (max-width: 767.98px) {
  #awards-3 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #awards-3 .text-column {
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
  #awards-3 .image-column {
    text-align: center;
  }
  #awards-3 .image-column img {
    max-width: 90%;
  }
}



#press-mentions-15 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
  background-color: #f8f9fa;
  border-radius: 0.375rem;
}
#press-mentions-15 .section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #495057;
  padding-left: 1rem;
  padding-right: 1rem;
}
#press-mentions-15 .mention-list {
  list-style: none;
  padding: 0 1rem;
  margin-bottom: 0;
}
#press-mentions-15 .mention-list li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dotted #ced4da;
}
#press-mentions-15 .mention-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#press-mentions-15 .mention-headline a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #212529;
  text-decoration: none;
  display: block;
  margin-bottom: 0.2rem;
}
#press-mentions-15 .mention-headline a:hover {
  color: var(--bs-primary);
}
#press-mentions-15 .mention-publication {
  font-size: 0.8rem;
  color: #6c757d;
  font-style: italic;
}
#press-mentions-15 .logo-inline-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 0 1rem;
}
#press-mentions-15 .logo-inline-item a {
  display: inline-block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
#press-mentions-15 .logo-inline-item a:hover {
  filter: grayscale(0%);
  opacity: 1;
}
#press-mentions-15 .logo-inline-item img {
  max-height: 25px;
  max-width: 80px;
  width: auto;
}
@media (max-width: 767.98px) {
  #press-mentions-15 .section-title {
    text-align: center;
  }
  #press-mentions-15 .mention-headline a {
    font-size: 0.9rem;
  }
  #press-mentions-15 .mention-publication {
    font-size: 0.75rem;
  }
}



#why-choose-us-25 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #ffffff;
}
#why-choose-us-25 .section-title-container {
  margin-bottom: 50px;
}
#why-choose-us-25 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #333;
}
#why-choose-us-25 .section-main-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#why-choose-us-25 .award-item {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e7e7e7;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#why-choose-us-25 .award-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
#why-choose-us-25 .award-image-container {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#why-choose-us-25 .award-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#why-choose-us-25 .award-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 8px;
}
#why-choose-us-25 .award-meta {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 10px;
}
#why-choose-us-25 .award-meta .awarded-by {
  font-style: italic;
}
#why-choose-us-25 .award-meta .award-year::before {
  content: "|";
  margin: 0 5px;
}
#why-choose-us-25 .award-description {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.5;
  flex-grow: 1;
}
@media (max-width: 767.98px) {
  #why-choose-us-25 .award-item {
    margin-bottom: 25px;
  }
  #why-choose-us-25 .row > div:last-child .award-item {
    margin-bottom: 0;
  }
  #why-choose-us-25 .award-name {
    font-size: 1.15rem;
  }
}



#call-to-action-6 {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
}
#call-to-action-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#call-to-action-6 .cta-content {
  position: relative;
  z-index: 1;
}
#call-to-action-6 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
#call-to-action-6 p {
  font-size: 18px;
  margin-bottom: 30px;
}
#call-to-action-6 .cta-btn {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  background-color: #17a2b8;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}
#call-to-action-6 .cta-btn:hover {
  background-color: #138496;
}
@media (max-width: 767.98px) {
  #call-to-action-6 h2 {
    font-size: 28px;
  }
  #call-to-action-6 p {
    font-size: 16px;
  }
}


