
#cta-banner-10 {
  padding: 7rem 1rem;
  position: relative;
  background-size: cover;
  background-position: center center;
  text-align: center;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #212529;
}
#cta-banner-10::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0.55);
}
#cta-banner-10 .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
#cta-banner-10 .cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
#cta-banner-10 .cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#cta-banner-10 .cta-button .btn {
  padding: 1rem 2.8rem;
  font-size: 1.15rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}
#cta-banner-10 .cta-button .btn:hover {
  transform: scale(1.05);
}
#cta-banner-10 .cta-button .btn i {
  margin-left: 0.6rem;
}
@media (max-width: 991.98px) {
  #cta-banner-10 {
    padding: 6rem 1rem;
  }
  #cta-banner-10 .cta-title {
    font-size: 2.5rem;
  }
  #cta-banner-10 .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  #cta-banner-10 {
    padding: 5rem 1rem;
  }
  #cta-banner-10 .cta-title {
    font-size: 2.1rem;
  }
  #cta-banner-10 .cta-subtitle {
    font-size: 1rem;
  }
  #cta-banner-10 .cta-button .btn {
    padding: 0.8rem 2.2rem;
    font-size: 1rem;
  }
}



#about-us-1 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
}
#about-us-1 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#about-us-1 .description {
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  white-space: pre-wrap;
  margin-bottom: 30px;
}
#about-us-1 .nav-tabs {
  margin-bottom: 20px;
}
#about-us-1 .tab-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



#features-28 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-28']['bg_color'] ?? '#f8f9fa' }};
}
#features-28 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-28 .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--bs-primary, #0d6efd);
  bottom: 0;
  left: calc(50% - 25px);
}
#features-28 .section-title p {
  margin-bottom: 40px;
  color: #6c757d;
}
#features-28 .feature-image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 250px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
  cursor: pointer; 
   box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
#features-28 .feature-image-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
#features-28 .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
transition: background-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1;
}
/* Hover effect defined via JS might be smoother if needed,
   but CSS transition is simpler */
#features-28 .feature-image-card:hover .card-overlay {
}
#features-28 .card-content {
   position: relative;
   z-index: 2;
}
#features-28 .card-icon i {
  font-size: 40px;
  margin-bottom: 15px;
  opacity: 0.9;
}
#features-28 .card-title {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  #features-28 .section-title h2 {
    font-size: 28px;
  }
  #features-28 .feature-image-card {
     min-height: 200px;
  }
   #features-28 .card-icon i {
      font-size: 36px;
   }
    #features-28 .card-title {
      font-size: 18px;
   }
}



#portfolio-5 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #ffffff;
}
#portfolio-5 .section-title-container {
  margin-bottom: 40px;
}
#portfolio-5 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2c3e50;
}
#portfolio-5 .project-hero-image img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#portfolio-5 .project-header .project-main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 5px;
}
#portfolio-5 .project-header .project-meta-info {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 20px;
}
#portfolio-5 .project-header .project-meta-info span:not(:last-child)::after {
  content: "|";
  margin: 0 8px;
  color: #ced4da;
}
#portfolio-5 .project-content-description {
  font-size: 1rem;
  color: #495057;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}
#portfolio-5 .project-content-description p {
  margin-bottom: 1rem;
}
#portfolio-5 .key-highlights-section .highlights-main-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
}
#portfolio-5 .key-highlights-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
#portfolio-5 .key-highlights-list li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}
#portfolio-5 .key-highlights-list li .highlight-icon {
  font-size: 1.1rem;
  color: #20c997;
  margin-right: 12px;
  width: 22px;
  text-align: center;
}
#portfolio-5 .project-gallery-section .gallery-main-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 20px;
}
#portfolio-5 .gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}
#portfolio-5 .gallery-thumbnail-item a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#portfolio-5 .gallery-thumbnail-item a:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
#portfolio-5 .gallery-thumbnail-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
#portfolio-5 .project-final-link a {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
#portfolio-5 .project-final-link a i {
  margin-left: 8px;
}



#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;
  }
}



#press-mentions-9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#press-mentions-9 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#press-mentions-9 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#press-mentions-9 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#press-mentions-9 .news-list-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
#press-mentions-9 .list-group-item {
  padding: 1.25rem 1.5rem;
  border-color: #e9ecef;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background-color 0.2s ease;
}
#press-mentions-9 .list-group-item:hover {
  background-color: #f8f9fa;
  z-index: 2;
  position: relative;
}
#press-mentions-9 .article-title a {
  font-size: 1.15rem;
  font-weight: 600;
  color: #212529;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: inline-block;
}
#press-mentions-9 .article-title a:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
#press-mentions-9 .article-meta {
  font-size: 0.9rem;
  color: #6c757d;
}
#press-mentions-9 .article-meta .publication {
  font-weight: 500;
  color: #495057;
}
#press-mentions-9 .article-meta .separator {
  margin: 0 0.5rem;
}
#press-mentions-9 .view-all-wrapper {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 767.98px) {
  #press-mentions-9 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #press-mentions-9 .section-title {
    font-size: 2.1rem;
  }
  #press-mentions-9 .list-group-item {
    padding: 1rem 1.25rem;
  }
  #press-mentions-9 .article-title a {
    font-size: 1.05rem;
  }
}



#testimonials-12 {
  padding: 60px 0;
  background-color: #ffffff;
}
#testimonials-12 .container {
  max-width: 1140px;
}
#testimonials-12 .section-header {
  margin-bottom: 50px;
}
#testimonials-12 .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #343a40;
}
#testimonials-12 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#testimonials-12 .testimonial-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonials-12 .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
#testimonials-12 .testimonial-body {
  flex-grow: 1;
  margin-bottom: 20px;
}
#testimonials-12 .testimonial-body p {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  font-style: italic;
}
#testimonials-12 .testimonial-footer {
  display: flex;
  align-items: center;
}
#testimonials-12 .client-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
#testimonials-12 .client-details .client-name {
  font-weight: 600;
  color: #343a40;
  display: block;
  margin-bottom: 2px;
}
#testimonials-12 .client-details .client-position {
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
}
#testimonials-12 .rating {
  margin-top: 8px;
  color: #ffc107;
  font-size: 0.9rem;
}
#testimonials-12 .rating .fa-star.empty {
  color: #e0e0e0;
}
@media (max-width: 991.98px) {
  #testimonials-12 .testimonial-card {
    padding: 25px;
  }
}
@media (max-width: 767.98px) {
  #testimonials-12 {
    padding: 40px 0;
  }
  #testimonials-12 .section-header h2 {
    font-size: 1.8rem;
  }
  #testimonials-12 .section-header p {
    font-size: 1rem;
  }
}



#our-services-8 {
  padding: 60px 15px;
  max-width: 800px;
  margin: 0 auto;
}
#our-services-8 .header {
  text-align: center;
  margin-bottom: 40px;
}
#our-services-8 .header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#our-services-8 .header p {
  font-size: 1.1rem;
  color: #777;
}
#our-services-8 .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#our-services-8 .service-list li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
#our-services-8 .service-list li:last-child {
  border-bottom: none;
}
#our-services-8 .service-list li i {
  font-size: 2rem;
  color: #007bff;
  margin-right: 15px;
}
#our-services-8 .service-list li .service-content h5 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}
#our-services-8 .service-list li .service-content p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}



/* style.css for post-section-4 */
#post-section-4 {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f8f9fa;
}

#post-section-4 .section-global-header {
    margin-bottom: 40px;
    text-align: center;
}

#post-section-4 .section-global-header .section-global-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 10px;
}

#post-section-4 .section-global-header .section-global-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Post Area */
#post-section-4 .featured-post-area .area-title,
#post-section-4 .sidebar-area .area-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff30;
    display: inline-block;
}

#post-section-4 .featured-post-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

#post-section-4 .featured-post-image-wrapper {
    max-height: 400px; /* Control height of featured image */
    overflow: hidden;
}

#post-section-4 .featured-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#post-section-4 .featured-post-card:hover .featured-post-image {
    transform: scale(1.03);
}

#post-section-4 .featured-post-content {
    padding: 25px;
}

#post-section-4 .featured-post-categories {
    margin-bottom: 10px;
}

#post-section-4 .featured-post-category-badge {
    font-size: 0.8rem;
    padding: 0.3em 0.7em;
    margin-right: 6px;
    background-color: #6c757d;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
#post-section-4 .featured-post-category-badge:hover {
    background-color: #5a6268;
}

#post-section-4 .featured-post-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 12px;
    line-height: 1.3;
}

#post-section-4 .featured-post-title a {
    color: inherit;
    text-decoration: none;
}
#post-section-4 .featured-post-title a:hover {
    color: #007bff;
}

#post-section-4 .featured-post-meta {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}
#post-section-4 .featured-post-meta .meta-icon {
    margin-right: 5px;
}

#post-section-4 .featured-post-excerpt {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 20px;
}

#post-section-4 .featured-post-readmore-btn {
    font-weight: 500;
    padding: 0.6rem 1.2rem;
}
#post-section-4 .featured-post-readmore-btn .btn-icon {
    margin-left: 7px;
}

/* Sidebar Area */
#post-section-4 .sidebar-area {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#post-section-4 .sidebar-post-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}
#post-section-4 .sidebar-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#post-section-4 .sidebar-post-thumbnail-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 65px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 15px;
}

#post-section-4 .sidebar-post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#post-section-4 .sidebar-post-content .sidebar-post-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
}
#post-section-4 .sidebar-post-content .sidebar-post-title a {
    color: #343a40;
    text-decoration: none;
    transition: color 0.2s ease;
}
#post-section-4 .sidebar-post-content .sidebar-post-title a:hover {
    color: #007bff;
}

#post-section-4 .sidebar-post-meta {
    font-size: 0.8rem;
    color: #888;
}
#post-section-4 .sidebar-post-meta .meta-icon {
    margin-right: 4px;
}

#post-section-4 .sidebar-pagination-container {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}
/* Adjust Bootstrap pagination for smaller size in sidebar */
#post-section-4 .sidebar-pagination-container .pagination {
    font-size: 0.85rem;
}
#post-section-4 .sidebar-pagination-container .page-link {
    padding: 0.3rem 0.6rem;
}


/* Responsive */
@media (max-width: 991.98px) { /* Medium devices (tablets, less than 992px) */
    #post-section-4 .sidebar-area {
        margin-top: 30px;
    }
    #post-section-4 .featured-post-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) { /* Small devices (landscape phones, less than 768px) */
    #post-section-4 .section-global-header .section-global-title {
        font-size: 2rem;
    }
    #post-section-4 .featured-post-title {
        font-size: 1.4rem;
    }
     #post-section-4 .featured-post-image-wrapper {
        max-height: 300px;
    }
} 




#faq-14 {
  padding: 60px 0;
}
#faq-14 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#faq-14 .faq-sidebar {
  position: sticky;
  top: 80px;
  height: calc(100vh - 100px);
  overflow-y: auto;
}
#faq-14 .faq-sidebar .nav-link {
  color: #495057;
  padding: 0.6rem 1rem;
  border-left: 3px solid transparent;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
#faq-14 .faq-sidebar .nav-link:hover {
  color: #0d6efd;
  background-color: #f1f5f9;
  border-left-color: #cfe2ff;
}
#faq-14 .faq-sidebar .nav-link.active {
  color: #0d6efd;
  font-weight: 600;
  background-color: #e7f1ff;
  border-left-color: #0d6efd;
}
#faq-14 .faq-content-area {
}
#faq-14 .faq-content-item {
  margin-bottom: 2.5rem;
  padding-top: 1rem;
}
#faq-14 .faq-content-item h5 {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.8rem;
}
#faq-14 .faq-content-item p {
  color: #495057;
  line-height: 1.7;
}
#faq-14 .faq-content-item p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #faq-14 .faq-sidebar {
    position: static;
    height: auto;
    margin-bottom: 2rem;
    overflow-y: visible;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
  }
  #faq-14 .faq-sidebar .nav {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  #faq-14 .faq-sidebar .nav-link {
    border-left: none;
    border-bottom: 3px solid transparent;
    margin: 0 0.5rem 0.5rem 0.5rem;
  }
  #faq-14 .faq-sidebar .nav-link.active {
    border-left-color: transparent;
    border-bottom-color: #0d6efd;
    background-color: transparent;
  }
  #faq-14 .faq-sidebar .nav-link:hover {
    border-left-color: transparent;
    border-bottom-color: #cfe2ff;
    background-color: transparent;
  }
}



#call-to-action-8 {
  background-color: #17a2b8;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}
#call-to-action-8 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
#call-to-action-8 p {
  font-size: 18px;
  margin-bottom: 30px;
}
#call-to-action-8 .cta-btn {
  padding: 12px 30px;
  background-color: #fff;
  color: #17a2b8;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
#call-to-action-8 .cta-btn:hover {
  background-color: #e2e6ea;
  color: #17a2b8;
}
@media (max-width: 767.98px) {
  #call-to-action-8 h2 {
    font-size: 28px;
  }
  #call-to-action-8 p {
    font-size: 16px;
  }
}


