
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#hero-15 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-15::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-15 .container {
  position: relative;
  z-index: 2;
}
#hero-15 .hero-content-wrapper-15 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#hero-15 .hero-title-15,
#hero-15 .hero-subtitle-15,
#hero-15 .hero-cta-button-15 {
  opacity: 0;
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
#hero-15 .hero-title-15 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation-delay: 0.2s;
}
#hero-15 .hero-subtitle-15 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation-delay: 0.4s;
}
#hero-15 .hero-cta-button-15 {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
  animation-delay: 0.6s;
}
#hero-15 .hero-cta-button-15:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  #hero-15 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-15 .hero-title-15 {
    font-size: 2.5rem;
  }
  #hero-15 .hero-subtitle-15 {
    font-size: 1.1rem;
  }
}



#why-choose-us-17 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
}
#why-choose-us-17 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#why-choose-us-17 .section-header h2 {
  font-weight: 700;
  color: #343a40;
}
#why-choose-us-17 .intro-text-column h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #495057;
}
#why-choose-us-17 .intro-text-column p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}
#why-choose-us-17 .accordion {
  border: none;
}
#why-choose-us-17 .accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
#why-choose-us-17 .accordion-item:last-child {
  margin-bottom: 0;
}
#why-choose-us-17 .accordion-header {
}
#why-choose-us-17 .accordion-button {
  font-weight: 600;
  background-color: #f8f9fa;
  border-radius: 0 !important;
}
#why-choose-us-17 .accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background-color: #e7f1ff;
  box-shadow: none;
}
#why-choose-us-17 .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  z-index: 3;
}
#why-choose-us-17 .accordion-button i {
  margin-right: 0.75rem;
  color: var(--bs-secondary);
  min-width: 1.25em;
}
#why-choose-us-17 .accordion-button:not(.collapsed) i {
  color: var(--bs-primary);
}
#why-choose-us-17 .accordion-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c757d;
  background-color: #fff;
}
@media (max-width: 767.98px) {
  #why-choose-us-17 .intro-text-column {
    margin-bottom: 2rem;
    text-align: center;
  }
  #why-choose-us-17 .intro-text-column h3 {
    font-size: 1.5rem;
  }
}



#customer-support-9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#customer-support-9 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#customer-support-9 .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#customer-support-9 .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#customer-support-9 .contact-form {
  max-width: 720px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#customer-support-9 .form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #495057;
}
#customer-support-9 .form-control {
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ced4da;
}
#customer-support-9 .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}
#customer-support-9 textarea.form-control {
  min-height: 150px;
}
#customer-support-9 .submit-button-wrapper {
  text-align: center;
  margin-top: 1rem;
}
#customer-support-9 .btn-submit {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}
#customer-support-9 .form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.25rem;
  display: none;
  text-align: center;
}
#customer-support-9 .form-message.success {
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
  display: block;
}
#customer-support-9 .form-message.error {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
  display: block;
}
@media (max-width: 767.98px) {
  #customer-support-9 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #customer-support-9 .section-title {
    font-size: 2rem;
  }
  #customer-support-9 .contact-form {
    padding: 1.5rem;
  }
}



#testimonials-11 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#testimonials-11 .container {
  max-width: 960px;
}
#testimonials-11 .section-header {
  margin-bottom: 40px;
}
#testimonials-11 .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #343a40;
}
#testimonials-11 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#testimonials-11 .testimonial-item {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#testimonials-11 .testimonial-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px auto;
  border: 3px solid #dee2e6;
}
#testimonials-11 .testimonial-content blockquote {
  font-style: italic;
  color: #495057;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
  flex-grow: 1;
}
#testimonials-11 .testimonial-content blockquote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  color: #adb5bd;
  margin-right: 8px;
}
#testimonials-11 .testimonial-content blockquote::after {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  color: #adb5bd;
  margin-left: 8px;
}
#testimonials-11 .client-info .client-name {
  font-weight: 600;
  color: #343a40;
  display: block;
  margin-bottom: 2px;
}
#testimonials-11 .client-info .client-position {
  font-size: 0.9rem;
  color: #6c757d;
}
#testimonials-11 .rating {
  margin-top: 10px;
  color: #ffc107;
}
#testimonials-11 .rating .fa-star.empty {
  color: #e0e0e0;
}
#testimonials-11 .carousel-indicators button {
  background-color: #adb5bd;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
}
#testimonials-11 .carousel-indicators .active {
  background-color: #0d6efd;
}
#testimonials-11 .carousel-control-prev,
#testimonials-11 .carousel-control-next {
  width: 5%;
}
#testimonials-11 .carousel-control-prev-icon,
#testimonials-11 .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 15px;
  background-size: 50% 50%;
  width: 40px;
  height: 40px;
}
#testimonials-11 .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
#testimonials-11 .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
@media (max-width: 767.98px) {
  #testimonials-11 {
    padding: 40px 0;
  }
  #testimonials-11 .section-header h2 {
    font-size: 1.8rem;
  }
  #testimonials-11 .section-header p {
    font-size: 1rem;
  }
  #testimonials-11 .testimonial-item {
    padding: 20px;
    min-height: 320px;
  }
  #testimonials-11 .testimonial-content blockquote {
    font-size: 1rem;
  }
  #testimonials-11 .carousel-control-prev-icon,
  #testimonials-11 .carousel-control-next-icon {
    padding: 10px;
    width: 35px;
    height: 35px;
  }
}



#features-27 {
  overflow: hidden;
}
#features-27 .split-row {
  min-height: 550px; 
}
#features-27 .image-column {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
min-height: 300px; 
}
#features-27 .content-column {
  padding: 50px 40px; 
  background-color: {{ $data['features-27']['content_bg_color'] ?? '#ffffff' }};
  color: {{ $data['features-27']['text_color'] ?? '#343a40' }};
  display: flex;
  flex-direction: column;
  justify-content: center; 
}
#features-27 .content-column h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: inherit;
}
#features-27 .content-column .subtitle {
  font-size: 16px;
  color: #6c757d; 
  margin-bottom: 30px;
  line-height: 1.6;
}
#features-27 .feature-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
#features-27 .feature-list-item:last-child {
    margin-bottom: 0;
}
#features-27 .feature-list-icon {
  flex-shrink: 0;
  margin-right: 15px;
  margin-top: 3px; 
}
#features-27 .feature-list-icon i {
  font-size: 22px;
  color: var(--bs-primary, #0d6efd);
  width: 25px;
  text-align: center;
}
#features-27 .feature-list-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: inherit;
}
#features-27 .feature-list-content p {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.5;
}
#features-27 .content-column .btn {
    margin-top: 30px;
    align-self: flex-start; 
    padding: 10px 25px;
    font-weight: 500;
}
@media (max-width: 991.98px) {
  #features-27 .split-row {
    min-height: auto; 
  }
  #features-27 .image-column {
     min-height: 350px; 
  }
  #features-27 .content-column {
     padding: 40px 30px;
  }
   #features-27 .content-column h2 {
     font-size: 28px;
   }
}



#our-services-11 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
}
#our-services-11 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#our-services-11 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#our-services-11 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#our-services-11 .service-card {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#our-services-11 .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#our-services-11 .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#our-services-11 .card-body {
  padding: 1.5rem;
  flex-grow: 1;
}
#our-services-11 .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #495057;
}
#our-services-11 .card-text {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
}
#our-services-11 .card-footer {
  background-color: transparent;
  border-top: none;
  padding: 0 1.5rem 1.5rem;
  margin-top: auto;
}
#our-services-11 .btn-service-link {
}



#faq-26 {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #212529;
}
#faq-26::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#faq-26 .container {
  position: relative;
  z-index: 2;
}
#faq-26 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
#faq-26 .faq-content-wrapper {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
#faq-26 .faq-minimal-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#faq-26 .faq-minimal-item:last-child {
  border-bottom: none;
}
#faq-26 .faq-minimal-question {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
#faq-26 .faq-minimal-answer {
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.9;
}
#faq-26 .accordion-item {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  border-radius: 6px !important;
  overflow: hidden;
}
#faq-26 .accordion-button {
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
  background-color: transparent;
}
#faq-26 .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: rgba(231, 241, 255, 0.8);
}
#faq-26 .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%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;
  filter: brightness(0.6);
}
#faq-26 .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);
  filter: none;
}
#faq-26 .accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
}
#faq-26 .accordion-body p:last-child {
  margin-bottom: 0;
}



#team-11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#team-11 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#team-11 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-11 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-11 .photo-grid-wrapper .row {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
  justify-content: center;
}
#team-11 .photo-item {
  line-height: 0;
  position: relative;
  overflow: hidden;
}
#team-11 .photo-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}
#team-11 .photo-item.shape-circle img,
#team-11 .photo-item.shape-circle {
  border-radius: 50%;
}
#team-11 .photo-item.shape-square img,
#team-11 .photo-item.shape-square {
  border-radius: 0.25rem;
}
#team-11 .photo-item a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(var(--bs-primary-rgb), 0);
  transition: background-color 0.3s ease;
  border-radius: inherit;
}
#team-11 .photo-item a:hover::after {
  background-color: rgba(var(--bs-primary-rgb), 0.2);
}
#team-11 .photo-item a:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}
@media (max-width: 767.98px) {
  #team-11 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-11 .section-title {
    font-size: 2.1rem;
  }
  #team-11 .photo-grid-wrapper .row {
    --bs-gutter-x: 0.3rem;
    --bs-gutter-y: 0.3rem;
  }
}



#awards-10 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}
/*
#awards-10::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6610f2 0%, #34156e 100%);
    z-index: 1;
}
#awards-10 .container { position: relative; z-index: 2; }
*/
#awards-10 .highlight-icon {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
#awards-10 .highlight-text {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#awards-10 .description-text {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 3rem auto;
  opacity: 0.9;
}
#awards-10 .key-logos-wrapper {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 900px;
  margin: 0 auto;
}
#awards-10 .logos-title {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  opacity: 0.8;
}
#awards-10 .key-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
#awards-10 .logo-item {
  text-align: center;
}
#awards-10 .logo-item a {
  display: inline-block;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#awards-10 .logo-item a:hover {
  opacity: 1;
  transform: scale(1.05);
}
#awards-10 .logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 50px;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  #awards-10 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #awards-10 .highlight-text {
    font-size: 2.2rem;
  }
  #awards-10 .description-text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  #awards-10 .key-logos-wrapper {
    padding-top: 2rem;
  }
  #awards-10 .logos-title {
    margin-bottom: 1.5rem;
  }
  #awards-10 .key-logos-grid {
    gap: 1.5rem 2rem;
  }
  #awards-10 .logo-item img {
    max-height: 40px;
  }
}



/* === 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;
}




#cta-banner-4 {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#cta-banner-4 .split-background-container {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
  flex-direction: row;
}
#cta-banner-4.split-horizontal .split-background-container {
  flex-direction: column;
}
#cta-banner-4 .split-part {
  flex: 1 1 50%;
  position: relative;
  background-size: cover;
  background-position: center center;
}
#cta-banner-4 .split-part.has-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
#cta-banner-4 .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 1.5rem;
}
#cta-banner-4 .cta-content {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#cta-banner-4 .cta-content.align-left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
#cta-banner-4 .cta-content.align-right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
#cta-banner-4.content-center-overlay .cta-content {
  max-width: 700px;
}
#cta-banner-4 .cta-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
#cta-banner-4 .cta-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#cta-banner-4 .cta-button .btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  #cta-banner-4 {
    min-height: unset;
  }
  #cta-banner-4 .split-background-container {
    flex-direction: column;
  }
  #cta-banner-4 .split-part {
    min-height: 200px;
  }
  #cta-banner-4 .container {
    padding: 3rem 1rem;
  }
  #cta-banner-4 .cta-content {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    max-width: 90%;
  }
  #cta-banner-4.content-part1 .container {
    padding-bottom: 1rem;
  }
  #cta-banner-4.content-part2 .container {
    padding-top: 1rem;
  }
  #cta-banner-4 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-4 .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  #cta-banner-4 .cta-button .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}


