
#hero-16 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}
#hero-16 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#hero-16 .hero-content-wrapper-16 {
  max-width: 650px;
  padding: 2.5rem 3.5rem;
  border-radius: 15px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  color: #ffffff;
}
#hero-16 .hero-title-16 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-16 .hero-subtitle-16 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-16 .hero-cta-button-16 {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s ease;
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
#hero-16 .hero-cta-button-16:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767.98px) {
  #hero-16 {
    min-height: 65vh;
    padding: 3rem 1rem;
  }
  #hero-16 .hero-content-wrapper-16 {
    padding: 2rem;
    max-width: 90%;
  }
  #hero-16 .hero-title-16 {
    font-size: 2.2rem;
  }
  #hero-16 .hero-subtitle-16 {
    font-size: 1rem;
  }
}



/* === 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-14 {
  padding: 80px 0;
  background: linear-gradient(135deg, #e0f7fa, #80deea);
  text-align: left;
}
#features-14 .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#features-14 .section-title {
  font-size: 36px;
  color: #006064;
  font-weight: 700;
}
#features-14 .section-subtitle {
  font-size: 20px;
  color: #004d40;
}
#features-14 .feature-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#features-14 .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
#features-14 .feature-icon {
  font-size: 60px;
  color: #00838f;
  margin-bottom: 20px;
}
#features-14 .feature-title {
  font-size: 24px;
  color: #006064;
  margin-bottom: 10px;
  font-weight: 600;
}
#features-14 .feature-description {
  font-size: 16px;
  color: #424242;
}



#testimonials-19 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-19 .container {
  max-width: 1140px;
}
#testimonials-19 .section-header {
  margin-bottom: 50px;
  text-align: center;
}
#testimonials-19 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-19 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#testimonials-19 .pull-quote-card {
  background-color: var(--card-bg-color, #f8f9fa);
  padding: 35px 30px;
  border-radius: 10px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
#testimonials-19 .pull-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#testimonials-19 .pull-quote-card .quote-highlight {
  font-size: 1.5rem;
  font-weight: 600;
  color: #343a40;
  line-height: 1.4;
  margin-bottom: 15px;
  font-family: Georgia, serif;
  position: relative;
  z-index: 2;
}
#testimonials-19 .pull-quote-card .quote-highlight::before,
#testimonials-19 .pull-quote-card .quote-highlight::after {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  line-height: 1;
  z-index: 1;
}
#testimonials-19 .pull-quote-card .quote-highlight::before {
  content: "\201C";
  top: -10px;
  left: -5px;
}
#testimonials-19 .pull-quote-card .quote-highlight::after {
  content: "\201D";
  bottom: -15px;
  right: -5px;
}
#testimonials-19 .pull-quote-card .client-name-indicator {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: auto;
  padding-top: 15px;
  font-weight: 500;
}
#testimonials-19 .modal-dialog {
  max-width: 650px;
}
#testimonials-19 .modal-content {
  border-radius: 8px;
  border: none;
}
#testimonials-19 .modal-header {
  border-bottom: 1px solid #dee2e6;
  padding: 1rem 1.5rem;
}
#testimonials-19 .modal-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #343a40;
}
#testimonials-19 .modal-body {
  padding: 1.5rem;
  text-align: center;
}
#testimonials-19 .modal-client-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
  border: 3px solid #dee2e6;
}
#testimonials-19 .modal-full-message {
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: left;
}
#testimonials-19 .modal-client-details {
  text-align: right;
  font-size: 0.95rem;
  color: #6c757d;
}
#testimonials-19 .modal-client-details .name {
  display: block;
  font-weight: 600;
  color: #343a40;
}
#testimonials-19 .modal-client-details .position {
  display: block;
}
@media (max-width: 991.98px) {
  #testimonials-19 .pull-quote-card {
    min-height: 220px;
  }
  #testimonials-19 .pull-quote-card .quote-highlight {
    font-size: 1.3rem;
  }
}
@media (max-width: 767.98px) {
  #testimonials-19 {
    padding: 50px 0;
  }
  #testimonials-19 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-19 .pull-quote-card {
    min-height: 200px;
    padding: 25px 20px;
  }
}



#faq-8 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#faq-8 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-8 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-8 .faq-item {
  margin-bottom: 40px;
}
#faq-8 .faq-question {
  font-size: 20px;
  font-weight: bold;
  color: #17a2b8;
  cursor: pointer;
  margin-bottom: 15px;
}
#faq-8 .faq-image {
  display: none;
  margin-top: 10px;
}
#faq-8 .faq-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  #faq-8 .faq-image img {
    height: auto;
  }
}



#team-17 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#team-17 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#team-17 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-17 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-17 .spotlight-card {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
#team-17 .spotlight-card:last-child {
  margin-bottom: 0;
}
#team-17 .spotlight-image {
  flex-shrink: 0;
  margin-right: 2.5rem;
}
#team-17 .spotlight-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
#team-17 .spotlight-content {
  flex-grow: 1;
}
#team-17 .spotlight-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.25rem;
}
#team-17 .spotlight-role {
  font-size: 1.1rem;
  color: var(--bs-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
#team-17 .spotlight-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--bs-primary);
}
#team-17 .spotlight-social-links a {
  display: inline-block;
  color: #6c757d;
  margin-right: 0.8rem;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
#team-17 .spotlight-social-links a:last-child {
  margin-right: 0;
}
#team-17 .spotlight-social-links a:hover {
  color: var(--bs-primary);
  transform: translateY(-2px);
}
@media (max-width: 991.98px) {
  #team-17 .spotlight-image img {
    width: 160px;
    height: 160px;
  }
  #team-17 .spotlight-name {
    font-size: 1.6rem;
  }
  #team-17 .spotlight-quote {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  #team-17 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-17 .section-title {
    font-size: 2.1rem;
  }
  #team-17 .spotlight-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  #team-17 .spotlight-image {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  #team-17 .spotlight-image img {
    width: 150px;
    height: 150px;
  }
  #team-17 .spotlight-quote {
    padding-left: 0;
    border-left: none;
    text-align: center;
  }
  #team-17 .spotlight-social-links {
    margin-top: 1rem;
  }
}



#our-services-24 {
  padding: 80px 0;
  background-color: #fff;
}
#our-services-24 .services-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#our-services-24 .services-section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}
#our-services-24 .services-section-subtitle {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}
#our-services-24 .service-bg-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
#our-services-24 .service-bg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
#our-services-24 .service-bg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  z-index: 1;
}
#our-services-24 .service-bg-card:hover::before {
  transform: scale(1.1);
}
#our-services-24 .service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.1) 70%
  );
  padding: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.3s ease;
}
#our-services-24 .service-bg-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.2) 80%
  );
}
#our-services-24 .service-bg-card .card-title {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
#our-services-24 .service-bg-card .card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#our-services-24 .service-bg-card .stretched-link-custom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  font-size: 0;
  color: transparent;
}



#call-to-action-15 {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0;
}
#call-to-action-15 .left-side,
#call-to-action-15 .right-side {
  flex: 1 1 50%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 40px;
}
#call-to-action-15 .left-side {
  background-color: #007bff;
}
#call-to-action-15 .right-side {
  background-color: #28a745;
}
#call-to-action-15 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-15 p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
#call-to-action-15 .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease-in-out;
}
#call-to-action-15 .left-side .btn {
  background-color: #fff;
  color: #007bff;
}
#call-to-action-15 .left-side .btn:hover {
  background-color: #e0f2f7;
}
#call-to-action-15 .right-side .btn {
  background-color: #fff;
  color: #28a745;
}
#call-to-action-15 .right-side .btn:hover {
  background-color: #e3f2fd;
}
#call-to-action-15::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #007bff 50%, #28a745 50%);
  z-index: -1;
}
@media (max-width: 768px) {
  #call-to-action-15::before {
    background: linear-gradient(to bottom, #007bff 50%, #28a745 50%);
  }
}



#press-mentions-1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#press-mentions-1 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#press-mentions-1 .section-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
  margin-bottom: 1rem;
}
#press-mentions-1 .section-subtitle {
  font-size: 1.2rem;
  color: #495057;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-weight: 500;
}
#press-mentions-1 .logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
#press-mentions-1 .logo-item {
  text-align: center;
}
#press-mentions-1 .logo-item a {
  display: inline-block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
#press-mentions-1 .logo-item a:hover {
  filter: grayscale(0%);
  opacity: 1;
}
#press-mentions-1 .logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 45px;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  #press-mentions-1 .logo-grid {
    gap: 1.5rem 2rem;
  }
  #press-mentions-1 .logo-item img {
    max-height: 40px;
  }
}
@media (max-width: 767.98px) {
  #press-mentions-1 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #press-mentions-1 .section-header {
    margin-bottom: 2rem;
  }
  #press-mentions-1 .logo-grid {
    gap: 1.5rem 1.5rem;
  }
  #press-mentions-1 .logo-item img {
    max-height: 35px;
  }
  #press-mentions-1 .logo-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 575.98px) {
  #press-mentions-1 .logo-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}



#timeline-11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#timeline-11 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-11 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-11 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-11 .timeline-column {
  padding-right: 2rem;
}
#timeline-11 .timeline-wrapper {
  position: relative;
  padding-left: 30px;
}
#timeline-11.content-right .timeline-wrapper {
  padding-left: 0;
  padding-right: 30px;
}
#timeline-11 .timeline-wrapper::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #e9ecef;
  top: 5px;
  bottom: 5px;
  z-index: 1;
  left: 0;
}
#timeline-11.content-right .timeline-wrapper::after {
  left: auto;
  right: 0;
}
#timeline-11 .timeline-item {
  padding: 0 0 1.8rem 25px;
  position: relative;
  width: 100%;
}
#timeline-11.content-right .timeline-item {
  padding-left: 0;
  padding-right: 25px;
}
#timeline-11 .timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
#timeline-11 .timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 4px solid var(--bs-primary);
  top: 3px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 3px #ffffff;
  left: -10px;
}
#timeline-11.content-right .timeline-item::after {
  left: auto;
  right: -10px;
}
#timeline-11 .timeline-content {
  position: relative;
}
#timeline-11 .timeline-date {
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 0.3rem;
  display: block;
  font-size: 1rem;
}
#timeline-11 .timeline-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #343a40;
}
#timeline-11 .timeline-item-title i {
  margin-right: 0.5rem;
  font-size: 1em;
  opacity: 0.8;
}
#timeline-11 .timeline-item-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}
#timeline-11 .map-column {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#timeline-11 .map-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  #timeline-11 .timeline-column {
    padding-right: 1rem;
  }
}
@media (max-width: 767.98px) {
  #timeline-11 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #timeline-11 .section-title {
    font-size: 2.1rem;
  }
  #timeline-11 .timeline-column {
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
  #timeline-11 .timeline-wrapper {
    padding-left: 25px;
    padding-right: 0;
  }
  #timeline-11 .timeline-wrapper::after {
    left: 0;
  }
  #timeline-11 .timeline-item {
    padding-left: 20px;
    padding-right: 0;
  }
  #timeline-11 .timeline-item::after {
    left: -10px;
  }
}



#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;
  }
}


