
#hero-19 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 6rem 0;
  text-align: center;
  background-size: cover;
  background-position: center;
}
#hero-19 .hero-overlay-19 {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-19 .container {
  position: relative;
  z-index: 2;
}
#hero-19 .hero-content-wrapper-19 {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
#hero-19 .hero-title-19 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-19 .hero-subtitle-19 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}
#hero-19 .app-buttons-wrapper-19 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
#hero-19 .app-store-button img,
#hero-19 .google-play-button img {
  height: 45px;
  width: auto;
  transition: transform 0.2s ease;
}
#hero-19 .app-store-button img:hover,
#hero-19 .google-play-button img:hover {
  transform: scale(1.05);
}
@media (max-width: 767.98px) {
  #hero-19 {
    min-height: 55vh;
    padding: 4rem 0;
  }
  #hero-19 .hero-title-19 {
    font-size: 2.3rem;
  }
  #hero-19 .hero-subtitle-19 {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
  #hero-19 .app-store-button img,
  #hero-19 .google-play-button img {
    height: 40px;
  }
}



/* === 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-2 {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center center;
  text-align: center;
  color: #fff;
}
#offers-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#offers-2 .container {
  position: relative;
  z-index: 2;
}
#offers-2 .offer-banner-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#offers-2 .offer-banner-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
#offers-2 .offer-banner-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  opacity: 0.95;
}
#offers-2 .offer-expiry-text {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.8;
}
#offers-2 .promo-code-area {
  margin-bottom: 2.5rem;
}
#offers-2 .promo-code-label {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
#offers-2 .promo-code-value {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px dashed rgba(255, 255, 255, 0.6);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffc107;
  letter-spacing: 2px;
  cursor: pointer;
}
#offers-2 .btn-banner-cta {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50rem;
  background-color: #ffc107;
  border: none;
  color: #333;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#offers-2 .btn-banner-cta:hover {
  background-color: #ffca2c;
  transform: scale(1.05);
}
@media (max-width: 767.98px) {
  #offers-2 {
    padding: 80px 0;
  }
  #offers-2 .offer-banner-title {
    font-size: 2.2rem;
  }
  #offers-2 .offer-banner-description {
    font-size: 1rem;
  }
  #offers-2 .promo-code-value {
    font-size: 1.2rem;
    padding: 0.5rem 1.2rem;
  }
  #offers-2 .btn-banner-cta {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}



#features-5 {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}
#features-5 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-5 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-5 .nav-tabs .nav-link {
  color: #17a2b8;
  border: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}
#features-5 .nav-tabs .nav-link.active {
  background-color: #17a2b8;
  color: #ffffff;
  border-radius: 4px;
}
#features-5 .tab-content {
  margin-top: 30px;
}
#features-5 .feature-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
}
#features-5 .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-5 .feature-icon {
  font-size: 40px;
  color: #17a2b8;
  margin-bottom: 20px;
}
#features-5 .feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-5 .feature-description {
  font-size: 14px;
  color: #6c757d;
}



#cta-banner-20 {
  padding: 4.5rem 1rem;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #ffffff;
  color: #212529;
}
#cta-banner-20 .container {
  max-width: 800px;
}
#cta-banner-20 .cta-title {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
#cta-banner-20 .cta-text p {
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#cta-banner-20 .cta-text p:last-child {
  margin-bottom: 2.5rem;
}
#cta-banner-20 .cta-button .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
}
#cta-banner-20 .cta-button .btn i {
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  #cta-banner-20 {
    padding: 3.5rem 1rem;
  }
  #cta-banner-20 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-20 .cta-text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  #cta-banner-20 .cta-text p:last-child {
    margin-bottom: 2rem;
  }
}



#testimonials-13 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #f8f9fa);
  overflow: hidden;
}
#testimonials-13 .container {
  max-width: 800px;
}
#testimonials-13 .testimonial-card-featured {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px 50px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}
#testimonials-13 .testimonial-card-featured::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 6rem;
  color: #e9ecef;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 1;
  line-height: 1;
  opacity: 0.8;
}
#testimonials-13 .testimonial-content {
  position: relative;
  z-index: 2;
}
#testimonials-13 .client-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#testimonials-13 .testimonial-quote {
  font-size: 1.25rem;
  font-weight: 400;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}
#testimonials-13 .client-info .client-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;
  display: block;
  margin-bottom: 3px;
}
#testimonials-13 .client-info .client-position {
  font-size: 0.95rem;
  color: #6c757d;
  display: block;
}
#testimonials-13 .rating {
  margin-top: 15px;
  color: #ffc107;
  font-size: 1rem;
}
@media (max-width: 767.98px) {
  #testimonials-13 {
    padding: 50px 0;
  }
  #testimonials-13 .testimonial-card-featured {
    padding: 30px 25px;
  }
  #testimonials-13 .testimonial-card-featured::before {
    font-size: 4.5rem;
    top: 15px;
    left: 15px;
  }
  #testimonials-13 .client-image img {
    width: 80px;
    height: 80px;
  }
  #testimonials-13 .testimonial-quote {
    font-size: 1.1rem;
  }
}



#why-choose-us-24 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #f8f9fa;
}
#why-choose-us-24 .section-title-container {
  margin-bottom: 40px;
}
#why-choose-us-24 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2c3e50;
}
#why-choose-us-24 .section-main-subtitle {
  font-size: 1.1rem;
  color: #5a677d;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#why-choose-us-24 .process-overview-main-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 30px;
  text-align: center;
}
#why-choose-us-24 .process-step-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  position: relative;
  border-left: 5px solid #0d6efd;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
#why-choose-us-24 .process-step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
#why-choose-us-24 .step-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
#why-choose-us-24 .step-number-icon {
  font-size: 1.5rem;
  color: #0d6efd;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
  font-weight: 700;
}
#why-choose-us-24 .step-header .fas,
#why-choose-us-24 .step-header .far,
#why-choose-us-24 .step-header .fab {
  line-height: inherit;
}
#why-choose-us-24 .step-title-text {
  font-size: 1.35rem;
  font-weight: 600;
  color: #343a40;
}
#why-choose-us-24 .step-description-text {
  font-size: 0.95rem;
  color: #555e68;
  line-height: 1.7;
  margin-bottom: 10px;
}
#why-choose-us-24 .customer-involvement-note {
  font-size: 0.85rem;
  color: #0d6efd;
  font-style: italic;
  padding-top: 8px;
  border-top: 1px dashed #e0e0e0;
  margin-top: 10px;
}
#why-choose-us-24 .customer-involvement-note i {
  margin-right: 5px;
}
#why-choose-us-24 .final-transparency-message {
  margin-top: 30px;
  text-align: center;
  font-size: 1.05rem;
  color: #495057;
  font-weight: 500;
  padding: 15px;
  background-color: #e9f5ff;
  border-radius: 8px;
}



#faq-18 {
  padding: 80px 0;
  background-color: #fff;
}
#faq-18 .faq-visual-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#faq-18 .faq-split-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
#faq-18 .faq-contact-block {
  background-color: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  width: 100%;
}
#faq-18 .faq-contact-block h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}
#faq-18 .faq-contact-block p {
  color: #495057;
  margin-bottom: 1.5rem;
}
#faq-18 .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-18 .accordion-button {
  font-weight: 600;
  color: #343a40;
  background-color: #f8f9fa;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
}
#faq-18 .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: #e7f1ff;
}
#faq-18 .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-18 .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-18 .accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
}
#faq-18 .accordion-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #faq-18 .faq-visual-column {
    margin-bottom: 3rem;
  }
}



#our-services-12 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
}
#our-services-12 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#our-services-12 .section-header h2 {
  font-weight: 700;
  color: #343a40;
}
#our-services-12 .list-group {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#our-services-12 .list-group-item {
  padding: 1.25rem 1.5rem;
  border-color: #e9ecef;
  transition: background-color 0.15s ease-in-out;
}
#our-services-12 .list-group-item-action:hover,
#our-services-12 .list-group-item-action:focus {
  background-color: #f8f9fa;
  color: #495057;
  z-index: 1;
}
#our-services-12 .service-item-content {
  flex-grow: 1;
  margin-right: 1rem;
}
#our-services-12 .service-icon {
  font-size: 1.5rem;
  color: var(--bs-primary, #0d6efd);
  margin-right: 1rem;
  min-width: 1.5em;
}
#our-services-12 .service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.25rem;
}
#our-services-12 .service-description {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.5;
}
#our-services-12 .service-badge .badge {
  font-size: 0.75rem;
  padding: 0.4em 0.6em;
  align-self: center;
}
@media (max-width: 575.98px) {
  #our-services-12 .list-group-item {
    padding: 1rem 1.25rem;
  }
  #our-services-12 .service-icon {
    font-size: 1.25rem;
    margin-right: 0.75rem;
  }
  #our-services-12 .service-title {
    font-size: 1rem;
  }
  #our-services-12 .service-badge {
  }
}



#about-us-30 {
  padding: 80px 0;
  background-color: #222;
  color: #fff;
  text-align: center;
  position: relative;
}
#about-us-30 .section-title,
#about-us-30 .section-subtitle {
  margin-bottom: 60px;
}
#about-us-30 .circular-layout {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}
#about-us-30 .central-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ffc107;
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
#about-us-30 .central-element img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
#about-us-30 .central-element h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
#about-us-30 .point-of-interest {
  position: absolute;
  width: 120px;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
#about-us-30 .point-of-interest i {
  font-size: 1.5rem;
  color: #00bfff;
  margin-bottom: 10px;
}
#about-us-30 .point-of-interest h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}
#about-us-30 .point-of-interest p {
  font-size: 0.8rem;
  color: #ccc;
}
#about-us-30 .point-of-interest.top-left {
  top: 10px;
  left: 10px;
}
#about-us-30 .point-of-interest.top-right {
  top: 10px;
  right: 10px;
}
#about-us-30 .point-of-interest.bottom-left {
  bottom: 10px;
  left: 10px;
}
#about-us-30 .point-of-interest.bottom-right {
  bottom: 10px;
  right: 10px;
}
#about-us-30 .point-of-interest.center-left {
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
#about-us-30 .point-of-interest.center-right {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  #about-us-30 .circular-layout {
    width: 300px;
    height: 300px;
  }
  #about-us-30 .point-of-interest {
    width: 100px;
    font-size: 0.9rem;
  }
  #about-us-30 .point-of-interest i {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  #about-us-30 .central-element {
    width: 100px;
    height: 100px;
  }
  #about-us-30 .central-element img {
    width: 50px;
    height: 50px;
  }
}



#call-to-action-5 {
  position: relative;

  background-size: cover;
  background-position: center;
  padding: 100px 15px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
#call-to-action-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
#call-to-action-5 .content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease;
}
#call-to-action-5 h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeIn 1.2s ease;
}
#call-to-action-5 p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  animation: fadeIn 1.4s ease;
}
#call-to-action-5 .btn {
  background-color: #28a745;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
  animation: fadeInUp 1.6s ease;
}
#call-to-action-5 .btn:hover {
  transform: scale(1.1);
  background-color: #218838;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


