
#hero-11 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 65vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  text-align: left;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-11::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-11 .container {
  position: relative;
  z-index: 2;
}
#hero-11 .hero-content-wrapper-11 {
  max-width: 650px;
  margin-left: 0;
  margin-right: auto;
}
#hero-11 .hero-title-11 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-11 .hero-subtitle-11 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-11 .hero-cta-button-11 {
  display: inline-block;
  padding: 0.8rem 2.1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-11 .hero-cta-button-11:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  #hero-11 {
    min-height: 60vh;
    padding: 4rem 0;
    text-align: center;
    justify-content: center;
  }
  #hero-11 .hero-content-wrapper-11 {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  #hero-11 .hero-title-11 {
    font-size: 2.4rem;
  }
  #hero-11 .hero-subtitle-11 {
    font-size: 1.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;
}




#about-us-29 {
  padding: 80px 0;
  background-color: #181818;
  color: #fff;
  position: relative;
}
#about-us-29 .section-title,
#about-us-29 .section-subtitle {
  text-align: center;
  margin-bottom: 60px;
}
#about-us-29 .content-block {
  position: relative;
  margin-bottom: 80px;
}
#about-us-29 .content-block.image-left {
  display: flex;
  align-items: center;
  padding-left: 10%;
}
#about-us-29 .content-block.image-left .image-wrapper {
  width: 40%;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  overflow: hidden;
}
#about-us-29 .content-block.image-left img {
  width: 100%;
  height: auto;
  display: block;
}
#about-us-29 .content-block.image-left .text-wrapper {
  width: 50%;
  padding-left: 5%;
}
#about-us-29 .content-block.text-right {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding-right: 10%;
}
#about-us-29 .content-block.text-right .text-wrapper {
  width: 50%;
  padding-right: 5%;
  text-align: right;
}
#about-us-29 .content-block.text-right .highlight {
  color: #ffc107;
}
#about-us-29 .content-block.image-center-top {
  text-align: center;
  padding-top: 50px;
}
#about-us-29 .content-block.image-center-top .image-wrapper {
  width: 30%;
  margin: 0 auto 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  overflow: hidden;
}
#about-us-29 .content-block.image-center-top img {
  width: 100%;
  height: auto;
  display: block;
}
#about-us-29 .content-block.text-left-bottom {
  padding-left: 15%;
  padding-bottom: 80px;
}
#about-us-29 .content-block.text-left-bottom .text-wrapper {
  width: 60%;
}
#about-us-29 .content-block h3 {
  font-size: 2rem;
  color: #f8f9fa;
  margin-bottom: 15px;
}
#about-us-29 .content-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
}
@media (max-width: 768px) {
  #about-us-29 .content-block {
    flex-direction: column !important;
    align-items: center !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    text-align: center !important;
  }
  #about-us-29 .content-block .image-wrapper,
  #about-us-29 .content-block .text-wrapper {
    width: 80% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 20px;
  }
}



#our-services-19 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
}
#our-services-19 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#our-services-19 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#our-services-19 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#our-services-19 .process-flow-row {
  position: relative;
}
#our-services-19 .step-item {
  text-align: center;
  padding: 1rem;
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #our-services-19 .step-item:not(:last-child)::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 25%;
    right: -20px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #adb5bd;
    z-index: 1;
  }
  #our-services-19 .step-item {
    margin-bottom: 0;
  }
}
#our-services-19 .step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bs-primary, #0d6efd);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
  transition: transform 0.3s ease;
}
#our-services-19 .step-item:hover .step-icon {
  transform: scale(1.1);
}
#our-services-19 .step-icon i {
  font-size: 1.75rem;
}
#our-services-19 .step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #495057;
}
#our-services-19 .step-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  #our-services-19 .step-item:not(:last-child)::after {
    display: none;
  }
  /* #our-services-19 .process-flow-row::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #e9ecef;
    top: 35px; // Start below first icon
    bottom: 35px; // End above last icon base
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
   }
    #our-services-19 .step-item { z-index: 1; background-color: #f8f9fa; } // Ensure item is above line */
}



#features-7 {
  padding: 60px 0;
  background-color: #f1f3f5;
  text-align: center;
}
#features-7 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-7 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-7 .flip-card {
  background-color: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px;
  margin-bottom: 30px;
}
#features-7 .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
#features-7 .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
#features-7 .flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#features-7 .flip-card-front {
  background-color: #ffffff;
  color: #17a2b8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-7 .flip-card-back {
  background-color: #17a2b8;
  color: #ffffff;
  transform: rotateY(180deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-7 .flip-card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
#features-7 .flip-card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-7 .flip-card-description {
  font-size: 14px;
}



#faq-16 {
  padding: 80px 0;
  background-color: #fff;
}
#faq-16 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  color: #212529;
}
#faq-16 .faq-list-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#faq-16 .faq-minimal-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}
#faq-16 .faq-minimal-item:last-child {
  border-bottom: none;
}
#faq-16 .faq-minimal-question {
  font-weight: 600;
  font-size: 1.15rem;
  color: #343a40;
  margin-bottom: 0.8rem;
  display: block;
}
#faq-16 .faq-minimal-answer {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 0;
}



#content-block-12 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}
#content-block-12 .quote-block {
  background: #f1f1f1;
  padding: 50px 30px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-style: italic;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#content-block-12 .quote-block .author {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}



#testimonials-17 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #f8f9fa);
}
#testimonials-17 .container {
  max-width: 1140px;
}
#testimonials-17 .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#testimonials-17 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-17 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
#testimonials-17 .minimalist-quote-wall {
  column-gap: var(--column-gap, 2.5rem);
  column-count: var(--column-count-sm, 1);
}
#testimonials-17 .minimalist-quote-item {
  padding: 25px 0;
  margin-bottom: var(--column-gap, 2.5rem);
  page-break-inside: avoid;
  break-inside: avoid;
  border-top: 2px solid #e9ecef;
}
#testimonials-17 .minimalist-quote-item blockquote {
  font-size: 1.3rem;
  font-weight: 400;
  color: #212529;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: normal;
  border-left: none;
  padding-left: 0;
  position: relative;
}
#testimonials-17 .minimalist-quote-item blockquote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: #adb5bd;
  position: absolute;
  left: -15px;
  top: -10px;
  line-height: 1;
  opacity: 0.6;
}
#testimonials-17 .minimalist-quote-item .quote-author {
  text-align: right;
}
#testimonials-17 .minimalist-quote-item .client-name {
  display: block;
  font-weight: 600;
  color: #495057;
  font-size: 1rem;
}
#testimonials-17 .minimalist-quote-item .client-position {
  display: block;
  font-size: 0.9rem;
  color: #6c757d;
}
@media (min-width: 768px) {
  #testimonials-17 .minimalist-quote-wall {
    column-count: var(--column-count-md, 2);
  }
}
@media (min-width: 992px) {
  #testimonials-17 .minimalist-quote-wall {
    column-count: var(--column-count-lg, 3);
  }
}
@media (max-width: 767.98px) {
  #testimonials-17 {
    padding: 50px 0;
  }
  #testimonials-17 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-17 .minimalist-quote-item blockquote {
    font-size: 1.15rem;
  }
  #testimonials-17 .minimalist-quote-item blockquote::before {
    font-size: 3rem;
    left: -10px;
    top: -5px;
  }
}



#call-to-action-17 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
#call-to-action-17 .cta-split-container {
}
#call-to-action-17 .cta-split-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#call-to-action-17 .cta-split-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-height: 450px;
  object-fit: cover;
}
#call-to-action-17 .cta-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
#call-to-action-17 .cta-split-headline {
  font-weight: 700;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
}
#call-to-action-17 .cta-split-subtext {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}
#call-to-action-17 .cta-split-button .btn {
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
#call-to-action-17 .cta-split-button .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
#call-to-action-17 .cta-split-button .btn i {
  margin-right: 8px;
}
@media (max-width: 991.98px) {
  #call-to-action-17 .cta-split-content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    margin-top: 2rem;
  }
  #call-to-action-17 .cta-split-headline {
    font-size: 1.8rem;
  }
  #call-to-action-17 .cta-split-button {
    margin-top: 1rem;
  }
  #call-to-action-17 .cta-split-image {
    max-height: 400px;
  }
}
@media (max-width: 767.98px) {
  #call-to-action-17 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #call-to-action-17 .cta-split-content {
    margin-top: 2rem;
    padding-left: 0;
    padding-right: 0;
  }
  #call-to-action-17 .cta-split-image {
    max-height: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}


