
#hero-7 {
  padding: 100px 20px;
  background-color: #f1f3f5;
  text-align: center;
}
#hero-7 .hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
#hero-7 .hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.testimonial-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.testimonial-item blockquote {
  font-size: 20px;
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}
.testimonial-author {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}



#overview-15 {
  overflow: hidden;
  background-color: var(--section-bg-color, #ffffff);
}
#overview-15 .overview-section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#overview-15 .section-intro {
  margin-bottom: 3.5rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#overview-15 .section-intro .section-heading {
  margin-bottom: 0.5rem;
}
#overview-15 .section-intro .lead {
  color: #6c757d;
  margin-bottom: 0;
}
#overview-15 .content-block-wrapper {
  padding: 15px;
}
#overview-15 .tilted-content-block {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: left;
}
#overview-15 .row > div:nth-child(odd) .tilted-content-block {
  transform: rotate(-1.5deg);
}
#overview-15 .row > div:nth-child(even) .tilted-content-block {
  transform: rotate(1.5deg);
}
#overview-15 .content-block-wrapper:hover .tilted-content-block {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #ddd;
}
#overview-15 .tilted-content-block h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--bs-primary);
  display: flex;
  align-items: center;
}
#overview-15 .tilted-content-block h5 i {
  margin-right: 0.75rem;
  opacity: 0.9;
}
#overview-15 .tilted-content-block p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}
#overview-15 .cta-wrapper {
  text-align: center;
  margin-top: 3rem;
}



#text-block-16 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #f9f6f1);
  background-image: var(--section-bg-texture);
  background-repeat: repeat;
  color: var(--text-color, #4a4a4a);
  font-family: "Georgia", serif;
}
#text-block-16 .container {
  max-width: 800px;
}
#text-block-16 .paper-content-box {
  background-color: var(--container-bg-color, rgba(255, 255, 255, 0.6));
  padding: 40px 50px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
#text-block-16 .section-title-optional {
  text-align: center;
  font-size: 1rem;
  font-weight: normal;
  font-style: italic;
  color: var(--text-color, #4a4a4a);
  opacity: 0.8;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
#text-block-16 .text-heading {
  text-align: center;
  font-size: 2.3rem;
  font-weight: bold;
  color: var(--text-color, #4a4a4a);
  margin-bottom: 35px;
  line-height: 1.3;
}
#text-block-16 .text-paragraph {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-color, #4a4a4a);
  opacity: 0.9;
  margin-bottom: 1.4rem;
  text-align: justify;
}
#text-block-16 .text-paragraph:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #text-block-16 {
    padding: 60px 0;
  }
  #text-block-16 .paper-content-box {
    padding: 30px 25px;
  }
  #text-block-16 .text-heading {
    font-size: 1.9rem;
  }
  #text-block-16 .text-paragraph {
    font-size: 1rem;
    line-height: 1.8;
  }
}



/* === Gradient Section & Divider SVG === */
.post-section {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.post-section .divider-top,
.post-section .divider-bottom {
  display: block;
  width: 100%;
  line-height: 0;
}
.post-section .divider-top svg,
.post-section .divider-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Background gradient */
#post-section-9 {
  background: linear-gradient(135deg,
    var(--grad-start),
    var(--grad-end)
  );
  padding: 80px 0;
}

/* Section header */
.post-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.post-section .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
}
.post-section .section-header p {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 8px;
}

/* === Card 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); }
}
.post-card {
  background: #fff;
  color: #333;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.post-card:hover {
  transform: translateY(-5px);
}
.post-card img {
  width: 100%;
  display: block;
}
.post-card .card-body {
  padding: 1rem;
}
.post-card .card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.post-card .card-body p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}
.post-card .btn-readmore {
  font-size: 0.85rem;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}




#content-block-27 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#content-block-27 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#content-block-27 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#content-block-27 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#content-block-27 .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}
#content-block-27 .info-item-icon {
  font-size: 1.75rem;
  color: var(--bs-primary, #0d6efd);
  margin-right: 1rem;
  min-width: 1.5em;
  text-align: center;
  margin-top: 0.1em;
}
#content-block-27 .info-item-content {
  flex-grow: 1;
}
#content-block-27 .info-item-content h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #495057;
}
#content-block-27 .info-item-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #content-block-27 .info-item {
    margin-bottom: 0;
  }
}



#how-it-works-11 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f9fa;
}
#how-it-works-11 .section-title-container {
  margin-bottom: 45px;
}
#how-it-works-11 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
#how-it-works-11 .section-main-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-11 .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#how-it-works-11 .step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
#how-it-works-11 .step-icon-container {
  width: 70px;
  height: 70px;
  background-color: #0d6efd;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
#how-it-works-11 .step-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 5px;
  text-transform: uppercase;
}
#how-it-works-11 .step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 10px;
}
#how-it-works-11 .step-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
}
@media (max-width: 991.98px) {
  #how-it-works-11 .step-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  #how-it-works-11 .section-main-title {
    font-size: 2rem;
  }
  #how-it-works-11 .section-main-subtitle {
    font-size: 1rem;
  }
}



#faq-21 {
  padding: 60px 0;
  background-color: #fff;
}
#faq-21 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#faq-21 .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-21 .accordion-button {
  font-weight: 600;
  color: #343a40;
  background-color: #f8f9fa;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
}
#faq-21 .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: #e7f1ff;
}
#faq-21 .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-21 .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-21 .accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
  border-top: 1px solid #eee;
}
#faq-21 .accordion-body p:last-child {
  margin-bottom: 0;
}
#faq-21 .faq-answer-image {
  margin-top: 1.5rem;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #eee;
}



#why-choose-us-1 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1200px;
}
#why-choose-us-1 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#why-choose-us-1 .section-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#why-choose-us-1 .section-hero p {
  font-size: 1.1rem;
}
#why-choose-us-1 .reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#why-choose-us-1 .reason-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 ease;
}
#why-choose-us-1 .reason-card:hover {
  transform: translateY(-5px);
}
#why-choose-us-1 .reason-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}
#why-choose-us-1 .reason-card h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
#why-choose-us-1 .reason-card p {
  font-size: 0.95rem;
  color: #555;
}
@media (max-width: 992px) {
  #why-choose-us-1 .reason-card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  #why-choose-us-1 .reason-card {
    flex: 1 1 100%;
  }
}



#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;
  }
}



#call-to-action-23 {
  padding: 5rem 0;
  overflow: hidden;
}
.cta-form-content h2 {
  font-weight: 700;
  color: #312e81;
}
.cta-form-content p {
  color: #4f46e5;
  font-size: 1.1rem;
}
.cta-form-wrapper .input-group {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
}
.cta-form-wrapper .form-control {
  min-height: 3.5rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-color: #e0e7ff;
}
.cta-form-wrapper .form-control:focus {
  border-color: #a5b4fc;
  box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
}
.cta-form-wrapper .btn {
  min-height: 3.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  background-color: #4f46e5;
  border-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cta-form-wrapper .btn:hover {
  background-color: #4338ca;
  border-color: #4338ca;
}
@media (max-width: 991.98px) {
  .cta-form-content {
    margin-bottom: 2rem;
    text-align: center;
  }
}


