
#hero-14 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68vh;
  padding: 6rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  --hero-overlay-color: transparent;
}
#hero-14::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
  pointer-events: none;
}
#hero-14 .container {
  position: relative;
  z-index: 2;
}
#hero-14 .hero-content-wrapper-14 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
#hero-14 .hero-title-14 {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-14 .hero-subtitle-14 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#hero-14 .hero-form-wrapper-14 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
#hero-14 .input-group .form-control {
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  border-radius: 0.3rem 0 0 0.3rem;
  border: none;
}
#hero-14 .input-group .btn-form-submit-14 {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 0 0.3rem 0.3rem 0;
  border: none;
  background-color: #0d6efd;
  color: #ffffff;
  transition: filter 0.2s ease;
}
#hero-14 .input-group .btn-form-submit-14:hover {
  filter: brightness(110%);
}
@media (max-width: 767.98px) {
  #hero-14 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-14 .hero-title-14 {
    font-size: 2.2rem;
  }
  #hero-14 .hero-subtitle-14 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #hero-14 .input-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  #hero-14 .input-group .form-control,
  #hero-14 .input-group .btn-form-submit-14 {
    border-radius: 0.3rem;
    width: 100%;
  }
}



#features-20 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-20']['bg_color'] ?? '#f8f9fa' }};
}
#features-20 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-20 .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-20 .section-title p {
  margin-bottom: 40px;
  color: #6c757d;
}
#features-20 .step-item {
  position: relative;
  padding-left: 80px; 
  margin-bottom: 40px; 
  min-height: 60px; 
}
#features-20 .step-number {
  position: absolute;
  left: 0;
  top: 0; 
  font-size: 48px; 
  font-weight: 700;
  color: var(--bs-primary-light, #e0e0e0); 
  line-height: 1;
  z-index: 1;
  transition: color 0.3s ease;
}
#features-20 .step-item:hover .step-number {
    color: var(--bs-primary, #0d6efd); 
}
#features-20 .step-content {
   position: relative;
   z-index: 2;
}
#features-20 .step-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #343a40;
}
#features-20 .step-content p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #features-20 .section-title h2 {
    font-size: 28px;
  }
  #features-20 .step-item {
    padding-left: 65px; 
    min-height: 50px;
  }
  #features-20 .step-number {
    font-size: 40px; 
  }
  #features-20 .step-content h4 {
    font-size: 18px;
  }
   #features-20 .step-content p {
     font-size: 15px;
   }
}
@media (max-width: 575.98px) {
   #features-20 .step-item {
     padding-left: 0; 
     padding-top: 55px; 
     text-align: center; 
   }
   #features-20 .step-number {
     left: 50%; 
     transform: translateX(-50%);
     top: 0;
   }
}



#portfolio-9 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #f0f2f5;
}
#portfolio-9 .section-title-container {
  margin-bottom: 50px;
}
#portfolio-9 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1e2b3c;
}
#portfolio-9 .section-main-subtitle {
  font-size: 1.1rem;
  color: #525f7f;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#portfolio-9 .client-project-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#portfolio-9 .client-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#portfolio-9 .client-logo-container {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 5px;
  background-color: #f8f9fa;
}
#portfolio-9 .client-logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#portfolio-9 .client-name-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#portfolio-9 .project-title-service {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 10px;
  min-height: 50px;
}
#portfolio-9 .success-snippet-text {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}
#portfolio-9 .project-case-link a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.2s ease;
}
#portfolio-9 .project-case-link a:hover {
  color: #0a58ca;
  text-decoration: underline;
}
#portfolio-9 .project-case-link a i {
  margin-left: 4px;
}
@media (max-width: 767.98px) {
  #portfolio-9 .client-project-card {
    margin-bottom: 25px;
  }
  #portfolio-9 .row > div:last-child .client-project-card {
    margin-bottom: 0;
  }
  #portfolio-9 .project-title-service {
    font-size: 1.15rem;
    min-height: 40px;
  }
}



#how-it-works-24 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f0f2f5;
}
#how-it-works-24 .section-title-container {
  margin-bottom: 50px;
}
#how-it-works-24 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222b38;
}
#how-it-works-24 .section-main-subtitle {
  font-size: 1.1rem;
  color: #525f7f;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-24 .reveal-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#how-it-works-24 .card-initial-content {
  padding: 30px;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#how-it-works-24 .card-icon {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 20px;
}
#how-it-works-24 .card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 10px;
}
#how-it-works-24 .card-initial-description {
  font-size: 0.9rem;
  color: #6c757d;
}
#how-it-works-24 .card-revealed-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(13, 110, 253, 0.9);
  color: #ffffff;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
#how-it-works-24 .revealed-description {
  font-size: 0.95rem;
  line-height: 1.6;
}
#how-it-works-24 .reveal-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
#how-it-works-24 .reveal-card:hover .card-initial-content {
  opacity: 0.1;
}
#how-it-works-24 .reveal-card:hover .card-revealed-content {
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  #how-it-works-24 .reveal-card {
    margin-bottom: 30px;
  }
}



#content-block-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
#content-block-16 .content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}
#content-block-16 .content-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#content-block-16 .content-text h2,
#content-block-16 .content-text h3 {
  font-weight: 600;
  color: #343a40;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
#content-block-16 .content-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}
#content-block-16 .content-text p:last-child {
  margin-bottom: 0;
}
#content-block-16 .content-text h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #495057;
}
#content-block-16 .content-text ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
#content-block-16 .content-text ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #6c757d;
  font-size: 0.95rem;
}
#content-block-16 .content-text ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--bs-primary, #0d6efd);
  font-size: 0.9em;
}
@media (max-width: 767.98px) {
  #content-block-16 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #content-block-16 .content-image {
    margin-bottom: 2rem;
    text-align: center;
  }
  #content-block-16 .content-text h2,
  #content-block-16 .content-text h3 {
    font-size: 1.6rem;
    text-align: center;
  }
  #content-block-16 .content-text {
    text-align: center;
  }
  #content-block-16 .content-text ul {
    display: inline-block;
    text-align: left;
  }
}



#our-services-10 {
  padding: 60px 15px;
  max-width: 900px;
  margin: 0 auto;
}
#our-services-10 .nav-tabs .nav-link {
  font-size: 1rem;
  padding: 10px 15px;
}
#our-services-10 .tab-content {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
#our-services-10 .service-tab {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
#our-services-10 .service-tab i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
}



/* 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;
    }
} 




#team-12 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#team-12 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#team-12 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-12 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-12 .profile-link-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#team-12 .profile-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#team-12 .member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  overflow: hidden;
  border: 3px solid #f8f9fa;
}
#team-12 .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#team-12 .member-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.2rem;
}
#team-12 .member-role {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
#team-12 .profile-link-button {
  margin-top: auto;
}
#team-12 .profile-link-button .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}
#team-12 .profile-link-button .btn i {
  margin-left: 0.4rem;
}
@media (max-width: 767.98px) {
  #team-12 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-12 .section-title {
    font-size: 2.1rem;
  }
  #team-12 .member-photo {
    width: 100px;
    height: 100px;
  }
  #team-12 .member-name {
    font-size: 1.05rem;
  }
}



#awards-8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#awards-8 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#awards-8 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#awards-8 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#awards-8 .award-card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 0;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
#awards-8 .award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#awards-8 .category-badge {
  position: absolute;
  top: 10px;
  right: -30px;
  background-color: var(--bs-primary);
  color: #ffffff;
  padding: 0.25rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(45deg);
  transform-origin: top left;
  line-height: 1.5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
#awards-8 .category-badge.bg-primary {
  background-color: var(--bs-primary) !important;
}
#awards-8 .category-badge.bg-secondary {
  background-color: var(--bs-secondary) !important;
}
#awards-8 .category-badge.bg-success {
  background-color: var(--bs-success) !important;
}
#awards-8 .category-badge.bg-danger {
  background-color: var(--bs-danger) !important;
}
#awards-8 .category-badge.bg-warning {
  background-color: var(--bs-warning) !important;
  color: #333 !important;
}
#awards-8 .category-badge.bg-info {
  background-color: var(--bs-info) !important;
  color: #fff !important;
}
#awards-8 .category-badge.bg-dark {
  background-color: var(--bs-dark) !important;
}
#awards-8 .award-card-content {
  padding: 2rem;
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}
#awards-8 .award-visual {
  margin-bottom: 1.5rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#awards-8 .award-visual img {
  max-height: 55px;
  max-width: 150px;
  width: auto;
}
#awards-8 .award-visual i {
  font-size: 3rem;
  color: var(--bs-primary);
  opacity: 0.8;
}
#awards-8 .award-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 1rem;
  flex-grow: 1;
}
#awards-8 .award-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f1f1f1;
  width: 100%;
}
#awards-8 .awarded-by,
#awards-8 .issuing-body {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}
#awards-8 .award-year {
  font-size: 0.85rem;
  font-weight: 500;
  color: #495057;
}
@media (max-width: 767.98px) {
  #awards-8 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #awards-8 .section-title {
    font-size: 2.1rem;
  }
  #awards-8 .award-card-content {
    padding: 1.5rem;
    padding-top: 2rem;
  }
  #awards-8 .category-badge {
    font-size: 0.7rem;
    right: -35px;
  }
  #awards-8 .award-name {
    font-size: 1.05rem;
  }
}



#testimonials-18 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-18 .container {
  max-width: 960px;
}
#testimonials-18 .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#testimonials-18 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-18 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#testimonials-18 .testimonial-timeline-container {
  position: relative;
  margin: 0 auto;
}
#testimonials-18 .testimonial-timeline-container::before {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--timeline-color, #0d6efd);
  opacity: 0.3;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
#testimonials-18 .timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 30px;
}
#testimonials-18 .timeline-item::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: -9px;
  background-color: #ffffff;
  border: 4px solid var(--timeline-color, #0d6efd);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}
#testimonials-18 .timeline-item.timeline-left {
  left: 0;
  padding-right: 60px;
}
#testimonials-18 .timeline-item.timeline-right {
  left: 50%;
  padding-left: 60px;
}
#testimonials-18 .timeline-item.timeline-right::after {
  left: -9px;
}
#testimonials-18 .timeline-item.timeline-left .timeline-content::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 28px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #ffffff;
}
#testimonials-18 .timeline-item.timeline-right .timeline-content::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 28px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent #ffffff transparent transparent;
}
#testimonials-18 .timeline-content {
  padding: 20px 25px;
  background-color: #f8f9fa;
  position: relative;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
#testimonials-18 .timeline-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--timeline-color, #0d6efd);
  margin-bottom: 10px;
  display: block;
}
#testimonials-18 .timeline-message {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}
#testimonials-18 .timeline-client {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
#testimonials-18 .timeline-client img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid #ffffff;
}
#testimonials-18 .timeline-client-info .name {
  font-weight: 600;
  color: #343a40;
  display: block;
  font-size: 0.95rem;
}
#testimonials-18 .timeline-client-info .position {
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
}
@media screen and (max-width: 767px) {
  #testimonials-18 .testimonial-timeline-container::before {
    left: 31px;
    margin-left: 0;
  }
  #testimonials-18 .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
    margin-bottom: 40px;
  }
  #testimonials-18 .timeline-item.timeline-left,
  #testimonials-18 .timeline-item.timeline-right {
    left: 0%;
  }
  #testimonials-18 .timeline-item::after {
    left: 22px;
  }
  #testimonials-18 .timeline-item.timeline-right::after {
    left: 22px;
  }
  #testimonials-18 .timeline-item.timeline-left .timeline-content::before,
  #testimonials-18 .timeline-item.timeline-right .timeline-content::before {
    left: -10px;
    right: auto;
    border-width: 10px 10px 10px 0;
    border-color: transparent #ffffff transparent transparent;
  }
  #testimonials-18 .section-header h2 {
    font-size: 2rem;
  }
}



#cta-banner-4 {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#cta-banner-4 .split-background-container {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
  flex-direction: row;
}
#cta-banner-4.split-horizontal .split-background-container {
  flex-direction: column;
}
#cta-banner-4 .split-part {
  flex: 1 1 50%;
  position: relative;
  background-size: cover;
  background-position: center center;
}
#cta-banner-4 .split-part.has-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
#cta-banner-4 .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 1.5rem;
}
#cta-banner-4 .cta-content {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#cta-banner-4 .cta-content.align-left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
#cta-banner-4 .cta-content.align-right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
#cta-banner-4.content-center-overlay .cta-content {
  max-width: 700px;
}
#cta-banner-4 .cta-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
#cta-banner-4 .cta-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#cta-banner-4 .cta-button .btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  #cta-banner-4 {
    min-height: unset;
  }
  #cta-banner-4 .split-background-container {
    flex-direction: column;
  }
  #cta-banner-4 .split-part {
    min-height: 200px;
  }
  #cta-banner-4 .container {
    padding: 3rem 1rem;
  }
  #cta-banner-4 .cta-content {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    max-width: 90%;
  }
  #cta-banner-4.content-part1 .container {
    padding-bottom: 1rem;
  }
  #cta-banner-4.content-part2 .container {
    padding-top: 1rem;
  }
  #cta-banner-4 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-4 .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  #cta-banner-4 .cta-button .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}


