
#hero-4 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
#hero-4 .container {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
#hero-4 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-4 .hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}
.btn.btn-light {
  padding: 14px 40px;
  font-size: 18px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}



#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;
   }
}



#about-us-12 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#about-us-12 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#about-us-12 .team-grid,
#about-us-12 .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}
#about-us-12 .team-card,
#about-us-12 .value-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 20px);
}
#about-us-12 .team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}
#about-us-12 .team-card h5 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
}
#about-us-12 .team-card p {
  font-size: 0.95rem;
  color: #555;
}
#about-us-12 .value-card i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
}
#about-us-12 .value-card h5 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}
#about-us-12 .value-card p {
  font-size: 0.95rem;
  color: #555;
}
@media (max-width: 992px) {
  #about-us-12 .team-card,
  #about-us-12 .value-card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  #about-us-12 .team-card,
  #about-us-12 .value-card {
    flex: 1 1 100%;
  }
}



#our-services-1 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#our-services-1 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#our-services-1 .section-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#our-services-1 .section-hero p {
  font-size: 1.1rem;
}
#our-services-1 .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#our-services-1 .service-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
#our-services-1 .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
#our-services-1 .service-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}
#our-services-1 .service-card h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
#our-services-1 .service-card p {
  font-size: 0.95rem;
  color: #555;
}
@media (max-width: 992px) {
  #our-services-1 .service-card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  #our-services-1 .service-card {
    flex: 1 1 100%;
  }
}



#why-choose-us-23 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #fff;
}
#why-choose-us-23 .section-title-container {
  margin-bottom: 50px;
}
#why-choose-us-23 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a2b48;
}
#why-choose-us-23 .section-main-subtitle {
  font-size: 1.1rem;
  color: #52627c;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#why-choose-us-23 .customer-focus-block {
  margin-bottom: 50px;
  background-color: #f8faff;
  padding: 30px;
  border-radius: 12px;
}
#why-choose-us-23 .customer-focus-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
#why-choose-us-23 .customer-focus-content .focus-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 15px;
}
#why-choose-us-23 .customer-focus-content .focus-text {
  font-size: 1rem;
  color: #455a64;
  line-height: 1.7;
}
#why-choose-us-23 .testimonial-block {
  background-color: #0d6efd;
  color: #ffffff;
  padding: 35px 40px;
  border-radius: 12px;
  margin-bottom: 50px;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}
#why-choose-us-23 .testimonial-quote-text {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}
#why-choose-us-23 .testimonial-quote-text::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
}
#why-choose-us-23 .testimonial-author-info {
  text-align: right;
}
#why-choose-us-23 .testimonial-author-info .author-name {
  font-size: 1.05rem;
  font-weight: 600;
}
#why-choose-us-23 .testimonial-author-info .author-role {
  font-size: 0.85rem;
  opacity: 0.8;
}
#why-choose-us-23 .guarantees-block .guarantees-main-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 25px;
  text-align: center;
}
#why-choose-us-23 .guarantees-list {
  list-style: none;
  padding-left: 0;
}
#why-choose-us-23 .guarantees-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
}
#why-choose-us-23 .guarantees-list li:last-child {
  border-bottom: none;
}
#why-choose-us-23 .guarantees-list li .guarantee-icon {
  font-size: 1.4rem;
  color: #28a745;
  margin-right: 15px;
  width: 25px;
  text-align: center;
}
#why-choose-us-23 .final-cta-block {
  margin-top: 50px;
  text-align: center;
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
}
#why-choose-us-23 .final-cta-block .cta-text {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
}
#why-choose-us-23 .btn-final-cta {
  padding: 12px 30px;
  font-size: 1.05rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  #why-choose-us-23 .customer-focus-block {
    text-align: center;
  }
  #why-choose-us-23 .customer-focus-image img {
    margin-bottom: 20px;
  }
  #why-choose-us-23 .section-main-title {
    font-size: 2.2rem;
  }
  #why-choose-us-23 .main-appointment-heading,
  #why-choose-us-23 .customer-focus-content .focus-heading,
  #why-choose-us-23 .guarantees-block .guarantees-main-title {
    font-size: 1.6rem;
  }
  #why-choose-us-23 .testimonial-quote-text {
    font-size: 1.1rem;
  }
}



#counter-13 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #f8f9fa);
}
#counter-13 .container {
  max-width: 1140px;
}
#counter-13 .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#counter-13 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#counter-13 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}
#counter-13 .counter-item-descriptive {
  text-align: center;
  padding: 30px 25px;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#counter-13 .counter-item-descriptive:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
#counter-13 .counter-icon {
  font-size: 2.8rem;
  color: #0d6efd;
  margin-bottom: 20px;
  display: inline-block;
}
#counter-13 .counter-value-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 8px;
  color: #212529;
}
#counter-13 .counter-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
#counter-13 .counter-suffix {
  font-size: 1.8rem;
  font-weight: 500;
  margin-left: 4px;
  line-height: 1;
  color: #495057;
}
#counter-13 .counter-title-desc {
  font-size: 1.15rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 15px;
}
#counter-13 .counter-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  min-height: 60px;
}
@media (max-width: 991.98px) {
  #counter-13 .counter-number {
    font-size: 2.5rem;
  }
  #counter-13 .counter-suffix {
    font-size: 1.5rem;
  }
  #counter-13 .counter-title-desc {
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  #counter-13 {
    padding: 50px 0;
  }
  #counter-13 .section-header h2 {
    font-size: 2rem;
  }
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #f4f6f9;
}
.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: #555;
  margin-top: 8px;
}

/* === Grid & Perspective === */
.post-grid {
  display: grid;
  gap: 1.5rem;
  perspective: 1000px;
  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); }
}

/* === Tilt Card === */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  will-change: transform;
  cursor: pointer;
}
.post-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.post-card img {
  width: 100%;
  display: block;
}
.post-card .card-body {
  padding: 1rem;
}
.post-card .card-body h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.post-card .card-body p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.post-card .btn-readmore {
  font-size: 0.85rem;
  color: #fff;
  background-color: #007bff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
.post-card .btn-readmore:hover {
  background-color: #0056b3;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}




#testimonials-6 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#testimonials-6 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#testimonials-6 .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#testimonials-6 .testimonial-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonials-6 .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
#testimonials-6 .testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-6 .testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}
#testimonials-6 .client-info {
  font-size: 0.95rem;
  color: #777;
}
@media (max-width: 992px) {
  #testimonials-6 .testimonial-card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  #testimonials-6 .testimonial-card {
    flex: 1 1 100%;
  }
}



#game-section-7 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#game-section-7 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#game-section-7 .modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
#game-section-7 .mode-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#game-section-7 .mode-card:hover {
  transform: translateY(-5px);
}
#game-section-7 .mode-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 10px;
}
#game-section-7 .mode-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
}
#game-section-7 .mode-card p {
  font-size: 1rem;
  color: #555;
}



#faq-30 {
  padding: 80px 0;
  background-color: #fff;
}
#faq-30 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 4rem;
  font-size: 2rem;
}
#faq-30 .faq-testimonial-block {
  background-color: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  border-left: 5px solid #0d6efd;
}
#faq-30 .faq-testimonial-block:last-child {
  margin-bottom: 0;
}
#faq-30 .faq-question {
  font-weight: 600;
  font-size: 1.2rem;
  color: #212529;
  margin-bottom: 0.8rem;
}
#faq-30 .faq-answer {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#faq-30 .faq-testimonial blockquote {
  font-size: 1rem;
  font-style: italic;
  color: #333;
  margin: 0;
  padding: 1rem 0 0 0;
  border-top: 1px dashed #ced4da;
  position: relative;
}
#faq-30 .faq-testimonial blockquote::before {
  content: "\\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #adb5bd;
  font-size: 1.5rem;
  position: absolute;
  left: -15px;
  top: 1rem;
  opacity: 0.5;
}
#faq-30 .faq-testimonial .blockquote-footer {
  font-size: 0.95rem;
  color: #555;
  font-style: normal;
  margin-top: 0.8rem;
}
#faq-30 .faq-testimonial .blockquote-footer cite {
  font-weight: 600;
}



#call-to-action-2 {
  padding: 60px 15px;
  background-color: #007bff;
  color: #fff;
  text-align: center;
}
#call-to-action-2 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-2 p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
#call-to-action-2 .btn {
  display: inline-block;
  margin: 5px;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
#call-to-action-2 .btn-primary {
  background-color: #0056b3;
  color: #fff;
}
#call-to-action-2 .btn-primary:hover {
  background-color: #003f7f;
}
#call-to-action-2 .btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
#call-to-action-2 .btn-outline:hover {
  background-color: #fff;
  color: #007bff;
}



#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;
}


