

/* our promise */
.sub-title {
    font-size: 20px;
}

.promise-card {
    border-radius: 12px;
    height: 100%;
}

.promise-card h4 {
    font-size: 28px;
}

.promise-card button {
    min-width: 100%;
}

.promise-title {
    font-size: 32px;
}

.hero {
    margin: 0 auto;
    height: 644px;
    background-image: url('../images/about/about-hero.webp');
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 100%;
    padding: 50px 80px;
    background: rgba(0, 0, 0, 0.6);
}

.hero-text {
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero p {
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    font-style: regular;
    font-size: 28px;
    line-height: normal;
}

@media (max-width: 992px) {
    .hero {
        height: 400px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
    .hero-content {
        padding: 10px;
    }
}

/* problem we talk about */
.about-problem-card {
    width: 200px;
    height: 230px;
    border-radius: 12px;
    color: white;
    padding: 18px;
}

.about-problem-card img {
    height: 100%;
    z-index: -2;

}

.section-wrap {
    padding: 56px 0 80px;
}

.eyebrow {
    letter-spacing: .02em;
    font-weight: 700;
    color: var(--brand-text);
    font-size: clamp(28px, 3.5vw, 36px);
}

.eyebrow em {
    color: var(--brand-accent);
    font-style: normal;
}

.lead-sub {
    color: var(--muted);
    max-width: 900px;
    margin-inline: auto;
    font-size: 1.1rem;
}

.benefit-panel {
    background: #0c0f3f;
    color: white;
    border-radius: 16px;
    padding: 32px;
    margin-top: 28px;
    position: relative;
    font-family: "Lexend", sans-serif;
}

.benefit-title {
    color: white;
    font-family: "Lexend", sans-serif;
    font-weight: 600;
    font-size: 28px;
}

.benefit-text {
    color: #D7DEF0;
    margin: 0;
    font-size: 1rem;
}

.benefit-text .hl {
    color: var(--brand-accent);
    font-weight: 800;
}

/* Vertical separators between cols */
@media (min-width: 992px) {
    .col-sep {
        border-right: 1px solid white;
    }

    .col-sep:last-child {
        border-right: none;
    }
}

/* Subtle divider lines on small screens */
@media (max-width: 991.98px) {
    .benefit-block {
        padding-block: 18px;
        border-top: 1px solid white!important;
    }

    .benefit-block:first-child {
        border-top: none;
    }
}

/* Tiny underline accents under each title (optional) */
.benefit-title::after {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    background: var(--brand-accent);
    border-radius: 2px;
    margin-top: 8px;
    opacity: .35;
}

/* form  */
/* Inputs with thin, flat look */
.custom-input {
    border: none !important;
    border-bottom: 2px solid #0F1A33 !important;
    border-radius: 0 !important;
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
    box-shadow: none !important;
    background-color: #fff !important;
}

.custom-input::placeholder {
    color: var(--hint);
}

.custom-input:focus {
    border-bottom-color: #c9cfe0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.card-body {
    border-radius: 12px;
    border: 1px solid #0F1A33;
}

/* Submit button */
.submit-btn {
    background: var(--brand-navy);
    border-color: var(--brand-navy);
    padding-top: .9rem;
    padding-bottom: .9rem;
}

.submit-btn:hover {
    background: #0b1735;
    border-color: #0b1735;
}

/* Section padding helper (py-lg-6 approximation) */
@media (min-width:992px) {
    .py-lg-6 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }
}

.my-problem-swiper {
    width: 100%;
    padding-bottom: 40px;
  }
  .my-problem-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
  }
  .my-problem-swiper .about-problem-card {
    width: 280px;
    height: 200px;
    margin: 0 auto;
  }
  .my-problem-swiper .swiper-pagination {
    bottom: 0;
  }
  .my-problem-swiper .swiper-pagination-bullet {
    background: #F39C37;
    opacity: 0.5;
  }
  .my-problem-swiper .swiper-pagination-bullet-active {
    opacity: 1;
  }
  .my-problem-swiper .swiper-wrapper {
    padding-bottom: 20px!important;
  }
  @media (max-width: 576px) {
    .my-problem-swiper .about-problem-card {
      width: 250px;
      height: 180px;
    }
  }
  @media (min-width: 576px) and (max-width: 768px) {
    .my-problem-swiper .about-problem-card {
      width: 260px;
      height: 190px;
    }
  }