
#hero-9 {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 150px 20px;
  color: #fff;
  text-align: center;
}
#hero-9 .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
#hero-9 .container {
  position: relative;
  z-index: 2;
}
#hero-9 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-9 .hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #f7f7f7;
}
.post-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
.post-section .section-header p {
  color: #666;
  margin-top: 8px;
}

/* === Grid === */
.post-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 576px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .post-grid { grid-template-columns: repeat(4, 1fr); }
}

/* === Flip Card === */
.flip-card {
  perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back Faces */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.flip-card-front {
  background: #fff;
}
.flip-card-front img {
  width: 100%;
  display: block;
}
.flip-card-front .card-title {
  padding: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.flip-card-back {
  background: #fff;
  color: #333;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}
.flip-card-back .excerpt {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.flip-card-back .meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.flip-card-back .btn-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: #007bff;
  color: #fff;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
.flip-card-back .btn-readmore i {
  margin-left: 0.5rem;
}
.flip-card-back .btn-readmore:hover {
  background: #0056b3;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}




#features-22 {
  padding: 50px 0; 
  overflow: hidden;
  background-color: {{ $data['features-22']['bg_color'] ?? '#ffffff' }};
}
#features-22 .section-title h2 {
  font-size: 30px; 
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  color: #343a40;
}
#features-22 .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--bs-primary, #0d6efd);
  bottom: 0;
  left: calc(50% - 20px);
}
#features-22 .section-title p {
  margin-bottom: 30px;
  color: #6c757d;
  font-size: 15px;
}
#features-22 .compact-feature {
  display: flex;
  align-items: center; 
  padding: 15px;
  background-color: #f8f9fa; 
  border-radius: 5px;
  transition: box-shadow 0.3s ease;
  height: 100%; 
}
#features-22 .compact-feature:hover {
   box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
#features-22 .compact-icon {
  flex-shrink: 0;
  margin-right: 15px;
}
#features-22 .compact-icon i {
  font-size: 24px; 
  color: var(--bs-primary, #0d6efd);
  line-height: 1;
  width: 30px; 
  text-align: center;
}
#features-22 .compact-content h5 {
  font-size: 16px; 
  font-weight: 600;
  margin-bottom: 3px; 
  color: #343a40;
}
#features-22 .compact-content p {
  font-size: 14px; 
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  #features-22 .section-title h2 {
    font-size: 26px;
  }
}
@media (max-width: 575.98px) {
  #features-22 .compact-feature {
     padding: 12px;
  }
  #features-22 .compact-icon i {
     font-size: 22px;
  }
  #features-22 .compact-content h5 {
    font-size: 15px;
  }
  #features-22 .compact-content p {
    font-size: 13px;
  }
}



#testimonials-15 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-15 .container {
  max-width: 1140px;
}
#testimonials-15 .section-header {
  margin-bottom: 50px;
  text-align: center;
}
#testimonials-15 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-15 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
#testimonials-15 .testimonial-bubble-wall {
  column-gap: var(--column-gap, 1.5rem);
  column-count: var(--column-count-sm, 1);
}
#testimonials-15 .testimonial-bubble {
  display: inline-block;
  width: 100%;
  background-color: var(--bubble-bg-color, #f8f9fa);
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: var(--column-gap, 1.5rem);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  page-break-inside: avoid;
  break-inside: avoid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonials-15 .testimonial-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
#testimonials-15 .bubble-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#testimonials-15 .bubble-image img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}
#testimonials-15 .bubble-client-name {
  font-weight: 600;
  color: #343a40;
  font-size: 0.95rem;
}
#testimonials-15 .bubble-message {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
}
@media (min-width: 768px) {
  #testimonials-15 .testimonial-bubble-wall {
    column-count: var(--column-count-md, 2);
  }
}
@media (min-width: 992px) {
  #testimonials-15 .testimonial-bubble-wall {
    column-count: var(--column-count-lg, 3);
  }
}
@media (max-width: 767.98px) {
  #testimonials-15 {
    padding: 50px 0;
  }
  #testimonials-15 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-15 .testimonial-bubble {
    padding: 15px 20px;
  }
  #testimonials-15 .bubble-message {
    font-size: 0.95rem;
  }
}



#faq-25 {
  padding: 80px 0;
  background-color: #fff;
}
#faq-25 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
#faq-25 .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#faq-25 .accordion-button {
  font-weight: 600;
  color: #343a40;
  background-color: #f8f9fa;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
}
#faq-25 .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: #e7f1ff;
}
#faq-25 .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.2s ease-in-out;
}
#faq-25 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
#faq-25 .accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
  border-top: 1px solid #eee;
}
#faq-25 .accordion-body p:last-child {
  margin-bottom: 0;
}
#faq-25 .ask-question-card {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
}
#faq-25 .ask-question-card h4 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}
#faq-25 .ask-question-card .form-text {
  color: #6c757d;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
#faq-25 .ask-question-card .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
#faq-25 .ask-question-card .form-control {
  margin-bottom: 1rem;
}
#faq-25 .ask-question-card textarea.form-control {
  min-height: 120px;
}
#faq-25 .ask-question-card .btn-submit-question {
  width: 100%;
  padding: 0.75rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  #faq-25 .ask-question-card {
    margin-top: 2rem;
  }
}



#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;
  }
}



#our-services-11 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
}
#our-services-11 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#our-services-11 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#our-services-11 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#our-services-11 .service-card {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#our-services-11 .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#our-services-11 .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#our-services-11 .card-body {
  padding: 1.5rem;
  flex-grow: 1;
}
#our-services-11 .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #495057;
}
#our-services-11 .card-text {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
}
#our-services-11 .card-footer {
  background-color: transparent;
  border-top: none;
  padding: 0 1.5rem 1.5rem;
  margin-top: auto;
}
#our-services-11 .btn-service-link {
}



#call-to-action-20 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.cta-boxed-content {
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cta-boxed-headline {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}
.cta-boxed-subtext {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}
.cta-boxed-button .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
}
.cta-boxed-button .btn i {
  margin-right: 8px;
}
#call-to-action-20 .btn-warning {
}
@media (max-width: 767.98px) {
  #call-to-action-20 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: 350px;
  }
  .cta-boxed-content {
    padding: 1.5rem;
  }
  .cta-boxed-headline {
    font-size: 1.8rem;
  }
  .cta-boxed-subtext {
    font-size: 1rem;
  }
}



#press-mentions-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#press-mentions-6 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#press-mentions-6 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#press-mentions-6 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#press-mentions-6 .award-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#press-mentions-6 .award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(var(--bs-primary-rgb), 0.1);
  border-color: rgba(var(--bs-primary-rgb), 0.5);
}
#press-mentions-6 .award-icon i {
  font-size: 3rem;
  color: var(--bs-primary);
  margin-bottom: 1.5rem;
}
#press-mentions-6 .award-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #343a40;
}
#press-mentions-6 .awarded-by {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}
#press-mentions-6 .awarded-by-logo img {
  height: 25px;
  width: auto;
  max-width: 80px;
  margin-right: 0.75rem;
  filter: grayscale(100%);
  opacity: 0.7;
}
#press-mentions-6 .award-description {
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}
#press-mentions-6 .award-link {
  margin-top: auto;
}
#press-mentions-6 .award-link a {
  font-size: 0.9rem;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 500;
}
#press-mentions-6 .award-link a:hover {
  text-decoration: underline;
}
#press-mentions-6 .award-link i {
  margin-left: 0.3rem;
}
@media (max-width: 767.98px) {
  #press-mentions-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #press-mentions-6 .section-title {
    font-size: 2.1rem;
  }
  #press-mentions-6 .award-card {
    padding: 1.5rem;
  }
  #press-mentions-6 .award-name {
    font-size: 1.2rem;
  }
}



#timeline-18 {
  padding-top: 5rem;
  padding-bottom: 0;
  background-color: #ffffff;
  overflow: hidden;
}
#timeline-18 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-18 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-18 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}
#timeline-18.layout-vertical-alternating .timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 4rem auto;
}
#timeline-18.layout-vertical-alternating .timeline-wrapper::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #e9ecef;
  top: 15px;
  bottom: 15px;
  left: 50%;
  margin-left: -1.5px;
  z-index: 1;
}
#timeline-18.layout-vertical-alternating .timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 2rem;
}
#timeline-18.layout-vertical-alternating .timeline-item:last-child {
  margin-bottom: 0;
}
#timeline-18.layout-vertical-alternating .timeline-item::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border: 5px solid var(--bs-primary);
  top: 15px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px #ffffff;
}
#timeline-18.layout-vertical-alternating .timeline-marker-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 15px;
  text-align: center;
  z-index: 3;
  line-height: 30px;
  color: var(--bs-primary);
  font-size: 0.9rem;
}
#timeline-18.layout-vertical-alternating .timeline-left {
  left: 0;
  padding-right: 35px;
}
#timeline-18.layout-vertical-alternating .timeline-left::after {
  left: -15px;
}
#timeline-18.layout-vertical-alternating .timeline-left .timeline-marker-icon {
  right: -15px;
}
#timeline-18.layout-vertical-alternating .timeline-right {
  left: 50%;
  padding-left: 75px;
}
#timeline-18.layout-vertical-alternating .timeline-right::after {
  left: -15px;
}
#timeline-18.layout-vertical-alternating .timeline-right .timeline-marker-icon {
  left: -15px;
}
#timeline-18.layout-vertical-alternating .timeline-content {
  padding: 1.5rem;
  background-color: #f8f9fa;
  position: relative;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
#timeline-18 .timeline-date {
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 1.2rem;
}
#timeline-18 .timeline-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #343a40;
}
#timeline-18 .timeline-item-description {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  #timeline-18.layout-vertical-alternating .timeline-wrapper::after {
    left: 31px;
  }
  #timeline-18.layout-vertical-alternating .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
  }
  #timeline-18.layout-vertical-alternating .timeline-left,
  #timeline-18.layout-vertical-alternating .timeline-right {
    left: 0%;
  }
  #timeline-18.layout-vertical-alternating .timeline-left::after,
  #timeline-18.layout-vertical-alternating .timeline-right::after {
    left: 16px;
  }
  #timeline-18.layout-vertical-alternating .timeline-left .timeline-marker-icon,
  #timeline-18.layout-vertical-alternating
    .timeline-right
    .timeline-marker-icon {
    left: 16px;
  }
}
#timeline-18 .cta-block {
  padding: 4rem 1rem;
  margin-top: 0;
  text-align: center;
  background-color: #e9ecef;
  color: #212529;
}
#timeline-18 .cta-block .container {
  max-width: 750px;
}
#timeline-18 .cta-block-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#timeline-18 .cta-block-text {
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-18 .cta-block-text[style*="color: #ffffff"] {
  opacity: 0.9;
}
#timeline-18 .cta-block-button .btn {
  padding: 0.8rem 2rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  #timeline-18 {
    padding-top: 4rem;
  }
  #timeline-18 .section-title {
    font-size: 2.1rem;
  }
  #timeline-18 .cta-block {
    padding: 3rem 1rem;
  }
  #timeline-18 .cta-block-title {
    font-size: 1.8rem;
  }
}



#cta-banner-8 {
  padding: 5rem 1rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #dc3545;
  color: #ffffff;
}
#cta-banner-8 .container {
  position: relative;
  z-index: 2;
  max-width: 850px;
}
#cta-banner-8 .cta-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
#cta-banner-8 .cta-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#cta-banner-8 .countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
#cta-banner-8 .timer-block {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.8rem 1rem;
  border-radius: 0.375rem;
  min-width: 75px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
#cta-banner-8 .timer-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  display: block;
}
#cta-banner-8 .timer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  display: block;
}
#cta-banner-8 .cta-button .btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
#cta-banner-8 .cta-button .btn i {
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  #cta-banner-8 {
    padding: 4rem 1rem;
  }
  #cta-banner-8 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-8 .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #cta-banner-8 .countdown-timer {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  #cta-banner-8 .timer-block {
    min-width: 60px;
    padding: 0.6rem 0.5rem;
  }
  #cta-banner-8 .timer-value {
    font-size: 1.5rem;
  }
  #cta-banner-8 .timer-label {
    font-size: 0.65rem;
  }
  #cta-banner-8 .cta-button .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}
@media (max-width: 450px) {
  #cta-banner-8 .timer-block {
    min-width: 55px;
  }
}


