
#hero-9 {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 150px 20px;
  color: #fff;
  text-align: center;
}
#hero-9 .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
#hero-9 .container {
  position: relative;
  z-index: 2;
}
#hero-9 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-9 .hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}



#features-28 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-28']['bg_color'] ?? '#f8f9fa' }};
}
#features-28 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-28 .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-28 .section-title p {
  margin-bottom: 40px;
  color: #6c757d;
}
#features-28 .feature-image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 250px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
  cursor: pointer; 
   box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
#features-28 .feature-image-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
#features-28 .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
transition: background-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1;
}
/* Hover effect defined via JS might be smoother if needed,
   but CSS transition is simpler */
#features-28 .feature-image-card:hover .card-overlay {
}
#features-28 .card-content {
   position: relative;
   z-index: 2;
}
#features-28 .card-icon i {
  font-size: 40px;
  margin-bottom: 15px;
  opacity: 0.9;
}
#features-28 .card-title {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  #features-28 .section-title h2 {
    font-size: 28px;
  }
  #features-28 .feature-image-card {
     min-height: 200px;
  }
   #features-28 .card-icon i {
      font-size: 36px;
   }
    #features-28 .card-title {
      font-size: 18px;
   }
}



#portfolio-20 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #f8f9fa;
}
#portfolio-20 .section-title-container {
  margin-bottom: 50px;
}
#portfolio-20 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2c3e50;
}
#portfolio-20 .section-main-subtitle {
  font-size: 1.1rem;
  color: #5a677d;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#portfolio-20 .project-insight-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#portfolio-20 .project-insight-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
#portfolio-20 .project-main-image-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
#portfolio-20 .project-card-content {
  padding: 20px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#portfolio-20 .project-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 5px;
}
#portfolio-20 .project-card-title a {
  color: inherit;
  text-decoration: none;
}
#portfolio-20 .project-card-title a:hover {
  text-decoration: underline;
}
#portfolio-20 .project-card-category {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#portfolio-20 .project-final-result-desc {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 20px;
}
#portfolio-20 .project-insight-snippet {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed #e0e5ec;
}
#portfolio-20 .insight-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
#portfolio-20 .insight-icon {
  font-size: 1.1rem;
  color: #20c997;
  margin-right: 10px;
  min-width: 20px;
}
#portfolio-20 .insight-title-text {
  font-size: 1rem;
  font-weight: 500;
  color: #343a40;
}
#portfolio-20 .insight-text-content {
  font-size: 0.85rem;
  color: #555e68;
  line-height: 1.5;
  padding-left: 30px;
}
@media (max-width: 575.98px) {
  #portfolio-20 .project-card-title {
    font-size: 1.25rem;
  }
  #portfolio-20 .insight-text-content {
    padding-left: 0;
  }
}



#content-block-6 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
}
#content-block-6 .section-hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 15px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
#content-block-6 .section-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#content-block-6 .section-hero p {
  font-size: 1.2rem;
}
#content-block-6 .content-body {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  line-height: 1.8;
}



#text-block-8 {
  padding: 90px 0;
  background-color: var(--section-bg-color, #ffffff);
  color: var(--text-color, #343a40);
  position: relative;
  overflow: hidden;
}
#text-block-8::before {
  content: var(--quote-char, "“");
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-size: 25rem;
  font-family: Georgia, serif;
  color: var(--quote-mark-color, rgba(0, 123, 253, 0.06));
  z-index: 1;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  font-weight: bold;
}
#text-block-8 .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
#text-block-8 .section-title-optional {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 10px;
}
#text-block-8 .text-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-color, #343a40);
  margin-bottom: 30px;
}
#text-block-8 .text-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color, #495057);
  opacity: 0.95;
  margin-bottom: 1.5rem;
}
#text-block-8 .text-paragraph:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #text-block-8::before {
    font-size: 20rem;
    left: 2%;
  }
  #text-block-8 .text-heading {
    font-size: 2.2rem;
  }
  #text-block-8 .text-paragraph {
    font-size: 1.05rem;
  }
}
@media (max-width: 767.98px) {
  #text-block-8 {
    padding: 60px 0;
  }
  #text-block-8::before {
    font-size: 15rem;
    left: -5px;
    opacity: 0.8;
    top: 60%;
  }
  #text-block-8 .text-heading {
    font-size: 1.9rem;
  }
  #text-block-8 .text-paragraph {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  #text-block-8::before {
    font-size: 12rem;
    top: 65%;
  }
}



#how-it-works-29 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f9fa;
}
#how-it-works-29 .section-title-container {
  margin-bottom: 50px;
}
#how-it-works-29 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
}
#how-it-works-29 .section-main-subtitle {
  font-size: 1.1rem;
  color: #495057;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-29 .flow-stage-column {
  display: flex;
  height: 100%;
}
#how-it-works-29 .flow-stage-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
#how-it-works-29 .flow-stage-card:not(:last-child)::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #0d6efd;
  z-index: 2;
}
@media (min-width: 992px) {
  #how-it-works-29 .row > div:nth-child(3) .flow-stage-card::after {
    display: none;
  }
}
@media (max-width: 991.98px) {
  #how-it-works-29 .flow-stage-card::after {
    display: none;
  }
  #how-it-works-29 .flow-stage-card {
    margin-bottom: 30px;
  }
  #how-it-works-29 .flow-stage-card:not(:last-child)::before {
    content: "\f063";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    color: #0d6efd;
    z-index: 2;
  }
  #how-it-works-29 .row > div:last-child .flow-stage-card::before {
    display: none;
  }
}
#how-it-works-29 .stage-icon-header {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 15px;
}
#how-it-works-29 .stage-main-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 10px;
}
#how-it-works-29 .stage-description-text {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}
#how-it-works-29 .stage-item-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-top: auto;
}
#how-it-works-29 .stage-item-list li {
  font-size: 0.9rem;
  color: #495057;
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
  display: flex;
  align-items: center;
}
#how-it-works-29 .stage-item-list li:last-child {
  border-bottom: none;
}
#how-it-works-29 .stage-item-list li i {
  color: #20c997;
  margin-right: 10px;
  font-size: 0.8rem;
}



#call-to-action-10 {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
#call-to-action-10 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
#call-to-action-10 p {
  font-size: 18px;
  margin-bottom: 30px;
}
#call-to-action-10 .cta-btn {
  padding: 12px 30px;
  background-color: #fff;
  color: #2575fc;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
#call-to-action-10 .cta-btn:hover {
  background-color: #e2e6ea;
  color: #2575fc;
}
@media (max-width: 767.98px) {
  #call-to-action-10 h2 {
    font-size: 28px;
  }
  #call-to-action-10 p {
    font-size: 16px;
  }
}


