

/* ============================================
   HOMEOWNERS TRUST SECTION — hwt__
   High-fidelity custom styles matching design mockup.
============================================ */

/* ---------- HERO / SECTION BG (HALF OVERLAP LAYOUT) ---------- */
.hwt__section {
  position: relative;
  background-color: #ffffff; /* Bottom half is white */
  padding: 50px 0 40px;
  z-index: 1;
}

.hwt__section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 68%;
    background: #0a497b;
    z-index: -1;
    background: linear-gradient(110deg, #05162e, #003e78);
}

/* ---------- HEADER ---------- */
.hwt__header {
  text-align: center;
  margin: 0 auto 36px;
}

.hwt__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hwt__eyebrow-line {
  width: 40px;
  height: 1px;
  background-color: #E8A93D;
}

.hwt__eyebrow-text {
  color: #E8A93D;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hwt__title {
    color: #ffffff !important;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin: 0 0 20px;
    text-transform: capitalize;
}

.hwt__title-accent {
  color: #10a6ec;
}

.hwt__title-underline {
  position: relative;
  display: inline-block;
  text-transform: lowercase;
}

.hwt__title-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background-color: #E8A93D;
  border-radius: 2px;
}

.hwt__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0;
}

/* ---------- GRID ---------- */
.hwt__grid {
  display: grid;
  grid-template-columns: minmax(320px, 400px) 1fr;
  gap: 24px;
  align-items: stretch;
}

.hwt__right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 24px;
}

.hwt__row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ---------- CARD BASE ---------- */
.hwt__card {
  border-radius: 20px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hwt__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #0077ca;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.hwt__card-label {
  display: block;
  color: #00a2ff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hwt__card-label--dark {
  color: #0077ca;
}

.hwt__card-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 10px;
  text-transform: capitalize;
}

.hwt__card-title--dark {
  color: #0b1a33;
}

.hwt__card-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 24px;
}

.hwt__card-desc--dark {
  color: #4a5568;
}

/* ---------- LEFT CARD: Independent Certified Inspectors ---------- */
.hwt__card--inspectors {
  background-image: linear-gradient(180deg, rgba(3, 24, 46, 0.85) 0%, rgba(2, 15, 30, 0.96) 100%), 
                    url('https://fddatainsp.s3.us-east-2.amazonaws.com/wp-content/uploads/2026/07/13091052/worker-drilled-wooden-floor-cracks-256714496a54e3dca3fff6a54e3dca40b4.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.hwt__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    background-color: #0077ca;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 6px;
    margin-top: auto;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 119, 202, 0.3);
}

.hwt__card-btn:hover {
  background-color: #008ee0;
  color: #ffffff;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 16px rgba(0, 119, 202, 0.45);
}

.hwt__card-btn svg {
  transition: transform 0.2s ease;
}

.hwt__card-btn:hover svg {
  transform: translateX(4px);
}

/* ---------- CLAIMS CARD (white, with image) ---------- */
.hwt__card--claims {
    background-color: #ffffff;
    background-image: url(https://fddatainsp.s3.us-east-2.amazonaws.com/wp-content/uploads/2026/07/13093133/mokup-img6a54e8b48e6646a54e8b48e6fb.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 0px) center;
    background-size: 43% auto;
    position: relative;
    min-height: 280px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    /* border: 1px solid #e2e8f0; */
    overflow: hidden;
}
.hwt__claims-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 67%;
}

.hwt__claims-content .hwt__card-icon {
  background-color: #0077ca;
}

.hwt__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0096ff !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease, color 0.2s ease;
}

.hwt__card-link:hover {
  color: #008ee0;
  gap: 12px;
}

.hwt__card-link--light {
  color: #00a2ff;
}

.hwt__card-link--light:hover {
  color: #4ebfff;
}

/* ---------- DARK BOTTOM-ROW CARDS ---------- */
.hwt__card--dark {
    background-color: #05162E;
    padding: 32px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgb(255 255 255 / 44%);
}

.hwt__card--dark .hwt__card-title {
  font-size: 19px;
  margin-bottom: 10px;
  color:#fff;
}
.hwt__card.hwt__card--inspectors .hwt__card-title {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
}

.hwt__card--dark .hwt__card-desc {
  font-size: 14px;
  margin-bottom: 20px;
}

.hwt__card--dark .hwt__card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  background-color: #0077ca;
}

/* ============================================
   BOTTOM SECTION (white bg): CTA + Badges
============================================ */
.hwt__bottom {
  background-color: #ffffff;
  padding: 0px 0 50px;
}

/* ---------- CTA BANNER ---------- */
.hwt__cta {
  background-color: #F0F7FF;
  border-radius: 18px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 108, 230, 0.03);
  border: 1px solid #e0eeff;
}

.hwt__cta-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hwt__cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0077ca;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(0, 119, 202, 0.12), 0 0 0 16px rgba(0, 119, 202, 0.06);
}

.hwt__cta-text h3 {
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 4px;
    text-transform: capitalize;
}

.hwt__cta-text p {
  font-size: 16px;
  margin: 0;
}

.hwt__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #0077ca;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 119, 202, 0.25);
}

.hwt__cta-btn:hover {
  background-color: #000;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 119, 202, 0.35);
}

/* ---------- TRUST BADGES ---------- */
.hwt__badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hwt__badge {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 16px;
  align-items: start;
  border-right: 1px solid #ECEFF2;
  padding-right: 16px;
}

.hwt__badge:last-child {
  border-right: none;
  padding-right: 0;
}

.hwt__badge-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #cce3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f9ff;
  color: #0077ca;
}

.hwt__badge-title {
  grid-column: 2;
  grid-row: 1;
  color: #0b1a33;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  text-transform: capitalize;
}

.hwt__badge-desc {
  grid-column: 2;
  grid-row: 2;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
============================================ */

/* Tablet */
@media (max-width: 991px) {

  .hwt__section::before {
    height: 65%; /* Adjusted for stacked vertical layout */
  }

  .hwt__title {
    font-size: 36px;
  }

  .hwt__grid {
    grid-template-columns: 1fr;
  }

  .hwt__card--claims {
    background-position: right bottom;
    background-size: 35% auto;
  }

  .hwt__claims-content {
    padding: 32px 32px 24px;
    width: 100%;
  }

  .hwt__badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .hwt__badge {
    border-right: 1px solid #ECEFF2;
    padding-right: 16px;
  }

  .hwt__badge:nth-child(2n) {
    border-right: none;
    padding-right: 0;
  }
}

/* Small tablet / large mobile */
@media (max-width: 767px) {
  .hwt__section::before {
    height: 55%;
  }

  .hwt__row-two {
    grid-template-columns: 1fr;
  }

  .hwt__cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .hwt__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hwt__section {
    padding: 50px 0 40px;
  }

  .hwt__section::before {
    height: 50%;
  }

  .hwt__eyebrow-line {
    width: 24px;
  }

  .hwt__title {
    font-size: 28px;
  }

  .hwt__subtitle {
    font-size: 15px;
  }

  .hwt__card {
    padding: 28px 24px;
  }


  .hwt__cta-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hwt__badges {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hwt__badge {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #ECEFF2;
    padding-bottom: 20px;
  }

  .hwt__badge:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}











/* ===== WORDPRESS LAYOUT OVERRIDES (SAFE & NON-DESTRUCTIVE) ===== */
body.page-template-page-homepage .sidebar,
body.page-template-page-homepage-php .sidebar,
body.page-template-page-homepage .sidebar_wrap,
body.page-template-page-homepage-php .sidebar_wrap,
body.page-template-page-homepage .top_panel_title,
body.page-template-page-homepage-php .top_panel_title,
aside.sidebar,
.sidebar_wrap {
  display: none !important;
}

body.page-template-page-homepage .page_content_wrap,
body.page-template-page-homepage-php .page_content_wrap {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.page-template-page-homepage .page_content_wrap .content_wrap,
body.page-template-page-homepage-php .page_content_wrap .content_wrap,
body.page-template-page-homepage .page_content_wrap .content,
body.page-template-page-homepage-php .page_content_wrap .content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* =====================================================
   THEME STYLES - INTEGRATED FROM USER HTML
===================================================== */
.fd-homepage-wrapper,
.fd-homepage-wrapper * {
    font-family: "Montserrat", sans-serif !important;
    box-sizing: border-box;
}

.fd-homepage-wrapper {
    color: #071a35;
    background: #ffffff;
}

.fd-homepage-wrapper a {
    color: inherit;
    text-decoration: none;
}

.fd-homepage-wrapper button,
.fd-homepage-wrapper input,
.fd-homepage-wrapper select {
    font-family: inherit;
}

.fd-homepage-wrapper button {
    cursor: pointer;
}

/* .fd-homepage-wrapper .container {
    width: min(1360px, calc(100% - 80px));
    max-width: none;
    margin: 0 auto;
    padding: 0;
} */

/* =====================================================
   HERO SLIDER (Bootstrap 5 Carousel)
===================================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #031a33;
}

.hero-slide {
    position: relative;
    width: 100%;
    padding: 75px 0 !important; /* Top and bottom padding for spacious layout */
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #03182e 0%,
        rgba(3, 24, 46, 0.98) 35%,
        rgba(3, 24, 46, 0.85) 50%,
        rgba(3, 24, 46, 0.3) 70%,
        rgba(3, 24, 46, 0) 100%
    );
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 5;
}

.hero-content {
    color: #ffffff;
}
/* Staggered text animations for premium entrance */
.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
}
.swiper-slide-active .hero-content > * {
    opacity: 1;
    transform: translateY(0);
}
.swiper-slide-active .hero-content .hero-eyebrow {
    transition-delay: 0.1s;
}
.swiper-slide-active .hero-content .hero-title {
    transition-delay: 0.2s;
}
.swiper-slide-active .hero-content .hero-subtitle {
    transition-delay: 0.3s;
}
.swiper-slide-active .hero-content .hero-blue-line {
    transition-delay: 0.4s;
}
.swiper-slide-active .hero-content .hero-description {
    transition-delay: 0.48s;
}
.swiper-slide-active .hero-content .hero-buttons {
    transition-delay: 0.56s;
}
.hero-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.hero-eyebrow {
    color: #09a8ed !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 13px;
}

.hero-title {
    color: #ffffff !important;
    font-size: 44px;
    line-height: 1;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 9px;
}

.hero-subtitle {
    color: #079ee7 !important;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: capitalize;
}

.hero-blue-line {
    width: 70px;
    height: 4px;
    background: #10a6ec;
    border-radius: 5px;
    display: block;
    margin: 20px 0 22px;
}

.hero-description {
    color: #ffffff !important;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 22px;
}

.hero-primary-btn,
.hero-secondary-btn {
    height: 46px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
}

.hero-primary-btn {
    padding: 0 23px;
    background: #0077ca;
    color: #ffffff;
}

.hero-primary-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    margin-right: 11px;
}

.hero-primary-btn svg circle {
    fill: #0077ca;
}

.hero-secondary-btn {
    padding: 0 25px;
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.hero-primary-btn:hover {
    background: #0089e5 !important;
    color: #ffffff !important;
}

.hero-secondary-btn:hover {
    background: #ffffff !important;
    color: #00264e !important;
}

/* =====================================================
   TRUST BADGE
===================================================== */
.trust-badge {
    position: absolute;
    right: 0;
    bottom: 25px;
    z-index: 8;
    width: 275px;
    background: rgba(0, 39, 80, 0.94);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 15px 19px;
}

.trust-badge svg {
    width: 58px;
    height: 68px;
    flex-shrink: 0;
    fill: none;
    stroke: #ffffff;
    stroke-width: 4;
}

.trust-badge strong {
    font-size: 12px;
    line-height: 1.65;
    font-weight: 600;
}

/* =====================================================
   CAROUSEL INDICATORS
===================================================== */
.hero-slider .carousel-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    z-index: 15;
    border: none;
}

.hero-slider .carousel-indicators [data-bs-target] {
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 1;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-slider .carousel-indicators .active {
    background-color: #008ee0;
}

/* =====================================================
   PROFESSIONAL SECTION
===================================================== */
.professional-section {
    padding: 55px 0 40px;
    background: #ffffff;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 19px;
}

.section-heading-line {
    height: 1px;
    width: 225px;
    background: #b9c1ca;
}

.section-heading h2 {
    color: #082f60;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    margin: 0;
}

/* =====================================================
   SERVICE CARDS
===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.service-card {
    min-height: 178px;
    border: 1px solid #c7ced6;
    border-radius: 5px;
    padding: 16px 14px;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 8px 14px;
    position: relative;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #0077ca;
    box-shadow: 0 12px 30px rgba(0, 48, 96, 0.13);
}

.service-icon {
    width: 56px;
    height: 56px;
    grid-column: 1;
    grid-row: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon.blue {
    background: linear-gradient(145deg, #0068aa, #003b78);
}

.service-icon.green {
    background: linear-gradient(145deg, #62b86a, #438d48);
}

.service-icon.orange {
    background: linear-gradient(145deg, #ff971c, #ff7115);
}

.service-icon.purple {
    background: linear-gradient(145deg, #8c48ca, #6426a3);
}

.service-icon.teal {
    background: linear-gradient(145deg, #12a4c2, #007797);
}

.service-card-content {
    display: contents;
}

.service-card-content h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 12.5px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.service-card-content p {
    grid-column: 1 / span 2;
    grid-row: 2;
    color: #111d31;
    font-size: 13px;
    margin: 0;
    padding-bottom: 16px;
    font-weight: 500;
    line-height: 150%;
}

.card-arrow {
    position: absolute;
    right: 17px;
    bottom: 12px;
    color: #0067ba;
    font-size: 31px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
}

.service-card:hover .card-arrow {
    transform: translateX(5px);
}

/* =====================================================
   INSPECTOR FINDER
===================================================== */
.inspector-finder {
    margin-top: 36px;
    background: linear-gradient(110deg, #002b59, #003e78);
    border-radius: 14px;
    color: #ffffff;
    display: flex;
    padding: 20px 38px;
    gap: 25px;
}

.finder-icon {
    width: 75px;
    height: 75px;
    flex: 0 0 75px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.finder-icon svg {
    width: 47px;
    height: 47px;
    fill: #ffffff;
}

.finder-icon svg circle {
    fill: #174b7b;
}

.finder-content {
    flex: 1;
}

.finder-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color:#fff;
}

.finder-description {
    font-size: 15px;
    margin-bottom: 14px;
}

/* GEO my WP locator container */
.finder-fields-wrapper {
  width: 100%;
}
.finder-fields-wrapper .gmw-form-wrapper.horizontal-gray.gmw-pt-horizontal-gray-form-wrapper.pt {
    background-color: inherit !important;
    border: none;
}
.finder-fields-wrapper form {
  display: grid !important;
  grid-template-columns: 1.8fr 1.3fr 1fr 0.7fr !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.finder-fields-wrapper form .gmw-form-field-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}

/* Explicit columns mapping for fields and safety from hidden elements */
.finder-fields-wrapper form .gmw-address-field-wrapper {
  grid-column: 1 !important;
  position: relative !important;
}

.finder-fields-wrapper form .gmw-search-form-taxonomies,
.finder-fields-wrapper form .gmw-taxonomy-field-wrapper {
  grid-column: 2 !important;
}

.finder-fields-wrapper form .gmw-distance-field-wrapper {
  grid-column: 3 !important;
}

.finder-fields-wrapper form .gmw-submit-field-wrapper {
  grid-column: 4 !important;
}

.finder-fields-wrapper form input[type="text"],
.finder-fields-wrapper form select,
.finder-fields-wrapper form input[type="submit"],
.finder-fields-wrapper form button {
  width: 100% !important;
  height: 44px !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* Hide labels */
.finder-fields-wrapper form label,
.finder-fields-wrapper form .gmw-field-label {
  display: none !important;
}

/* Input Specifics */
.finder-fields-wrapper form input[type="text"] {
  padding: 0 40px 0 17px !important;
  outline: none !important;
  background-color: #ffffff !important;
  color: #071a35 !important;
}

.finder-fields-wrapper form input[type="text"]::placeholder {
  color: #9098a3 !important;
}

/* Select Specifics */
.finder-fields-wrapper form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-color: #ffffff !important;
  color: #18304f !important;
  padding: 0 45px 0 17px !important;
  outline: none !important;
  cursor: pointer !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23002b59' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 17px center !important;
  background-size: 10px 10px !important;
}

/* Search Button Specifics */
.finder-fields-wrapper form input[type="submit"] {
  background: #0077c9 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  padding: 0px 32px !important;
  text-align: center !important;
}

.finder-fields-wrapper form input[type="submit"]:hover {
  background: #008ce9 !important;
}

/* GMW Locate me icon adjustment */
.finder-fields-wrapper form .gmw-locator-button, .finder-fields-wrapper form .gmw-locate-me {
    position: absolute !important;
    right: 15px !important;
    top: 46% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 4;
}
.finder-fields-wrapper  .gmw-search-form-taxonomies.gmw-search-form-multiple-fields-wrapper {
    margin: 0px 0px 0px 0px !important;
}
.finder-note {
    text-align: center;
    font-size: 14px;
    margin-top: 13px;
}

.finder-note a {
    color: #00a6e9;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1250px) {
    /* .fd-homepage-wrapper .container {
        width: calc(100% - 40px);
    } */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-slide {
        padding: 70px 0 !important;
        min-height: 500px;
    }
    .hero-image {
        width: 100%;
        opacity: 0.95;
    }
    .hero-overlay {
        background:
            linear-gradient(
                -90deg,
                rgba(3, 24, 46, 0.75),
                rgba(3, 24, 46, 0.98)
            );
    }
    .hero-content {
        max-width: 550px;
        width: 100%;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 31px;
    }
    .trust-badge {
        width: 235px;
        height: 90px;
        bottom: 15px;
    }
    .hero-slider .carousel-indicators {
        display: none;
    }
    .section-heading-line {
        display: none;
    }
    .section-heading h2 {
        white-space: normal;
        text-align: center;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .inspector-finder {
        display: block;
        padding: 25px;
    }
    .finder-icon {
        margin-bottom: 18px;
    }
    .finder-fields-wrapper form {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 560px) {
    .fd-homepage-wrapper .container {
        width: calc(100% - 28px);
    }
    .hero-slide {
        padding: 55px 0 !important;
        min-height: 75vh;
    }
    .hero-content-wrapper {
        padding-top: 40px;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-description {
        font-size: 15px;
    }
    .hero-description br {
        display: none;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }
    /* .hero-primary-btn,
    .hero-secondary-btn {
        width: 285px;
    } */

    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: 170px;
    }
    .finder-fields-wrapper form {
        grid-template-columns: 1fr !important;
    }
    .finder-content h2 {
        font-size: 18px;
        line-height: 1.4;
    }
    .finder-note {
        line-height: 1.7;
    }
}



 .fc{
    background:#dfd9ff4a;
    padding: 50px 0 50px;
  }
 
  .fc__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
      color: #0967bd;
    margin-bottom:16px;
  }
  .fc__eyebrow::before,
  .fc__eyebrow::after{
    content:"";
    width:22px;
    height:1px;
    background: #0878d1;
  }
 
  .fc__title{
    font-weight:600;
    font-size: 38px;
    color:#0E2038;
    margin-bottom:16px;
    text-transform: capitalize;
  }
 
  .fc__lede{
    font-size:16px;
    line-height:1.6;
  }
 
  .fc__card{
    background:#fff;
    border-radius: 16px;
    border: 1px solid #ECE7DA;
    overflow:hidden;
    height:100%;
    display:flex;
    flex-direction:column;
    box-shadow: 0 1px 2px rgba(10,20,40,.05);
    transition: transform .35s ease, box-shadow .35s ease;
  }
  .fc__card:hover{
    transform: translateY(-6px);
    box-shadow: 0 24px 40px -22px rgba(10,20,40,.28);
  }
 
  .fc__photo{
    position:relative;
    height:220px;
    background-size: cover;
    background-position: center;
  }
  .fc__photo::after{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(10,20,40,0) 40%, rgba(10,20,40,.75) 100%);
  }
 
  .fc__icon{
    position:absolute;
    top:16px; left:16px;
    width:48px; height:48px;
    border-radius:30px;
    display:flex; align-items:center; justify-content:center;
    z-index:2;
    background: linear-gradient(135deg, #5B8CFF, #2043B0);
    box-shadow: 0 12px 22px -10px rgba(37, 99, 235, .6);
  }
  .fc__icon svg{
    width:24px; height:24px;
    fill:none;
    stroke:#fff;
    stroke-width:1.6;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  .fc__icon i{
    font-size:24px !important;
    color:#fff !important;
    line-height:1 !important;
    display:block !important;
  }
 
  .fc__caption{
    position:absolute;
    left:0; right:0; bottom:0;
    padding: 16px;
    z-index:2;
  }
  .fc__caption h3{
    font-family:'Fraunces', serif;
    font-weight:600;
    font-size:19px;
    color:#fff;
    margin:0;
  }
 
  .fc__body{
    padding: 18px 20px 20px;
    display:flex;
    flex-direction:column;
    flex:1;
  }
  .fc__desc{
    font-size:14px;
    line-height:1.6;
    margin-bottom:16px;
  }
 
  .fc__btn{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:6px;
    align-self:flex-start;
    font-weight:700;
    font-size:13px;
    text-decoration:none;
    color:#0a497b !important;
    padding-bottom:3px;
    border-bottom: 1.5px solid #E2E6EC;
    transition: color .25s ease, border-color .25s ease, gap .25s ease;
  }
  .fc__btn svg{ width:14px; height:14px; transition: transform .25s ease; }
  .fc__btn:hover svg{ transform: translateX(2px); }




  .tst{
    font-family:'Inter', sans-serif;
    background:#F5F7FA;
    padding:100px 0 110px;
    overflow:hidden;
    position:relative;
  }
  .tst::before{
    content:"";
    position:absolute;
    top:-260px; left:50%;
    transform:translateX(-50%);
    width:900px; height:520px;
    background: radial-gradient(circle, rgba(29,111,216,.10) 0%, rgba(29,111,216,0) 70%);
    pointer-events:none;
  }
 
  .tst__head{
    position:relative;
    z-index:2;
  }
 
  .tst__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#1D6FD8;
    margin-bottom:16px;
  }
  .tst__eyebrow::before,
  .tst__eyebrow::after{
    content:"";
    width:22px;
    height:1px;
    background:#1D6FD8;
  }
 
  .tst__title{
    font-family:'Fraunces', serif;
    font-weight:600;
    font-size: clamp(30px, 4vw, 46px);
    color:#0A2540;
    margin-bottom:14px;
    letter-spacing:-.01em;
  }
 
  .tst__lede{
    max-width:560px;
    font-size:15.5px;
    line-height:1.7;
    color:#5C6B7E;
  }
 
  .tst__rating{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:22px;
  }
  .tst__rating-stars{ display:flex; gap:2px; }
  .tst__rating-stars svg{ width:16px; height:16px; fill:#F5A623; }
  .tst__rating-num{ font-weight:800; font-size:14px; color:#0A2540; }
  .tst__rating-count{ font-size:13px; color:#5C6B7E; }
 
  /* ---- Slider shell ---- */
  .tst__wrap{
    position:relative;
    max-width:1200px;
    margin:0 auto;
    z-index:2;
  }
 
  .tst__viewport{ overflow:hidden; }
 
  .tst__track{
    display:flex;
    align-items:stretch;
    transition: transform .55s cubic-bezier(.22,1,.36,1);
  }
 
  .tst__slide{
    flex:0 0 33.3333%;
    max-width:33.3333%;
    padding:10px 14px;
    display:flex;
  }
 
  /* ---- Card ---- */
  .tst__card{
    position:relative;
    background:#fff;
    border-radius:20px;
    padding:34px 30px 28px;
    display:flex;
    flex-direction:column;
    width:100%;
    box-shadow:0 2px 6px rgba(10,37,64,.06);
    transition: box-shadow .4s cubic-bezier(.22,1,.36,1), transform .4s cubic-bezier(.22,1,.36,1);
  }
  .tst__card:hover{
    box-shadow:0 32px 60px -28px rgba(10,37,64,.28);
    transform:translateY(-6px);
  }
 
  .tst__quote-mark{
    position:absolute;
    top:22px; right:26px;
    font-family:'Fraunces', serif;
    font-size:68px;
    line-height:1;
    color:#0A2540;
    opacity:.06;
    pointer-events:none;
  }
 
  .tst__stars{
    display:flex;
    gap:3px;
    margin-bottom:16px;
    position:relative;
  }
  .tst__stars svg{ width:15px; height:15px; fill:#F5A623; }
  .tst__stars svg.tst__star-empty{ fill:#E7EBF1; }
 
  .tst__text{
    font-size:14.5px;
    line-height:1.75;
    color:#2A3646;
    margin-bottom:4px;
    position:relative;
    display:-webkit-box;
    -webkit-line-clamp:6;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .tst__text.tst__text--expanded{
    display:block;
    -webkit-line-clamp:unset;
    overflow:visible;
  }
 
  .tst__toggle{
    align-self:flex-start;
    background:none;
    border:none;
    padding:0 0 20px;
    font-size:12.5px;
    font-weight:700;
    color:#1D6FD8;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:4px;
  }
  .tst__toggle svg{ width:11px; height:11px; transition: transform .25s ease; }
  .tst__toggle.is-open svg{ transform:rotate(180deg); }
  .tst__toggle:hover{ color:#0A2540; }
 
  .tst__person{
    margin-top:auto;
    display:flex;
    align-items:center;
    gap:13px;
    padding-top:20px;
    border-top:1px solid #EEF1F5;
  }
 
  .tst__avatar-wrap{
    position:relative;
    flex-shrink:0;
  }
  .tst__avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
    display:block;
  }
  .tst__verified{
    position:absolute;
    bottom:-2px; right:-2px;
    width:18px; height:18px;
    border-radius:50%;
    background:#1D6FD8;
    border:2px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .tst__verified svg{ width:9px; height:9px; stroke:#fff; fill:none; stroke-width:3; stroke-linecap:round; stroke-linejoin:round; }
 
  .tst__name{
    font-weight:700;
    font-size:13.5px;
    color:#0A2540;
    margin:0;
  }
  .tst__role{
    font-size:11.5px;
    color:#5C6B7E;
    margin:0;
  }
 
  /* ---- Controls ---- */
  .tst__nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    margin-top:40px;
    position:relative;
    z-index:2;
  }
 
  .tst__arrow{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#fff;
    border:1px solid #E7EBF1;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 10px 24px -14px rgba(10,37,64,.3);
    transition: background .25s ease, transform .2s ease, border-color .25s ease;
    flex-shrink:0;
  }
  .tst__arrow:hover{
    background:#0A2540;
    border-color:#0A2540;
    transform:scale(1.06);
  }
  .tst__arrow:active{ transform:scale(.96); }
  .tst__arrow:hover svg{ stroke:#fff; }
  .tst__arrow svg{
    width:18px; height:18px;
    stroke:#0A2540;
    fill:none;
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-linejoin:round;
    transition: stroke .25s ease;
  }
 
  .tst__progress{
    width:160px;
    height:3px;
    background:#E7EBF1;
    border-radius:99px;
    overflow:hidden;
  }
  .tst__progress-bar{
    height:100%;
    background: linear-gradient(90deg,#1D6FD8,#0A2540);
    border-radius:99px;
    transition: width .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1);
    transform-origin:left;
  }
 
  @media (max-width: 991px){
    .tst__slide{ flex:0 0 50%; max-width:50%; }
  }
  @media (max-width: 640px){
    .tst__slide{ flex:0 0 100%; max-width:100%; padding:10px 6px; }
    .tst{ padding:76px 0 84px; }
    .tst__card{ padding:28px 24px 24px; }
    .tst__nav{ gap:16px; margin-top:32px; }
    .tst__progress{ width:110px; }
    .tst__arrow{ width:44px; height:44px; }
  }



.testimonials-section{
  background: #03182e !important; /* Dark Navy brand background */
  background: #0a497b !important;
  padding:50px 0 50px;
  position:relative;
}
 
/* ---------- header ---------- */
.t-head{ max-width:100%; margin:0 auto 30px; text-align:center; }
 
.t-eyebrow{
  font-weight:700;
  font-size:12px;
  letter-spacing:.15em;
  text-transform:uppercase;
    color: #dbdbdb !important;
  margin-bottom:12px;
  display:inline-flex;
  align-items:center;
  gap:12px;
}
.t-eyebrow::before,
.t-eyebrow::after{ content:""; width:30px; height:2px; background:#00a6e9; opacity:.6; }
 
.t-title {
    font-weight: 700;
    font-size: 36px;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: #FFFFFF !important;
    margin: 0 0 10px;
    text-transform: capitalize;
}
.t-title em{ font-style:italic; font-weight:600; color:#00a6e9 !important; }
 
.t-lede{
  font-size:16px;
  line-height:1.8;
  color:#f5f5f5;
  margin:0 0 20px;
}
 
.t-rating{ 
  display:inline-flex; 
  align-items:center; 
  gap:14px; 
  padding:10px 24px; 
  background:rgba(255, 255, 255, 0.05) !important; 
  border:1px solid rgba(255, 255, 255, 0.1) !important; 
  border-radius:99px; 
  box-shadow:0 4px 12px rgba(0, 0, 0, 0.15); 
}
.t-rating-stars{ display:flex; gap:4px; }
.t-rating-stars i{ color:#ffb300 !important; font-size:16px; }
.t-rating-num{ font-weight:800; font-size:15px; color:#FFFFFF; }
.t-rating-count{ font-size:13px; color:#d5d5d5; font-weight: 500; }
 
/* ---------- swiper shell ---------- */
#testimonialCarousel { max-width:1200px; margin:0 auto; overflow: hidden; }

 
/* ---------- responsive row ---------- */
@media (max-width:991px){
  #testimonialCarousel .row{
    flex-wrap:nowrap;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    -ms-overflow-style:none;
    scrollbar-width:none;
    margin:0 -4px;
    padding-bottom:4px;
  }
  #testimonialCarousel .row::-webkit-scrollbar{ display:none; }
  #testimonialCarousel .row > [class^="col"]{
    flex:0 0 62%;
    max-width:62%;
    scroll-snap-align:start;
    padding:0 8px;
  }
}
@media (max-width:576px){
  #testimonialCarousel .row > [class^="col"]{
    flex:0 0 88%;
    max-width:88%;
  }
}
 
/* ---------- swiper active slide height alignment ---------- */
.testimonials-swiper .swiper-slide {
    height: auto !important;
    display: flex !important;
}
.testimonials-swiper .swiper-slide .t-card {
    width: 100% !important;
}

/* ---------- card – premium treatment ---------- */
.t-card{
  position:relative;
  background:#0f2b48 !important; /* Lighter, more defined dark navy card base – NO white fill! */
  border-radius:20px;
  padding:44px 36px 32px;
  height:100%;
  display:flex;
  flex-direction:column;
  border: 1px solid rgba(255, 255, 255, 0.16) !important; /* Brighter border */
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 166, 233, 0.05) !important;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s cubic-bezier(.16, 1, .3, 1), border-color .4s ease;
}
.t-card:hover{
  border-color: rgba(0, 166, 233, 0.5) !important; /* Glow border on hover */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 166, 233, 0.15) !important;
}
 
.t-quote-glyph {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 90px;
    font-weight: 600;
    line-height: 1;
    color: #04b7ff !important;
    opacity: .40;
    pointer-events: none;
    font-family: none !important;
}
 
.t-stars{ display:flex; gap:4px; margin-bottom:22px; position:relative; }
.t-rating-stars i,
.t-stars i {
  color: #ffb300 !important;
  font-size: 16px !important;
  display: inline-block !important;
  margin-right: 2px !important;
}
.t-stars i.is-empty {
  color: rgba(255, 255, 255, 0.2) !important;
}
 
.t-text{
  font-size:14px;
  line-height:1.6;
  color:#f5f5f5 !important;
  margin:0 0 18px;
  font-weight: 400;
  position:relative;
}
.t-text.truncated {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-text.truncated.is-open {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
 
/* Robust resets with body wrapper specificity to defeat parent theme button styles */
body .fd-homepage-wrapper .t-more,
body .fd-homepage-wrapper button.t-more {
  align-self: flex-start !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  color: #00a6e9 !important;
  padding: 0 0 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: color 0.2s ease !important;
  box-shadow: none !important;
  min-width: unset !important;
  max-width: unset !important;
}
body .fd-homepage-wrapper .t-more i,
body .fd-homepage-wrapper button.t-more i {
  font-size: 10px !important;
  color: #00a6e9 !important;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1) !important;
  display: inline-block !important;
  margin-left: 4px !important;
  vertical-align: middle !important;
  line-height: 1 !important;
}
body .fd-homepage-wrapper .t-more:hover,
body .fd-homepage-wrapper button.t-more:hover,
body .fd-homepage-wrapper .t-more:focus,
body .fd-homepage-wrapper button.t-more:focus {
  color: #FFFFFF !important;
  background: transparent !important;
  background-color: transparent !important;
}
body .fd-homepage-wrapper .t-more:hover i,
body .fd-homepage-wrapper button.t-more:hover i {
  color: #FFFFFF !important;
  transform: translateY(2px) !important;
}
body .fd-homepage-wrapper .t-more.is-open i,
body .fd-homepage-wrapper button.t-more.is-open i {
  transform: rotate(180deg) !important;
}
body .fd-homepage-wrapper .t-more.is-open:hover i,
body .fd-homepage-wrapper button.t-more.is-open:hover i {
  transform: rotate(180deg) translateY(-2px) !important;
}
 
.t-person {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgb(255 179 0 / 55%);
}
.t-avatar-wrap{ 
  position:relative; 
  flex-shrink:0; 
  padding:3px; 
  border-radius:50%; 
  background:linear-gradient(135deg, #0077ca, #00a6e9, #0077ca);
}
.t-avatar{ width:50px; height:50px; border-radius:50%; object-fit:cover; display:block; border:2.5px solid #071d37; }
.t-verified{
  position:absolute; bottom:-2px; right:-2px;
  width:20px; height:20px; border-radius:50%;
  background:#00a6e9;
  border:2px solid #071d37;
  display:flex; align-items:center; justify-content:center;
}
.t-verified svg{ width:10px; height:10px; stroke:#FFFFFF; fill:none; stroke-width:3.5; stroke-linecap:round; stroke-linejoin:round; }
 
.t-name{ font-weight:700; font-size:15px; color:#FFFFFF !important; margin:0; }
.t-role{ font-size:11px; font-weight: 600; letter-spacing:.05em; color:#94A3B8; margin:4px 0 0; text-transform:uppercase; }
 
/* ---------- controls ---------- */
.t-nav{ display:flex; align-items:center; justify-content:center; gap:24px; margin-top:28px; }
.t-arrow{
  width:40px !important;
  height:40px !important;
  min-width:40px !important;
  max-width:40px !important;
  min-height:40px !important;
  max-height:40px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: transparent !important; /* Transparent arrows — NO white fill! */
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: background .3s ease, border-color .3s ease, transform .2s ease, box-shadow .3s ease !important;
  line-height: 1 !important;
}
.t-arrow:hover{ 
  background:#00a6e9 !important; 
  border-color:#00a6e9 !important; 
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 166, 233, 0.25) !important;
}
.t-arrow:hover i {
  color: #FFFFFF !important;
}
.t-arrow:active{ transform:scale(.94) translateY(0); }
.t-arrow i {
  font-size: 18px !important;
  color: #FFFFFF !important;
  transition: color .3s ease !important;
  line-height: 1 !important;
  display: block !important;
}
 
.t-dots{ display:flex !important; align-items:center !important; gap:4px !important; position: static !important; width: auto !important; }
.t-dot{
  width: 8px !important;
  height: 8px !important;
  min-width: 8px !important;
  max-width: 8px !important;
  padding: 0 !important;
  margin: 0 5px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: width .3s cubic-bezier(.16, 1, .3, 1), background .3s ease, border-radius .3s ease !important;
}
.t-dot.active{ 
  width: 26px !important; 
  max-width: 26px !important;
  border-radius: 6px !important; 
  background: #00a6e9 !important; 
}
 
@media (max-width:767px){
  .t-card{ margin-bottom:6px; padding: 32px 24px 24px; }
}

/* =====================================================
   TRUSTED LOGO SLIDER (Continuous Premium Marquee)
===================================================== */
.partner-logos-section {
    background: #ffffff !important; /* Clean white background to blend logo bounding boxes */
    padding: 50px 0 !important;
    border-top: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
}

.partner-title {
    text-align: center;
    color: #0967bd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

/* Fading edge overlays container */
.partner-logos-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partner-logos-marquee-wrapper::before,
.partner-logos-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.partner-logos-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partner-logos-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partner-logos-swiper .swiper-wrapper {
    transition-timing-function: linear !important; /* SILKY SMOOTH CONTINUOUS MOVEMENT */
}

/* Individual Logo styling */
.partner-logo-item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 60px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo-item img,
.partner-logo-item svg {
    height: auto !important;
    max-height: 48px !important; /* Increased height constraint for better visibility! */
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
    filter: none !important; /* Show original brand colors by default! */
    opacity: 0.85 !important; /* High default visibility */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.partner-logo-item:hover img,
.partner-logo-item:hover svg {
    opacity: 1 !important; /* Full hover intensity */
    transform: scale(1.08) !important; /* Micro-pop-out animation */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .partner-logos-section {
        padding: 40px 0 !important;
    }
    .partner-logos-marquee-wrapper::before,
    .partner-logos-marquee-wrapper::after {
        width: 80px;
    }
    .partner-logo-item {
        height: 45px;
    }
    .partner-logo-item img,
    .partner-logo-item svg {
        max-height: 35px !important;
        max-width: 120px !important;
    }
}

/* =====================================================
   PLATFORM STATS SECTION — Premium Dashboard
===================================================== */
@keyframes statPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,166,233,0.3); }
    50% { box-shadow: 0 0 0 12px rgba(0,166,233,0); }
}

@keyframes statFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 15px) scale(0.9); }
}

.platform-stats-section {
    background: linear-gradient(160deg, #040e1a 0%, #081c33 40%, #0a2040 70%, #06162b 100%) !important;
    padding: 50px 0 !important;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern overlay */
.platform-stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Floating ambient orbs */
.platform-stats-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0,166,233,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -80px;
    right: -60px;
    animation: orbFloat1 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.stats-orb-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(56,189,248,0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -30px;
    animation: orbFloat2 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255,255,255,0.025) !important;
    border: 1px solid rgba(255,255,255,21%) !important;
    border-radius: 20px !important;
    padding: 40px 24px 35px !important;
    text-align: center;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3) !important;
    position: relative;
    overflow: hidden;
}

/* Subtle top-edge glow accent */
.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(0,166,233,0.4), transparent);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(0,166,233,0.2) !important;
    background: rgba(255,255,255,0.04) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(0,166,233,0.06) !important;
}

.stat-card:hover::before {
    left: 10%;
    right: 10%;
    background: linear-gradient(to right, transparent, rgba(0,166,233,0.6), transparent);
}

/* Glowing ring icon wrapper */
.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(0,166,233,0.06) !important;
    border: 2px solid rgba(0,166,233,0.15) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    border-color: rgba(0,166,233,0.5) !important;
    background: rgba(0,166,233,0.1) !important;
    animation: statPulse 2s ease-in-out infinite;
}

.stat-icon i {
    font-size: 26px !important;
    color: #00a6e9 !important;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon i {
    color: #38bdf8 !important;
    transform: scale(1.1);
}

/* Gradient animated number */
.stat-number {
    font-size: 38px !important;
    font-weight: 500 !important;
    margin: 0 0 10px 0;
    letter-spacing: -1.5px;
    line-height: 1;
    display: inline-block !important;
    background: linear-gradient(135deg, #ffffff 30%, #38bdf8 70%, #00a6e9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.stat-label {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #ebebeb !important;
    /* text-transform: uppercase; */
    margin: 0;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .platform-stats-section {
        padding: 50px 0 !important;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stat-number {
        font-size: 40px !important;
    }
    .stat-icon {
        width: 52px;
        height: 52px;
    }
}

/* =====================================================
   WORKFLOW SECTION – "How It Works" Pipeline
===================================================== */
.workflow-section {
    background: #f8fafc !important;
    padding: 50px 0 !important;
    position: relative;
    overflow: hidden;
}

.workflow-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 40px;
}

.workflow-eyebrow {
    color: #00a6e9 !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.workflow-title {
    color: #071d37 !important;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 14px;
        text-transform: capitalize;
}

.workflow-lede {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.workflow-timeline {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 10px 0;
}

/* Connecting dashed line behind circles */
.workflow-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 9%;
    right: 9%;
    height: 2px;
    background: repeating-linear-gradient(to right, #cbd5e1 0px, #cbd5e1 8px, transparent 8px, transparent 16px);
    z-index: 1;
}

.workflow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 8px;
}

/* Arrow connector between steps (desktop only) */
.workflow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    right: -8px;
    width: 14px;
    height: 14px;
    border-right: 2px solid #0967bd ;
    border-right: 2px solid #c0cad7;
    border-top: 2px solid #0967bd ;
    transform: rotate(45deg);
    z-index: 3;
}

.step-number-wrap {
    width: 56px;
    height: 56px;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 50% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.35s ease !important;
}

.workflow-step:hover .step-number-wrap {
    border-color: #0967bd  !important;
    background: #0967bd  !important;
    box-shadow: 0 6px 20px rgba(0,166,233,0.25);
    transform: scale(1.08);
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #0967bd  !important;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    width: 20px;
    height: 20px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f8fafc !important;
    line-height: 1;
}

.step-number-wrap i {
    font-size: 22px !important;
    color: #0967bd  !important;
    transition: color 0.3s ease;
}

.workflow-step:hover .step-number-wrap i {
    color: #ffffff !important;
}

.step-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #071d37 !important;
    margin: 0 0 6px 0;
    transition: color 0.3s ease;
}

.workflow-step:hover .step-title {
    color: #0967bd  !important;
}

.step-desc {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .workflow-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 0;
    }
    .workflow-timeline::before {
        display: none;
    }
    .workflow-step {
        flex: 0 0 33.33%;
    }
    .workflow-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 600px) {
  .step-desc {
      font-size: 15px !important;
  }
    .workflow-section {
        padding: 50px 0 !important;
    }
    .workflow-timeline {
        gap: 24px 0;
    }
    .workflow-step {
        flex: 0 0 50%;
    }
}

/* =====================================================
   PLATFORM REVEAL TABS SECTION
===================================================== */
.platform-reveal {
    background: linear-gradient(160deg, #040e1a 0%, #081c33 40%, #000000 70%, #06162b 100%) !important;
    padding: 60px 0 !important;
    position: relative;
    overflow: hidden;
}

.platform-reveal::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.pr-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.pr-eyebrow {
    color: #00a6e9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pr-title {
    color: #ffffff !important;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 14px;
    text-transform: capitalize;
}

.pr-lede {
    color: #f7f7f7 !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Tab Navigation */
.pr-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.pr-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pr-tab-btn i {
    font-size: 16px;
    transition: color 0.3s ease;
}

.pr-tab-btn:hover,
.pr-tab-btn.active {
    background: rgba(0,166,233,0.1);
    border-color: rgba(0,166,233,0.3);
    color: #ffffff;
}

.pr-tab-btn.active {
    background: rgba(0,166,233,0.15);
    border-color: #00a6e9;
    box-shadow: 0 0 20px rgba(0,166,233,0.1);
}

.pr-tab-btn.active i {
    color: #00a6e9;
}

/* Tab Content Area */
.pr-tabs-content {
    position: relative;
    z-index: 2;
    min-height: 340px;
}

.pr-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.pr-tab-panel.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.pr-panel-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}

/* Left side: text content */
/* 3D tilt perspective styling */
.platform-reveal {
    background: linear-gradient(160deg, #040e1a 0%, #081c33 40%, #000000 70%, #06162b 100%) !important;
    padding: 60px 0 !important;
    position: relative;
    overflow: hidden;
    perspective: 1600px; /* Enable 3D space */
}

.pr-panel-preview-full {
    width: 100%;
    background: rgba(255,255,255,0.02) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
    padding: 16px 20px 20px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5) !important;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0); /* High-quality GPU layer rendering */
    will-change: transform;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.pr-panel-preview-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0,166,233,0.5), transparent);
}

/* Shine/Light glare overlay */
.pr-shine {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pr-panel-preview-full:hover {
    border-color: rgba(0,166,233,0.2) !important;
    box-shadow: 0 60px 100px rgba(0,0,0,0.6), 0 0 40px rgba(0,166,233,0.1) !important;
}

.pr-panel-preview-full:hover .pr-shine {
    opacity: 1;
}

.pr-mock-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transform: translateZ(20px); /* 3D layer lift */
}

.pr-mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pr-mock-dot:nth-child(1) { background: #ef4444; }
.pr-mock-dot:nth-child(2) { background: #f59e0b; }
.pr-mock-dot:nth-child(3) { background: #22c55e; }

.pr-mock-bar {
    max-width: 150px;
    flex: 1;
    height: 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 5px;
    margin-left: 10px;
}

.pr-zoom-container {
    width: 100%;
    height: auto; /* Fluid height - shows entire image */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #0b1329;
    cursor: default;
    transform: translateZ(10px); /* 3D layer lift */
}

.pr-zoom-image {
    width: 100%;
    height: auto; /* Fluid height - shows entire image */
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0); /* Force clear rasterization */
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Premium zoom of image inside the container on card hover */
.pr-panel-preview-full:hover .pr-zoom-image {
    transform: scale(1.02) translate3d(0, 0, 0) !important;
}

@media (max-width: 991px) {
    .pr-zoom-container {
        height: auto;
    }
}

@media (max-width: 600px) {
    .platform-reveal {
        padding: 50px 0 !important;
    }
    .pr-tabs-nav {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }
    .pr-tab-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    .pr-panel-title {
        font-size: 20px;
    }
}

/* -------------------------------------------------------
   HOMEPAGE CTA SECTION
   ------------------------------------------------------- */
.cta-section-home-page {
  /* background-color: #3b82f6;  */
  padding: 50px 0;
}

.cta-home-inner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 40px;
  padding: 40px;
  overflow: hidden;
  /* The "cut" at the bottom right - diagonally cutting the corner */
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 92% 100%, 0% 100%);
  background-color: #000;
  display: flex;
  align-items: center;
}

/* Subtle overlay to ensure text readability if bg image is light */
.cta-home-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.cta-home-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.cta-home-title {
    color: #fff !important;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: capitalize;
}

.cta-home-subtitle {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.cta-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 35px;
  border: 1px solid #fff ;
  border-radius: 50px;
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.cta-home-btn:hover {
  background: linear-gradient(135deg, var(--accent-color, #0077ca), #0a497b) !important;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-home-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-home-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .cta-home-title {
    font-size: 34px;
  }

  .cta-home-subtitle {
    font-size: 17px;
  }

  .cta-home-inner {
    padding: 50px 40px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 85% 100%, 0% 100%);
    min-height: auto;
  }
}


@media (max-width: 767px) {
  .cta-section-home-page {
    padding: 50px 0;
  }

  .cta-home-inner {
    padding: 40px 25px;
    clip-path: none;
    border-radius: 20px;
  }

  .cta-home-title {
    font-size: 28px;
  }

  .cta-home-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .fc__title, .pr-title {
    font-size: 28px !important;
  }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE – ALL SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
.hero-title {
    font-size: 40px;
}
.hero-subtitle {
    font-size: 30px;
}
.trust-badge svg {
    width: 50px;
    height: 60px;
}
.hwt__title,.fc__title,.workflow-title,.pr-title,.t-title {
    font-size: 34px;
}
.stat-number {
    font-size: 34px !important;
}
.stat-icon {
    width: 56px;
    height: 56px;
}
.t-role {
    font-size: 10px;
}
.t-card {
    padding: 40px 24px 32px;
}
.cta-home-title {
    font-size: 30px;
}
.t-arrow {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    min-height: 34px !important;
    max-height: 36px !important;
}
.t-nav {
    gap: 16px;
}
.t-dots {
    gap: 0px !important;
}
.cta-home-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 26px;
}
}
/* ---------- TABLET (max-width: 991px) ---------- */
@media (max-width: 991px) {

  /* Professional Services heading */
  .section-heading h2 {
    font-size: 20px;
  }

  /* Features section */
  .fc__title {
    font-size: 32px;
  }

  /* Testimonials (dark section) */
  .t-title {
    font-size: 30px;
  }
  .t-lede {
    font-size: 15px;
  }
  .t-card {
    padding: 36px 28px 28px;
  }

  /* Workflow */
  .workflow-title {
    font-size: 28px;
  }
  .workflow-lede {
    font-size: 16px;
  }

  /* Platform Reveal */
  .pr-title {
    font-size: 30px;
  }

      .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 26px;
    }
    .hero-description {
    font-size: 16px;
    line-height: 1.5;
}
.service-card-content h3 {
    font-size: 13.5px;
}
.finder-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
}
.finder-icon svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}
.finder-content h2 {
    font-size: 20px;
}
    .hwt__title, .fc__title, .workflow-title, .pr-title, .t-title {
        font-size: 32px;
    }
    .hwt__eyebrow {
    margin-bottom: 10px;
}
.hwt__subtitle {
    font-size: 16px;
    line-height: 1.5;
}
}

/* ---------- SMALL TABLET (max-width: 767px) ---------- */
@media (max-width: 767px) {

  /* Professional Services heading + grid */
  .section-heading {
    gap: 0;
  }
  .section-heading h2 {
    font-size: 18px;
    line-height: 1.35;
  }
  .professional-section {
    padding: 40px 0;
  }

  /* Features section */
  .fc {
    padding: 40px 0;
  }
  .fc__title {
    font-size: 26px;
  }
  .fc__photo {
    height: 210px;
  }
  .fc__caption h3 {
    font-size: 18px;
  }
  .fc__desc {
    font-size: 16px;
  }

  /* Testimonials dark section */
  .testimonials-section {
    padding: 40px 0;
  }
  .t-title {
    font-size: 26px;
  }
  .t-lede {
    font-size: 14px;
    margin: 0 0 16px;
  }
  .t-rating {
    padding: 8px 18px;
  }
  .t-card {
    padding: 28px 22px 22px;
  }
  .t-text {
    font-size: 16px;
  }
  .t-quote-glyph {
    font-size: 60px;
    top: 16px;
    right: 18px;
  }
  .t-name {
    font-size: 14.5px;
  }
  .t-avatar {
    width: 42px;
    height: 42px;
  }
  .t-nav {
    gap: 16px;
    margin-top: 22px;
  }
  .t-arrow {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
  }
  .t-arrow i {
    font-size: 14px !important;
  }

  /* Workflow */
  .workflow-title {
    font-size: 24px;
  }
  .workflow-lede {
    font-size: 16px;
  }

  /* Platform Reveal */
  .pr-title {
    font-size: 26px;
  }

  /* CTA */
  .cta-home-title {
    font-size: 24px;
  }

  /* Partner logos */
  .partner-title {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 22px;
        font-weight: 600;
    }
    .hero-eyebrow {
    font-size: 12px;
}
}

/* ---------- MOBILE (max-width: 560px) ---------- */
@media (max-width: 560px) {
.hero-description {
        font-size: 17px;
    }
  /* Professional Services */
  .section-heading h2 {
    font-size: 20px;
    letter-spacing: 0.5px;
  }
  .service-card {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
  }
  .service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
  }
  .service-icon svg {
    width: 24px;
    height: 24px;
  }
  .service-card-content h3 {
    font-size: 16px;
  }
  .service-card-content p,.finder-description,.hwt__badge-desc {
    font-size: 16px;
    line-height: 1.45;
  }
  .hwt__badge-title{
    font-size: 17px;
  }

  /* Inspector Finder */
  .inspector-finder {
    padding: 20px 16px;
    border-radius: 16px;
  }
    .finder-icon svg {
        width: 32px;
        height: 32px;
    }
.hwt__title, .fc__title, .workflow-title, .pr-title, .t-title {
        font-size: 26px;
    }
    .hwt__eyebrow-text {
      font-size: 12px;
  }
  /* Features section */
  .fc__title {
    font-size: 22px;
  }

  /* Testimonials dark */
  .t-title {
    font-size: 26px;
  }
  .t-lede {
    font-size: 16px;
  }
  .t-rating-num {
    font-size: 14px;
  }
  .t-rating-count {
    font-size: 14px;
  }

  /* Workflow */
  .workflow-title {
    font-size: 25px;
  }

  /* Platform Reveal */
  .pr-title {
    font-size: 22px;
  }
.step-title {
    font-size: 16px !important;
}
  /* Stats */
  .stat-number {
    font-size: 31px !important;
  }
  .stat-label {
    font-size: 16px !important;
  }

  /* CTA */
  .cta-home-title {
    font-size:25px;
  }
  .cta-home-subtitle {
    font-size: 16px;
  }
  .cta-home-btn {
    font-size: 14px;
    padding: 10px 28px;
  }
      .trust-badge {
      bottom: unset;
        top: 13px;
    }
    .trust-badge strong {
    font-size: 9px;
    text-transform: capitalize;
}
    .trust-badge svg {
        width: 24px;
        height: 26px;
    }
    .trust-badge {
        width: auto;
        height: auto;
    }
    .trust-badge {
    gap: 8px;
    padding: 10px 14px;
    border-radius: 30px 0px;
}
    .finder-icon {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }
    .finder-content h2 {
        font-size: 20px;
    }
    .hwt__subtitle {
        font-size: 16px;
    }
    .hwt__card-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 18px;
  }
  .hwt__card-label{
    font-size: 12px;
  }
  .hwt__card.hwt__card--inspectors .hwt__card-title {
    font-size: 22px;
}
.hwt__card-desc {
    color: rgba(255, 255, 255, 0.91);
    font-size: 16px !important;
    line-height: 1.55;
    margin: 0 0 24px;
}
.hwt__claims-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
        .hwt__card--claims {
        background-position: right top;
        background-size: 45% auto;
    }
.hwt__card-desc--dark {
    color: #000000;
}
.hwt__card--dark .hwt__card-icon {
    width: 44px;
    height: 44px;
}
.hwt__cta-icon {
    width: 46px;
    height: 46px;
}
.hwt__badge-icon {
    width: 44px;
    height: 44px;
}
    .partner-title {
        font-size: 16px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
        .stat-icon {
        width: 50px;
        height: 50px;
    }
    .stat-icon i {
      font-size: 24px !important;
  }
  .fc__title, .pr-title {
        font-size: 26px !important;
    }
    .fc__eyebrow {
    font-size: 12px;
    margin-bottom: 6px;
}
.fc__icon {
    width: 40px;
    height: 40px;
}
  .fc__icon i {
      font-size: 18px !important;
  }
  .fc__caption h3 {
        font-size: 18px;
    }
  .workflow-section {
        padding: 40px 0 !important;
    }
    .pr-eyebrow {
        font-size: 12px;
        margin-bottom: 6px;
    }
    .pr-header {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    .pr-tabs-nav {
        margin-bottom: 24px;
    }
    .pr-zoom-image {
        height: 280px;
        object-fit: contain;
    }
    .t-eyebrow {
      font-size: 11px;
      margin-bottom: 6px;
    }
    .t-rating-stars {
        gap: 2px;
    }
    .t-rating {
        display: inline-flex;
        gap: 4px;
        padding: 10px 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
  .t-rating-count {
        font-size: 12px;
        color: #f1f1f1;
    }
    .t-nav {
        gap: 4px;
    }
    .t-arrow {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        max-width: 30px !important;
        min-height: 30px !important;
        max-height: 30px !important;
    }
    .cta-section-home-page {
        padding: 40px 0;
    }
    .cta-home-title {
        font-size: 25px;
    }
    .t-avatar {
        width: 38px;
        height: 38px;
        border: 2px solid #071d37;
    }
    .hwt__card--dark .hwt__card-title {
    font-size: 22px;
  }
}
