/* Light polish to make the section look nice on a blank page */

body {
  background: #f7f7fb;
}

.bg-soft {
  background: #fff7fb;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-soft {
  box-shadow: 0 0.75rem 2rem rgba(0,0,0,.06);
}

.section-eyebrow {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #b96aa0;
}

.lead-strong {
  font-size: 1.25rem;
  font-weight: 500;
}

.icon-bullet {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

h1 {
  font-family: Libre Baskerville;
}

h1 span {
  all: unset;
}

h2 span {
  all: unset;
  color: #fff !important;
  background: none !important;
}

h3 span {
  all: unset;
  color: #fff !important;
  background: none !important;
}

.btn-cta {
  background-color: #BE3A34 !important;
  border-radius: 75px !important;
  padding: 15px 20px !important;
  color: white !important;
  width: 100%;
  font-family: var(--contentfont)!important;
  font-weight: 700!important;
  display: block;
  margin: 0 auto;
  text-align: center!important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-inv {
  background-color: #fff !important;
  border-radius: 75px !important;
  padding: 15px 20px;
  color: #BE3A34 !important;
  width: 50%;
  font-family: var(--contentfont)!important;
  font-weight: 700!important;
  display: block;
  margin: 0 auto;
  text-align: center!important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Larger screens: 50% width */

@media (min-width: 768px) {
  .btn-cta {
    width: 40%;
  }
}

@media (min-width: 768px) {
  .btn-cta-inv {
    width: 60%;
  }
}

/* Hover animation: move up + subtle shadow */

.btn-cta:hover, .btn-cta-inv:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.list-group-item {
  border: 0 !Important;
}

/* Testimonial card */

.testimonial-card {
  position: relative;
  border-radius: 1rem;
  background: #f7eee9;
  overflow: visible;
}

.testimonial-card .card-body {
  padding: 3.25rem 2rem 2rem;
}

/* Avatar that overlaps the top, perfectly round */

.testimonial-avatar {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px !important;
  height: 96px;
  border-radius: 50%;
  object-fit: contain !important;
}

/* .testimonial-avatar {
  width: 80px !important;
  height: 80px;
  border-radius: 50%;
  object-fit: contain !important;
  background: #fff;
  border: 2px solid rgba(0,0,0,0.05);
  flex-shrink: 0;
  margin-right: 1rem;
} */

/* Text styles */

.testimonial-quote {
  font-family: poppins;
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: normal;
}

.testimonial-name {
  color: #BE3A34;
  font-weight: 700;
  margin-top: .75rem;
}

.testimonial-stars {
  color: #ffc107;
  letter-spacing: .15rem;
  font-size: 1.25rem;
}

/* Responsive tweaks */

@media (max-width: 576px) {
  .testimonial-card .card-body {
    padding-top: 2.75rem;
  }
}

@media (max-width: 576px) {
  .testimonial-avatar {
    width: 84px;
    height: 84px;
    top: -42px;
  }
}

/* Avatar size; change 80px if you like */

.testimonial {
  display: flex;
  align-items: flex-start;
}

.card-body {
  margin-left: 1rem;
  text-align: left;
}

.card-text {
  margin-left: 1rem;
  text-align: left;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500;
  padding-left: 1em;
}

/* Avatar: fixed size, round, show full image */

/* Optional: if you prefer a filled circle that crops edges, switch to: */

/* .testimonial-avatar { object-fit: cover; } */

@media (max-width: 576px) {
  .testimonial-quote {
    font-size: 1rem;
  }
}

.w-responsive {
  width: 100%;
}

/* https://getbootstrap.com/docs/5.3/layout/breakpoints/ */

/* sm=576, md=768, lg=992, xl=1200, xxl=1400 */

@media (min-width: 768px) {
  .w-responsive {
    width: 90%;
  }
}

/* https://getbootstrap.com/docs/5.3/layout/breakpoints/ */

/* sm=576, md=768, lg=992, xl=1200, xxl=1400 */

@media (min-width: 992px) {
  .w-responsive {
    width: 75%;
  }
}

/* make the form centered */

.consultant-form-wrapper {
  margin: 0 auto;
  max-width: 600px;
}

.consultant-left-section {
  display: none !important;
}

.video-wrap {
  margin: 0 auto;
  display: block;
  aspect-ratio: 9 / 16;
  width: min(80%, calc(70vh * 9 / 16));
  max-height: 70vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

/* iframe fills the box */

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* On small screens: allow full width but still obey the 70vh limit */

@media (max-width: 991.98px) {
  .video-wrap {
    width: min(100%, calc(70vh * 9 / 16));
  }
}

/* Solution for load font Awesome */

.fa::after, .far::after, .fas::after, .fa::before, .far::before, .fas::before {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: inherit !important;
}

