
#hero-13 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  padding: 6rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  --hero-overlay-color: transparent;
}
#hero-13::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
  pointer-events: none;
}
#hero-13 .container {
  position: relative;
  z-index: 2;
}
#hero-13 .hero-content-wrapper-13 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
#hero-13 .hero-title-13 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-13 .hero-subtitle-13 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#hero-13 .cta-button-wrapper-13 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
#hero-13 .hero-cta-button-13 {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
#hero-13 .hero-cta-button-13.cta-style-secondary {
  border-color: #ffffff;
}
#hero-13 .hero-cta-button-13:hover {
  transform: translateY(-2px);
  filter: brightness(110%);
}
@media (max-width: 767.98px) {
  #hero-13 {
    min-height: 55vh;
    padding: 4rem 0;
  }
  #hero-13 .hero-title-13 {
    font-size: 2.3rem;
  }
  #hero-13 .hero-subtitle-13 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  #hero-13 .cta-button-wrapper-13 {
    gap: 0.8rem;
  }
}



#features-26 {
  padding: 100px 0; 
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; 
  color: {{ $data['features-26']['text_color'] ?? '#ffffff' }};
background-color: #343a40;
}
@media (hover: none) {
  #features-26 {
    background-attachment: scroll;
  }
}
#features-26::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: {{ $data['features-26']['overlay_color'] ?? 'rgba(0, 0, 0, 0.65)' }};
  z-index: 1;
}
#features-26 .container {
  position: relative;
  z-index: 2;
}
#features-26 .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: inherit; 
}
#features-26 .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-26 .section-title p {
  margin-bottom: 50px;
  color: inherit;
  opacity: 0.9;
}
#features-26 .feature-box {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1); 
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
#features-26 .feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
#features-26 .feature-icon i {
  font-size: 42px;
  color: var(--bs-primary, #0d6efd);
margin-bottom: 20px;
  display: inline-block;
}
#features-26 .feature-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: inherit;
}
#features-26 .feature-box p {
  font-size: 15px;
  line-height: 1.6;
  color: inherit;
  opacity: 0.85;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #features-26 {
    padding: 60px 0;
    background-attachment: scroll; 
  }
  #features-26 .section-title h2 {
    font-size: 28px;
  }
   #features-26 .feature-icon i {
     font-size: 36px;
   }
   #features-26 .feature-box h4 {
     font-size: 18px;
   }
}



#about-us-9 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
}
#about-us-9 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#about-us-9 .split-container {
  display: flex;
  gap: 30px;
}
#about-us-9 .main-content {
  flex: 2;
  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;
}
#about-us-9 .sidebar-content {
  flex: 1;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
}
#about-us-9 .sidebar-content h4 {
  margin-top: 0;
  color: #007bff;
}
#about-us-9 .sidebar-content p {
  margin: 0 0 15px;
}
@media (max-width: 768px) {
  #about-us-9 .split-container {
    flex-direction: column;
  }
}



#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;
  }
}



/* === 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;
}




#offers-5 {
  padding: 80px 0;
  background-color: #fff;
}
#offers-5 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
#offers-5 .offer-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1rem;
}
#offers-5 .offer-details-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
#offers-5 .offer-details-description {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#offers-5 .offer-terms-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}
#offers-5 .offer-terms-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}
#offers-5 .offer-terms-list li i {
  margin-right: 8px;
  margin-top: 4px;
  font-size: 0.8em;
  color: #0d6efd;
}
#offers-5 .offer-details-code {
  margin-bottom: 0.5rem;
  min-height: 25px;
}
#offers-5 .offer-details-code strong {
  margin-right: 5px;
}
#offers-5 .offer-details-code span {
  font-weight: 700;
  color: #dc3545;
  background-color: #f8d7da;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.95rem;
}
#offers-5 .offer-details-expiry {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 2rem;
  min-height: 20px;
}
#offers-5 .offer-details-expiry i {
  margin-right: 5px;
}
#offers-5 .btn-split-offer-cta {
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  align-self: flex-start;
}
#offers-5 .offer-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#offers-5 .offer-split-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  #offers-5 .offer-details-col,
  #offers-5 .offer-visual-col {
    text-align: center;
  }
  #offers-5 .offer-terms-list {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  #offers-5 .btn-split-offer-cta {
    align-self: center;
  }
  #offers-5 .offer-visual-col {
    margin-bottom: 2rem;
  }
}



#call-to-action-16 {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  color: #ffffff;
}
#call-to-action-16.has-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  z-index: 1;
}
#call-to-action-16 .container {
  position: relative;
  z-index: 2;
}
#call-to-action-16:not(.has-bg-image) {
}
#call-to-action-16:not(.has-bg-image) .cta-subtext {
}
#call-to-action-16 .cta-headline {
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
#call-to-action-16 .cta-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}
#call-to-action-16 .cta-buttons .btn {
  margin: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-width: 2px;
}
#call-to-action-16 .cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
#call-to-action-16 .cta-buttons .btn i {
  margin-right: 8px;
}
@media (max-width: 991.98px) {
  #call-to-action-16 .cta-content,
  #call-to-action-16 .cta-buttons {
    text-align: center;
  }
  #call-to-action-16 .cta-headline {
    font-size: 1.8rem;
  }
  #call-to-action-16 .cta-subtext {
    font-size: 1rem;
  }
  #call-to-action-16 .cta-buttons {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  #call-to-action-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #call-to-action-16 .cta-buttons .btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}



#faq-4 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#faq-4 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-4 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-4 .accordion-button {
  background-color: #ffffff;
  color: #17a2b8;
  border: 1px solid #17a2b8;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
#faq-4 .accordion-button.collapsed {
  background-color: #ffffff;
  color: #17a2b8;
}
#faq-4 .accordion-button:not(.collapsed) {
  background-color: #17a2b8;
  color: #ffffff;
}
#faq-4 .accordion-body {
  padding: 20px;
  background-color: #e9ecef;
  border-left: 2px solid #17a2b8;
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



#timeline-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#timeline-20 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-20 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-20 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-20 .timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
#timeline-20 .timeline-wrapper::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #e0e0e0;
  top: 15px;
  bottom: 15px;
  z-index: 1;
}
#timeline-20.content-right .timeline-wrapper::after {
  left: 21.5px;
  margin-left: -1.5px;
}
#timeline-20.content-left .timeline-wrapper::after {
  right: 21.5px;
  margin-right: -1.5px;
  left: auto;
}
#timeline-20 .timeline-item {
  padding: 0;
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}
#timeline-20 .timeline-item:last-child {
  margin-bottom: 0;
}
#timeline-20 .timeline-marker-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--bs-primary);
  color: #ffffff;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px #ffffff;
  font-size: 1.2rem;
  order: 1;
}
#timeline-20.content-left .timeline-marker-icon {
  order: 3;
}
#timeline-20 .timeline-content {
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  position: relative;
  order: 2;
  flex-grow: 1;
  margin-left: 1rem;
}
#timeline-20.content-left .timeline-content {
  margin-left: 0;
  margin-right: 1rem;
  text-align: right;
  order: 2;
}
#timeline-20 .timeline-date {
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 0.25rem;
  display: block;
  font-size: 0.9rem;
}
#timeline-20 .timeline-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #343a40;
}
#timeline-20 .timeline-item-description {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
#timeline-20 .timeline-item-description:last-child {
  margin-bottom: 0;
}
#timeline-20 .related-logo {
  margin-top: 0.5rem;
  text-align: inherit;
}
#timeline-20 .related-logo img {
  max-height: 30px;
  max-width: 100px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
}
@media screen and (max-width: 575.98px) {
  #timeline-20 .timeline-wrapper::after {
    left: 21.5px;
    right: auto;
  }
  #timeline-20 .timeline-marker-icon {
    order: 1 !important;
  }
  #timeline-20 .timeline-content {
    order: 2 !important;
    margin-left: 1rem;
    margin-right: 0;
    text-align: left;
  }
  #timeline-20 .timeline-item-title {
    font-size: 1.05rem;
  }
  #timeline-20 .related-logo {
    text-align: left;
  }
}


