
#hero-8 {
  padding: 100px 20px;
  background-color: #fff;
  text-align: center;
}
#hero-8 .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
#hero-8 .hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}
.registration-form {
  max-width: 500px;
  margin: 0 auto;
}
.registration-form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}
.registration-form button {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  background-color: #2575fc;
  color: #fff;
  border: none;
  border-radius: 4px;
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #fff;
}
.post-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
.post-section .section-header p {
  color: #666;
  margin-top: 8px;
}

/* === Zigzag Rows === */
.zigzag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.zigzag-row.visible {
  opacity: 1;
  transform: translateY(0);
}
.zigzag-row .zigzag-image,
.zigzag-row .zigzag-content {
  flex: 1 1 50%;
  padding: 15px;
}
.zigzag-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image styling */
.zigzag-image img {
  width: 100%;
  border-radius: 0.5rem;
  display: block;
}

/* Content styling */
.zigzag-content h5 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.zigzag-content .meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}
.zigzag-content .meta i {
  margin-right: 6px;
}
.zigzag-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.25rem;
}
.zigzag-content .btn-readmore {
  font-size: 0.9rem;
}

/* === Responsive === */
@media (max-width: 767.98px) {
  .zigzag-row {
    flex-direction: column !important;
  }
  .zigzag-image,
  .zigzag-content {
    flex: 1 1 100%;
  }
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}




#offers-19 {
  padding: 80px 0;
  background-color: #f1f3f5;
}
#offers-19 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#offers-19 .offer-image-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease;
}
#offers-19 .offer-image-card:hover {
  transform: scale(1.03);
}
#offers-19 .offer-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}
#offers-19 .offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
#offers-19 .offer-image-card:hover .offer-card-image img {
  transform: scale(1.1);
}
#offers-19 .offer-image-card .card-body {
  padding: 1.8rem;
}
#offers-19 .offer-image-card .card-title {
  font-weight: 600;
  font-size: 1.3rem;
  color: #212529;
  margin-bottom: 0.75rem;
}
#offers-19 .offer-image-card .card-text {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#offers-19 .offer-details-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
  min-height: 30px;
}
#offers-19 .offer-details-inline .offer-code-part span {
  font-weight: 700;
  color: #fff;
  background-color: #6f42c1;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-left: 5px;
}
#offers-19 .offer-details-inline .offer-expiry-part {
  font-size: 0.85rem;
  color: #6c757d;
}
#offers-19 .offer-details-inline .offer-expiry-part i {
  margin-right: 5px;
}
#offers-19 .btn-img-card-cta {
  padding: 0.7rem 1.5rem;
  font-weight: 600;
}



#features-29 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-29']['bg_color'] ?? '#ffffff' }};
}
#features-29 .intro-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #343a40;
  line-height: 1.3;
}
#features-29 .intro-text .subtitle {
  font-size: 18px;
  font-style: italic;
  color: #6c757d;
  margin-bottom: 25px;
}
#features-29 .intro-text .description {
  font-size: 16px;
  color: #495057;
  line-height: 1.7;
}
#features-29 .stats-grid {
}
#features-29 .stat-item {
  text-align: center;
  padding: 25px 15px;
  background-color: #f8f9fa; 
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#features-29 .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}
#features-29 .stat-icon i {
  font-size: 36px; 
  margin-bottom: 15px;
  display: inline-block;
}
#features-29 .stat-number {
  font-size: 48px; 
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  line-height: 1.1;
}
#features-29 .stat-label {
  font-size: 15px;
  color: #6c757d;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #features-29 .intro-text {
    margin-bottom: 40px; 
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  #features-29 .intro-text h2 {
    font-size: 30px;
  }
  #features-29 .stat-number {
    font-size: 40px;
  }
  #features-29 .stat-icon i {
    font-size: 32px;
  }
}



#cta-banner-7 {
  padding: 5rem 1rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #f8f9fa;
  color: #212529;
}
#cta-banner-7 .container {
  max-width: 800px;
}
#cta-banner-7 .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
#cta-banner-7 .cta-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2.5rem;
}
#cta-banner-7 .cta-actions {
}
#cta-banner-7 .primary-button .btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
#cta-banner-7 .primary-button .btn i {
  margin-right: 0.5rem;
}
#cta-banner-7 .secondary-action {
  margin-top: 1.25rem;
}
#cta-banner-7 .secondary-action a {
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}
#cta-banner-7 .secondary-action a.text-link-secondary {
  color: var(--bs-secondary);
}
#cta-banner-7 .secondary-action a.text-link-secondary:hover {
  text-decoration: underline;
  color: #5a6268;
}
#cta-banner-7 .secondary-action a.text-muted {
  color: #6c757d !important;
}
#cta-banner-7 .secondary-action a.text-muted:hover {
  color: #5a6268 !important;
  text-decoration: underline;
}
#cta-banner-7 .secondary-action .btn {
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
}
@media (max-width: 767.98px) {
  #cta-banner-7 {
    padding: 4rem 1rem;
  }
  #cta-banner-7 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-7 .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #cta-banner-7 .primary-button .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}



#testimonials-20 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-20 .container {
  max-width: 1140px;
}
#testimonials-20 .section-header {
  margin-bottom: 40px;
  text-align: center;
}
#testimonials-20 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-20 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#testimonials-20 .map-testimonial-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
#testimonials-20 .map-testimonial-item {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#testimonials-20 .marker-icon {
  display: inline-block;
  font-size: 1.8rem;
  color: #dc3545;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1;
}
#testimonials-20 .map-testimonial-item:hover .marker-icon,
#testimonials-20 .map-testimonial-item .marker-icon:focus {
  transform: scale(1.2);
  color: #0d6efd;
}
#testimonials-20 .testimonial-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  max-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 3;
  text-align: left;
  border: 1px solid #e0e0e0;
}
#testimonials-20 .map-testimonial-item:hover .testimonial-popup,
#testimonials-20 .map-testimonial-item .marker-icon:focus + .testimonial-popup {
  opacity: 1;
  visibility: visible;
}
#testimonials-20 .testimonial-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}
#testimonials-20 .popup-message {
  font-size: 0.9rem;
  color: #343a40;
  line-height: 1.5;
  margin-bottom: 8px;
  font-style: italic;
}
#testimonials-20 .popup-client-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #495057;
  display: block;
  text-align: right;
}
#testimonials-20 .testimonial-list-fallback {
  display: none;
  margin-top: 40px;
}
#testimonials-20 .testimonial-list-fallback h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color: #343a40;
}
#testimonials-20 .fallback-item {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid #e9ecef;
}
#testimonials-20 .fallback-item blockquote {
  margin-bottom: 5px;
  font-size: 0.95rem;
  font-style: italic;
  color: #495057;
}
#testimonials-20 .fallback-item cite {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: #6c757d;
  font-style: normal;
}
@media (max-width: 767.98px) {
  #testimonials-20 {
    padding: 50px 0;
  }
  #testimonials-20 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-20 .map-testimonial-container {
    display: none;
  }
  #testimonials-20 .testimonial-list-fallback {
    display: block;
  }
}



#why-choose-us-13 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
  text-align: center;
}
#why-choose-us-13 .section-header {
  margin-bottom: 3rem;
}
#why-choose-us-13 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.75rem;
}
#why-choose-us-13 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#why-choose-us-13 .feature-grid-item {
  margin-bottom: 2.5rem;
}
#why-choose-us-13 .feature-icon-large {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--bs-primary, #0d6efd);
  display: inline-block;
  transition: transform 0.3s ease-out;
}
#why-choose-us-13 .feature-grid-item:hover .feature-icon-large {
  transform: translateY(-5px) scale(1.1);
}
#why-choose-us-13 .feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #495057;
}
#why-choose-us-13 .feature-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  #why-choose-us-13 .section-header {
    margin-bottom: 2rem;
  }
  #why-choose-us-13 .feature-grid-item {
    margin-bottom: 2rem;
  }
  #why-choose-us-13 .feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  #why-choose-us-13 .feature-title {
    font-size: 1.2rem;
  }
}



#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;
  }
}



#our-services-29 {
  padding: 80px 0;
  background-color: #fff;
}
#our-services-29 .services-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}
#our-services-29 .intro-description {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#our-services-29 .tech-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
#our-services-29 .tech-item:hover {
  background-color: #e9ecef;
}
#our-services-29 .tech-logo {
  max-height: 60px;
  max-width: 120px;
  height: auto;
  width: auto;
  margin-bottom: 1rem;
  filter: grayscale(50%);
  transition: filter 0.3s ease;
}
#our-services-29 .tech-item:hover .tech-logo {
  filter: grayscale(0%);
}
#our-services-29 .tech-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #6c757d;
  transition: color 0.3s ease;
  min-height: 50px;
  display: flex;
  align-items: center;
}
#our-services-29 .tech-item:hover .tech-icon {
  color: #0d6efd;
}
#our-services-29 .tech-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: #343a40;
  line-height: 1.4;
}



#about-us-14 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
}
#about-us-14 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#about-us-14 .split-container {
  display: flex;
  gap: 30px;
}
#about-us-14 .story-content,
#about-us-14 .vision-content {
  flex: 1;
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  white-space: pre-wrap;
}
@media (max-width: 768px) {
  #about-us-14 .split-container {
    flex-direction: column;
  }
}



#call-to-action-6 {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
}
#call-to-action-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#call-to-action-6 .cta-content {
  position: relative;
  z-index: 1;
}
#call-to-action-6 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
#call-to-action-6 p {
  font-size: 18px;
  margin-bottom: 30px;
}
#call-to-action-6 .cta-btn {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  background-color: #17a2b8;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}
#call-to-action-6 .cta-btn:hover {
  background-color: #138496;
}
@media (max-width: 767.98px) {
  #call-to-action-6 h2 {
    font-size: 28px;
  }
  #call-to-action-6 p {
    font-size: 16px;
  }
}


