/* ============================================================
   HOMECHEK - Static Site Stylesheet
   Custom classes prefixed with "hc-"
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* ---------- CSS Variables ---------- */
:root {
  --hc-blue: #05549e;
  --hc-blue-dark: #043d7a;
  --hc-blue-light: #6db3f2;
  --hc-dark: #101828;
  --hc-gray-text: #666666;
  --hc-body-text: #101828;
  --hc-bg-light: #f9f9f7;
  --hc-border: #e5e7eb;
  --hc-footer-bg: #101828;
  --hc-social-bg: #1e2939;
  --hc-dark: #101828;
  --hc-dark-2: #1e2939;
  --hc-dark-3: #364153;
  --hc-text: #0a0a0a;
  --hc-muted: #999;
  --hc-bg-alt: #f9f9f7;
  --hc-border: rgba(0, 0, 0, 0.12);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--hc-body-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

/* ---------- Navbar ---------- */
.hc-navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hc-navbar .navbar-brand img {
  height: 80px;
  width: auto;
}

@media (min-width: 768px) {
  .hc-navbar .navbar-brand img {
    height: 96px;
  }
}

.hc-nav-link {
  color: #fff !important;
  font-size: 1.125rem;
  position: relative;
  transition: color 0.2s ease;
  text-decoration: none;
}

.hc-nav-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.hc-nav-link.active {
  color: #fff !important;
}

.hc-nav-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.hc-nav-toggler .navbar-toggler-icon {
  filter: invert(1);
}

.hc-btn-book {
  padding: 10px 32px;
  border: 2px solid #fff;
  color: #fff !important;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.hc-btn-book:hover {
  background: #fff;
  color: #1a1a1a !important;
}

/* Offcanvas mobile nav */
.hc-offcanvas {
  background-color: var(--hc-dark) !important;
}

.hc-offcanvas .offcanvas-title {
  color: #fff;
}

.hc-offcanvas .btn-close {
  filter: invert(1);
}

.hc-offcanvas .hc-nav-link {
  padding: 12px 0;
  font-size: 1.25rem;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Hero Section ---------- */
.hc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .hc-hero {
    position: relative;
    min-height: auto;height:auto!important;
  }
}

.hc-hero-bg {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .hc-hero-bg {
    min-height: auto;
  }
}
.hc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.hc-hero-content {
  position: relative;
  z-index: 10;
  padding: 160px 1.5rem 4rem;
}

.hc-hero-title {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: #fff;
  line-height: 1;
  font-weight: 600;
  max-width: 700px;
}

.hc-hero-badge {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  overflow-x: auto;
  width: fit-content;
  max-width: 100%;
}

.hc-hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.375rem;
  line-height: 2.375rem;
  max-width: 640px;
}
/* base button rules shared by most variants */
/* shared base for most buttons to eliminate repetition */
.hc-btn-primary,
.hc-btn-outline-white,
.hc-btn-outline-services,
.hc-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 53px;
}

.hc-btn-primary {
  /* extend the base class for primary buttons */
  padding: 12px 32px;
  background-color: var(--hc-blue);
  color: #fff !important;
  border: none;
  font-size: 1.125rem;
}

.hc-btn-primary:hover {
  background-color: var(--hc-blue-dark);
  color: #fff !important;
}
.hc-btn-outline-white {
  border: 2px solid #fff;
  color: #fff !important;
  padding: 12px 32px;
  font-size: 1.125rem;
  background: transparent;
}

.hc-btn-outline-white:hover {
  background: #fff;
  color: #1a1a1a !important;
}

/* ---------- Section Badge (Capsule) ---------- */
.hc-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-blue);
}

.hc-badge-pill .hc-dot {
  color: var(--hc-blue);
  font-size: 1.2rem;
  line-height: 1;
}

/* ---------- Stats Section ---------- */
.hc-stats-section {
  background-color: #fff;
  padding: 60px 1.5rem;
}

@media (min-width: 768px) {
  .hc-stats-section {
    padding:60px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-stats-section {
    padding:60px 5rem;
  }
}

.hc-house-img-wrap {
  position: relative;
}

.hc-house-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.hc-badge-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-badge-overlay img {
  width: 180px;
}

.hc-stats-content {
  padding-top: 80px;
}

.hc-stats-desc {
  font-size: 1.25rem;
  color: #111827;
  line-height: 1.8;
}

.hc-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .hc-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.hc-stat-item {
  padding: 0 16px 0 0;
}

@media (min-width: 992px) {
  .hc-stat-item {
    border-right: 1px solid #d1d5db;
    padding: 0 1rem;
  }

  .hc-stat-item:first-child {
    padding-left: 0;
  }

  .hc-stat-item:last-child {
    border-right: none;
  }
}

.hc-stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
}

.hc-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

/* ---------- Services Section ---------- */
.hc-services-section {
  background-color: var(--hc-blue);
  padding: 80px 1.5rem;
}

@media (min-width: 768px) {
  .hc-services-section {
    padding: 80px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-services-section {
    padding: 80px 5rem;
  }
}

.hc-services-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
}

.hc-service-card {
  background: #fff;
  border-radius: 24px;
  padding: 0x;
  cursor: pointer;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.hc-service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.hc-service-card h3 {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.hc-service-card p {
  color: var(--hc-gray-text);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hc-service-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 309px;
}

.hc-service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hc-service-card:hover .hc-service-img-wrap img {
  transform: scale(1.05);
}

.hc-service-arrow {
  position: absolute;
  bottom: 16px;
  right: 6px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--hc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hc-service-card:hover .hc-service-arrow {
  transform: rotate(-31.7deg);
}
.hc-btn-outline-services {
  gap: 8px;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.125rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.hc-btn-outline-services:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ---------- Fast Report Section ---------- */
.hc-fast-report-section {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.hc-fast-report-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-fast-report-content {
  position: relative;
  z-index: 10;
  padding: 64px 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hc-fast-report-content {
    padding: 64px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-fast-report-content {
    padding: 64px 5rem;
  }
}

.hc-fast-report-inner {
  max-width: 640px;
}

.hc-fast-report-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.75rem;
  color: var(--hc-body-text);
  margin-top: 24px;
  margin-bottom: 24px;
}

.hc-fast-report-title span {
  color: var(--hc-blue);
}

.hc-fast-report-desc {
  font-size: 1rem;
  line-height: 1.875rem;
  color: var(--hc-body-text);
  margin-bottom: 24px;
}

.hc-fast-report-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
  color: var(--hc-body-text);
  margin-bottom: 16px;
}

.hc-fast-report-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.hc-fast-report-list li {
  font-size: 1rem;
  line-height: 1.875rem;
  color: var(--hc-body-text);
  padding: 4px 0;
}

.hc-fast-report-list li::before {
  content: "• ";
}

/* ---------- How We Deliver Section ---------- */
.hc-deliver-section {
  background: #fff;
  padding: 60px 1.5rem;
}

@media (min-width: 768px) {
  .hc-deliver-section {
    padding: 60px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-deliver-section {
    padding: 60px 5rem;
  }
}

.hc-deliver-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.125rem;
  color: var(--hc-body-text);
}

.hc-deliver-title span {
  color: var(--hc-blue);
}

.hc-step-icon {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background-color: var(--hc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.hc-step-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.hc-step-desc {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #000;
  max-width: 254px;
  margin: 0 auto;
}

.hc-steps-wrap {
  position: relative;
}

/* Connecting lines between steps on desktop */
@media (min-width: 992px) {
  .hc-step-col {
    position: relative;
  }

  .hc-step-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 59px;
    left: calc(50% + 59px);
    width: calc(100% - 118px);
    height: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
}

/* ---------- Google Reviews Section ---------- */
.hc-reviews-section {
  background-color: #fcfbff;
  padding: 60px 1.5rem;
}

@media (min-width: 768px) {
  .hc-reviews-section {
    padding: 60px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-reviews-section {
    padding: 80px 5rem;
  }
}

.hc-reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hc-body-text);
}

.hc-reviews-subtitle {
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgba(16, 24, 40, 0.8);
  max-width: 640px;
  margin: 0 auto;
}

.hc-google-header-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hc-google-logo-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: inline-flex;
}

.hc-google-rating-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--hc-blue);
}

.hc-google-based-on {
  font-size: 0.875rem;
  color: rgba(16, 24, 40, 0.7);
}

.hc-stat-mini-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  min-width: 100px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.hc-stat-mini-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hc-blue);
  display: block;
  margin-bottom: 4px;
}

.hc-stat-mini-label {
  font-size: 0.75rem;
  color: rgba(16, 24, 40, 0.7);
}

.hc-btn-review-google {
  background-color: var(--hc-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.hc-btn-review-google:hover {
  opacity: 0.9;
  box-shadow: 0 4px 16px rgba(5, 84, 158, 0.3);
  color: #fff;
}

/* Reviews Carousel */
.hc-reviews-carousel-wrap {
  position: relative;
  padding: 0 20px;
}

.hc-reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hc-reviews-track::-webkit-scrollbar {
  display: none;
}

.hc-review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  width: 340px;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.hc-review-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.hc-review-quote-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--hc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hc-star {
  color: #ffc107;
  font-size: 1.1rem;
}

.hc-review-text {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: rgba(16, 24, 40, 0.85);
  margin-bottom: 24px;
}

.hc-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.hc-reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.hc-reviewer-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--hc-body-text);
}

.hc-reviewer-days {
  font-size: 0.75rem;
  color: #6b7280;
}

.hc-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--hc-blue);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}

.hc-carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.hc-carousel-btn-prev {
  left: -24px;
}

.hc-carousel-btn-next {
  right: -24px;
}

.hc-reviews-cta-link {
  color: var(--hc-blue);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: text-decoration 0.2s;
}

.hc-reviews-cta-link:hover {
  text-decoration: underline;
  color: var(--hc-blue);
}

/* ---------- Footer ---------- */
.hc-footer {
    background-color: #11448A!important;
}

.hc-footer-inner {
  padding: 30px 1.5rem;
}

@media (min-width: 768px) {
  .hc-footer-inner {
    padding: 30px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-footer-inner {
    padding: 48px 5rem;
  }
}

.hc-footer-logo img {
  height: 130px;
  width: auto;
}

.hc-footer-desc {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: rgba(255, 255, 255, 0.9);
}

.hc-footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.hc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-footer-links li {
  margin-bottom: 12px;
}

.hc-footer-links a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hc-footer-links a:hover {
  color: var(--hc-blue-light);
}

.hc-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.hc-footer-contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.hc-footer-contact-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
}
 
.hc-footer-bottom {
  border-top: 0px solid #364153;
  padding-top: 0px;
  margin-top: 0px;
}

.hc-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--hc-social-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
  margin-right: 8px;
}

.hc-social-btn:hover {
  background-color: var(--hc-blue);
}

.hc-footer-copy {
  font-size: 0.875rem;
  color: #fff;
}

.hc-footer-policy a {
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
}

.hc-footer-policy a:hover {
  color: var(--hc-blue-light);
}

/* ---------- Star rating utility ---------- */
.hc-stars {
  display: inline-flex;
  gap: 4px;
}

/* ---------- Utility overrides ---------- */
.hc-max-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
.hc-service-navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hc-service-navbar .hc-service-nav-logo {
  height: 80px;
  width: auto;
}

@media (min-width: 768px) {
  .hc-service-navbar .hc-service-nav-logo {
    height: 96px;
  }
}

.hc-service-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.2s;
  position: relative;
}

.hc-service-nav-link.active {
  color: #6db3f2;
}

.hc-service-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--hc-blue);
}

.hc-service-nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hc-service-nav-btn {
  display: none;
  padding: 0.5rem 2rem;
  border: 2px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.hc-service-nav-btn:hover {
  background: #fff;
  color: #111;
}

@media (min-width: 992px) {
  .hc-service-nav-btn {
    display: inline-block;
  }
}

/* Mobile menu toggle */
.hc-service-nav-toggler {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  padding: 4px 8px;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .hc-service-nav-toggler {
    display: none;
  }
}

.hc-service-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 0.5rem;
}

.hc-service-mobile-menu.open {
  display: flex;
}

.hc-service-mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hc-service-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hc-service-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hc-service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 84, 158, 0.9), rgba(5, 84, 158, 0.7));
}

.hc-service-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  padding: 0 1.5rem;
  max-width: 1200px;
}

@media (min-width: 768px) {
  .hc-service-hero-content {
    padding: 0 3rem;
  }
}
@media (min-width: 992px) {
  .hc-service-hero-content {
    padding: 0 5rem;
  }
}

.hc-service-hero-eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  line-height: 21px;
  margin: 0;
}

.hc-service-hero-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.7px;
  line-height: 1.25;
  max-width: 1047px;
  margin: 0;
  text-transform: capitalize;
}

/* ─── SERVICES TITLE SECTION ─────────────────────────────────── */
.hc-service-title-section {
  background: #fff;
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .hc-service-title-section {
    padding: 4rem 3rem;
  }
}
@media (min-width: 992px) {
  .hc-service-title-section {
    padding: 4rem 5rem;
  }
}

.hc-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 10px 30px;
  margin-bottom: 1rem;
}

.hc-service-badge-dot {
  color: var(--hc-blue);
  font-size: 1.25rem;
  line-height: 1;
}

.hc-service-badge-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--hc-blue);
}

.hc-service-section-heading {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 700;
  color: #101828;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hc-service-section-lead {
  font-size: 18px;
  line-height: 2;
  color: #0a0a0a;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ─── ZIG-ZAG SERVICE ROWS ──────────────────────────────────── */
.hc-service-row-wrap {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 992px) {
  .hc-service-row-wrap {
    flex-direction: row;
  }
  .hc-service-row-wrap.hc-service-row-reverse {
    flex-direction: row-reverse;
  }
}

/* Content side */
.hc-service-content-col {
  width: 100%;
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hc-service-content-col {
    padding: 4rem 3rem;
  }
}
@media (min-width: 992px) {
  .hc-service-content-col {
    width: 50%;
    padding: 6rem 3rem 6rem 5rem;
  }
  .hc-service-row-reverse .hc-service-content-col {
    padding: 6rem 5rem 6rem 3rem;
  }
}

.hc-service-content-inner {
  width: 100%;
  max-width: 734px;
}

/* Number badge */
.hc-service-number-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.hc-service-number-box {
  background: var(--hc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  height: 38px;
  min-width: 35px;
}

.hc-service-number-box span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 28px;
}

.hc-service-label-gradient {
  background: linear-gradient(to right, #05549e, rgba(130, 179, 226, 0.62) 27.161%, rgba(209, 213, 220, 0) 70.915%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
  height: 38px;
}

.hc-service-label-gradient span {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
  line-height: 18px;
}

/* Service title */
.hc-service-card-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #101828;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

/* Description */
.hc-service-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--hc-text);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Why it matters block */
.hc-service-matters {
  background: rgba(255, 255, 255, 0.5);
  border-left: 3.323px solid var(--hc-blue);
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 20px;
}

.hc-service-matters-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--hc-blue);
  letter-spacing: 0.5px;
  line-height: 24px;
  margin-bottom: 8px;
}

.hc-service-matters-text {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 24px;
  font-style: italic;
  margin: 0;
}


/* Details grid */
.hc-service-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 32px;
}

.hc-service-detail-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--hc-muted);
  margin-bottom: 4px;
  line-height: 24px;
}

.hc-service-detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--hc-blue);
  line-height: 21px;
}

/* CTA button */
.hc-service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--hc-blue);
  color: #fff;
  border-radius: 999px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none; 
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  cursor: pointer;position:relative;
}

.hc-service-cta-btn:hover {
  background: var(--hc-blue-dark);
  box-shadow: 0 6px 20px rgba(5, 84, 158, 0.4);
  color: #fff;
}

.hc-service-cta-btn:hover .hc-service-arrow {
  transform: translateX(4px);
}

.hc-service-arrow {
  transition: transform 0.2s;
  font-size: 1.1rem;
}

/* Image side */
.hc-service-image-col {
  width: 100%;
  order: -1;
}

@media (min-width: 992px) {
  .hc-service-image-col {
    width: 50%;
    order: 0;
    max-height: 850px;
    align-self: stretch;
  }
}

.hc-service-image-wrap {
  position: relative;
  overflow: hidden;
  height: 400px;
}

@media (min-width: 992px) {
  .hc-service-image-wrap {
    height: 100%;
    min-height: 500px;
  }
}

.hc-service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hc-service-icon-badge {
  position: absolute;
  top: 2rem;
  background: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  font-size: 1.5rem;
  color: var(--hc-blue);
}

.hc-service-icon-badge.left {
  left: 2rem;
}
.hc-service-icon-badge.right {
  right: 2rem;
}

/* ─── BOTTOM CTA ─────────────────────────────────────────────── */
.hc-service-cta-section {
  background: var(--hc-blue);
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .hc-service-cta-section {
    padding: 6rem 3rem;
  }
}
@media (min-width: 992px) {
  .hc-service-cta-section {
    padding: 6rem 5rem;
  }
}

.hc-service-cta-heading {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hc-service-cta-lead {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 2;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hc-service-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: #fff;
  color: var(--hc-blue);
  border-radius: 999px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition:
    background 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.hc-service-cta-primary:hover {
  background: #f0f0f0;
  color: var(--hc-blue);
}

.hc-service-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.hc-service-cta-secondary:hover {
  background: #fff;
  color: var(--hc-blue);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.hc-service-footer {
  background: var(--hc-dark);
}

.hc-service-footer-inner {
  max-width: 1660px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .hc-service-footer-inner {
    padding: 3rem;
  }
}
@media (min-width: 992px) {
  .hc-service-footer-inner {
    padding: 3rem 5rem;
  }
}

.hc-service-footer-logo {
  height: 130px;
  width: auto;
}

.hc-service-footer-desc {
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  opacity: 0.9;
  margin: 0;
}

.hc-service-footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 24px;
  margin-bottom: 1rem;
}

.hc-service-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hc-service-footer-list a {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.hc-service-footer-list a:hover {
  color: var(--hc-blue);
}

.hc-service-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hc-service-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hc-service-footer-contact-item i {
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hc-service-footer-contact-item p {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin: 0;
}

.hc-service-footer-divider {
  border-top: 1px solid var(--hc-dark-3);
  padding-top: 2rem;
  margin-top: 3.5rem;
}

.hc-service-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hc-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.hc-service-social-link:hover {
  background: var(--hc-blue);
  color: #fff;
}

.hc-service-copyright {
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  margin: 0;
}

.hc-service-footer-policy a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.hc-service-footer-policy a:hover {
  color: var(--hc-blue);
}

/* ─── Utility ────────────────────────────────────────────────── */
.hc-service-px {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .hc-service-px {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 992px) {
  .hc-service-px {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

/* ── Google Font (Inter) ─────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* ── Global Reset / Base ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #ffffff;
  color: #0a0a0a;
  margin: 0;
  padding: 0;
}

/* ── Brand colour palette ────────────────────────────────── */
:root {
  --hc-blue: #05549e;
  --hc-blue-dark: #044080;
  --hc-blue-light: #e8f3fc;
  --hc-green: #00a63e;
  --hc-dark-bg: #101828;
  --hc-border: #e5e7eb;
  --hc-text-muted: #6a7282;
  --hc-text-body: #364153;
  --hc-text-dark: #1f2937;
  --hc-text-label: #444;
}

/* ── Navigation ──────────────────────────────────────────── */
.hc-price-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hc-price-nav-inner {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc-price-nav-logo {
  height: 80px;
  width: auto;
}

.hc-price-nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.hc-price-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.2s;
  position: relative;
}

.hc-price-nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hc-price-nav-link.active {
  color: #6db3f2;
}

.hc-price-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--hc-blue);
  border-radius: 1px;
}

.hc-price-nav-cta {
  display: none;
  padding: 0.625rem 2rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  cursor: pointer;
}

.hc-price-nav-cta:hover {
  background: #ffffff;
  color: #111827;
}

/* Mobile hamburger */
.hc-price-nav-toggle {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hc-price-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s;
}

.hc-price-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.25rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

.hc-price-mobile-menu.open {
  display: flex;
}

.hc-price-mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hc-price-mobile-cta {
  margin-top: 0.5rem;
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition:
    background 0.2s,
    color 0.2s;
}

.hc-price-mobile-cta:hover {
  background: #fff;
  color: #111;
}

/* Show desktop nav items from lg up */
@media (min-width: 992px) {
  .hc-price-nav-inner {
    padding: 0.75rem 5rem;
  }
  .hc-price-nav-logo {
    height: 96px;
  }
  .hc-price-nav-links {
    display: flex;
  }
  .hc-price-nav-cta {
    display: inline-block;
  }
  .hc-price-nav-toggle {
    display: none;
  }
}

/* ── Banner Section ──────────────────────────────────────── */
.hc-price-banner {
  position: relative;
  width: 100%;
}

.hc-price-banner-frame {
  position: relative;
  height: 450px;
  width: 100%;
  overflow: hidden;
}

.hc-price-banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hc-price-banner-img {
  position: absolute;
  width: 100%;
  height: 256%;
  top: -39%;
  left: 0;
  object-fit: cover;
  max-width: none;
}

.hc-price-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 84, 158, 0.96);
}

.hc-price-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hc-price-banner-eyebrow {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  line-height: 21px;
  margin-bottom: 1rem;
}

.hc-price-banner-heading {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.35;
  text-transform: capitalize;
  max-width: 866px;
  margin: 0;
}

@media (min-width: 768px) {
  .hc-price-banner-frame {
    height: 500px;
  }
  .hc-price-banner-content {
    padding-bottom: 6rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .hc-price-banner-eyebrow {
    font-size: 1rem;
  }
  .hc-price-banner-heading {
    font-size: 1.875rem;
    line-height: 50px;
  }
}

@media (min-width: 992px) {
  .hc-price-banner-frame {
    height: 614px;
  }
  .hc-price-banner-content {
    padding-bottom: 12rem;
    padding-left: 7.4375rem;
    padding-right: 7.4375rem;
  }
  .hc-price-banner-heading {
    font-size: 2.5rem;
    line-height: 60px;
  }
}

/* ── Fee Schedule Cards ──────────────────────────────────── */
.hc-price-cards-section {
    position: relative;
    z-index: 30;
    padding-bottom: 60px;
    padding-top: 60px;
}
@media (max-width: 992px) {
  .hc-price-cards-section {
    position: relative;
    margin-top: 80px !important;
  }
}

@media (min-width: 992px) {
  .hc-price-cards-section {
    margin-top: -10rem;
    padding-bottom: 60px;
  }
}

.hc-price-fee-card {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 22px 24px 69px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--hc-border);
  overflow: hidden;
}

.hc-price-fee-card-header {
  position: relative;
  height: 9rem;
  overflow: hidden;
  background-image: linear-gradient(166.883deg, rgb(5, 84, 158) 0%, rgba(5, 84, 158, 0.867) 100%);
}

.hc-price-fee-card-circle-1 {
  position: absolute;
  right: 3rem;
  top: -2rem;
  width: 8rem;
  height: 8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hc-price-fee-card-circle-2 {
  position: absolute;
  right: 2rem;
  top: 4rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hc-price-fee-card-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

.hc-price-fee-card-icon-wrap {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-price-fee-card-download-btn {
  width: 3rem;
  height: 3rem;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.hc-price-fee-card-download-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hc-price-fee-card-download-btn svg {
  color: var(--hc-blue);
}

.hc-price-fee-card-body {
  padding: 2rem;
}

.hc-price-fee-card-title {
  color: var(--hc-blue);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hc-price-fee-card-notice {
  color: var(--hc-text-muted);
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.hc-price-fee-card-desc {
  color: var(--hc-text-body);
  font-size: 1.0625rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
}

.hc-price-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hc-price-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hc-price-check-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--hc-green);
}

.hc-price-feature-text {
  color: var(--hc-text-label);
  font-size: 0.9375rem;
}

.hc-price-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--hc-blue);
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.hc-price-btn-primary:hover {
  background: var(--hc-blue-dark);
  color: #ffffff;
}

/* ── Resource Centre ─────────────────────────────────────── */
.hc-price-resources-section {
  background: #f9f9f7;
  padding: 4rem 0;
}

@media (min-width: 992px) {
  .hc-price-resources-section {
    padding: 60px 0;
  }
}

.hc-price-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.625rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .hc-price-section-title {
    font-size: 2rem;
  }
}

.hc-price-section-title span {
  color: var(--hc-blue);
}

.hc-price-section-subtitle {
  color: #0a0a0a;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}

.hc-price-resource-card {
  background: #ffffff;
  border: 1px solid var(--hc-border);
  border-radius: 1rem;
  box-shadow: 13px 21px 43.6px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.hc-price-resource-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hc-price-resource-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  min-height: 98px;
}

.hc-price-resource-info {
  flex: 1;
  padding-right: 1rem;
}

.hc-price-badge {
  display: inline-block;
  background: var(--hc-blue-light);
  color: var(--hc-blue);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.hc-price-resource-title {
  color: var(--hc-text-dark);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.hc-price-btn-sm-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hc-blue);
  color: #ffffff;
  border: none;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.hc-price-btn-sm-primary:hover {
  background: var(--hc-blue-dark);
  color: #ffffff;
}

.hc-price-btn-sm-label-desktop {
  display: none;
}

.hc-price-btn-sm-label-mobile {
  display: inline;
}

@media (min-width: 576px) {
  .hc-price-btn-sm-label-desktop {
    display: inline;
  }
  .hc-price-btn-sm-label-mobile {
    display: none;
  }
}

/* ── CTA Banner ──────────────────────────────────────────── */
.hc-price-cta-banner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background-image: linear-gradient(166.251deg, rgb(5, 84, 158) 0%, rgb(0, 102, 204) 100%);
}

.hc-price-cta-circle-1 {
  position: absolute;
  right: 0;
  top: -8rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hc-price-cta-circle-2 {
  position: absolute;
  left: -6rem;
  bottom: 4rem;
  width: 12rem;
  height: 12rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hc-price-cta-inner {
  position: relative;
  padding: 3rem 1.5rem;
  text-align: center;
}

@media (min-width: 992px) {
  .hc-price-cta-inner {
    padding: 4rem 3rem;
  }
}

.hc-price-cta-heading {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .hc-price-cta-heading {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

.hc-price-cta-body {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 2rem;
  max-width: 42rem;
  margin: 0 auto 2rem auto;
}

@media (min-width: 992px) {
  .hc-price-cta-body {
    margin-bottom: 2.5rem;
  }
}

.hc-price-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .hc-price-cta-actions {
    flex-direction: row;
  }
}

.hc-price-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  color: var(--hc-blue);
  border: none;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s;
}

.hc-price-btn-white:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  color: var(--hc-blue);
}

.hc-price-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.hc-price-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ── Footer ──────────────────────────────────────────────── */
.hc-price-footer {
  background-color: var(--hc-dark-bg);
}

.hc-price-footer-inner {
  padding: 3rem 1.5rem;
  max-width: 1660px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hc-price-footer-inner {
    padding: 3rem;
  }
}

@media (min-width: 992px) {
  .hc-price-footer-inner {
    padding: 3rem 5rem;
  }
}

.hc-price-footer-logo {
  height: 130px;
  width: auto;
  margin-bottom: 0.75rem;
}

.hc-price-footer-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.625rem;
}

.hc-price-footer-heading {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

.hc-price-footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hc-price-footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: color 0.2s;
}

.hc-price-footer-link:hover {
  color: var(--hc-blue);
}

.hc-price-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hc-price-footer-contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hc-price-footer-contact-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25rem;
}

.hc-price-footer-contact-text-sm {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.hc-price-footer-divider {
  border-top: 1px solid #364153;
  padding-top: 2rem;
  margin-top: 3.5rem;
}

.hc-price-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hc-price-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.hc-price-social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hc-price-social-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: #1e2939;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}

.hc-price-social-btn:hover {
  background: var(--hc-blue);
}

.hc-price-copyright {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.hc-price-footer-policy-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hc-price-policy-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: color 0.2s;
}

.hc-price-policy-link:hover {
  color: var(--hc-blue);
}

.hc-price-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.hc-price-icon-sm {
  width: 1rem;
  height: 1rem;
}

.hc-price-icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.hc-price-icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.hc-price-icon-xl {
  width: 3rem;
  height: 3rem;
}

ul.navbar-nav.gap-4 {
  gap: 40px !important;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1680px !important;
  }
}

@media (max-width: 768px) {
  .hc-fast-report-section {
    background-color: #f7f6fe;
  }
  .hc-fast-report-bg {
    width: 100%;
    display: none;
  }
  .hc-hero-badge {
    flex-wrap: wrap;
    display: flex;
    white-space: normal;
  }
  .hc-hero-title {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    max-width: 700px;
    line-height: 50px;
  }
  .hc-house-img {
    height: 300px;
  }
  .hc-stats-content {
    padding-top: 0;
  }
  .hc-stats-desc {
    font-size: 1rem;
    line-height: 1.8;
  }
  .hc-stat-number {
    margin-bottom: 0;
  }
  .hc-stats-section {
    background-color: #fff;
    padding: 50px 1.5rem;
  }
  .hc-services-section {
    background-color: var(--hc-blue);
    padding: 50px 1.5rem;
  }
  .hc-services-title {
    font-size: 24px;
  }
  .hc-badge-pill {
    font-size: 0.8rem;
  }
  .hc-service-img-wrap {
    height: 242px;
  }
  .hc-service-arrow {
    right: -4px;
  }
  .hc-service-img-wrap {
    position: relative;
    overflow: visible;
    height: 242px;
  }
  .hc-service-arrow {
    right: -9px;
    bottom: -4px;
  }

  .hc-btn-outline-services {
    font-size: 16px;
  }
  .hc-fast-report-content {
    position: relative;
    z-index: 10;
    padding: 50px 20px;
    width: 80%;
  }
  .hc-fast-report-title {
    font-size: 24px;
    line-height: 36px;
  }
  .hc-deliver-section {
    background: #fff;
    padding: 50px 20px;
  }
  .hc-deliver-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: var(--hc-body-text);
  }
  .hc-step-title {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1299px) {
  .hc-stats-content {
    padding-top: 0;
  }
  .hc-stat-number {
    margin-bottom: 0;
  }
}

@media (min-width: 1401px) and (max-width: 1799px) {
  .hc-fast-report-content.container.px-0 {
    padding-left: 80px !important;
  }
}

@media (max-width: 340px) {
  .hc-service-img-wrap {
    position: relative;
    overflow: visible;
    height: 194px;
  }
}
@media (max-width: 768px) {
  .hc-section-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
  }
}

@media (max-width: 1600px) {
  .hc-service-card-label p {
    margin: 0;
    white-space: pre-wrap !important;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hc-img-stack-badge {
    left: 0;
    bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hc-service-card-label p {
    font-size: 16px;
    line-height: 23px;
    white-space: pre-wrap !important;
  }
}

@media (max-width: 768px) {
  .hc-services-title {
    font-size: 24px !important;
    line-height: 34px !important;
  }
  .hc-structure-intro {
    font-size: 20px !important;
    line-height: 34px !important;
  }
  .hc-section-title {
    font-size: 20px !important;
    line-height: 34px !important;
  }

  .hc-pill-label {
    margin-bottom: 0;
  }
  .hc-pill-label .hc-pill-text {
    font-size: 14px;
    font-weight: 700;
    color: #05549e;
    text-transform: uppercase;
  }
}

@media (max-width: 792px) {
  .hc-price-resource-card-inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    gap: 15px;
  }
  .hc-price-cta-actions {
    flex-direction: column;
  }
  .hc-price-cta-heading {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }
  .hc-price-section-title {
    font-size: 24px;
  }
  .hc-price-fee-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
}

.hc-service-card.h-100 {
  padding: 24px;
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-content {
  display: inline-block;
  animation: marquee 40s linear infinite;
}

.marquee-content span {
  padding-right: 50px;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hc-hero-badge span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
}
.marquee-content span {
  padding-right: 15px;
}

.hc-custom-service-cards {
  background: #fff;
  box-shadow: 22px 24px 69px rgba(0, 0, 0, 0.08);
  padding: 60px 10px;
  cursor: pointer;
  border-radius: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;height: 100%;
  text-align: center;
  max-width: 408px;
}

.hc-custom-service-cards .icon-card {
  margin: 0 auto 20px auto;
  background: #eff6ff;
  width: 80px;
  height: 80px;
  display: flex;
  transition: all 0.5s ease;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.icon-header h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.icon-header p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 20px;
  color: #364153;
}
.icon-header h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.hc-custom-service-cards button {
  border: 0;
  background: transparent;
  color: #364153;
}

.hc-custom-service-cards:hover .icon-card {
  background: #05549e;
}
.hc-custom-service-cards:hover .icon-card path {
  stroke: #fff;
}
.hc-custom-service-cards:hover i.fa-solid.fa-arrow-right {
  margin-left: 7px;
}
.hc-custom-service-cards i.fa-solid.fa-arrow-right {
  transition: all 0.5s ease;
}

.service-modal-popup .modal-dialog .modal-header {
  background: linear-gradient(137deg, #05549e, #05549e97);
  color: #fff;
}

.service-modal-popup .modal-dialog .modal-header .title-and-description-cards .image-card-1 {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
}
.service-modal-popup .modal-dialog .modal-header .title-and-description-cards .image-card-1 .icon-card {
    padding: 16px;
    background: #ffffff20;
    border-radius: 15px;margin-right: 30px;color: #fff;
}

.service-modal-popup .modal-dialog .modal-header .title-and-description-cards .image-card-1 .icon-card svg path{
  stroke: #fff;
}
.service-modal-popup .modal-dialog .modal-header .title-and-description-cards .image-card-1 h3 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400; 
}
.service-modal-popup .modal-content {
    max-width: 820px;
}

.service-modal-popup .modal-content  button.btn-close {
    position: absolute;
    right: 6px;
    color: #fff!important;
    top: -25px;
}

.service-modal-popup .modal-content  .btn-close { 
  opacity: 1;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
     
}
.service-modal-popup .modal-content {
    border: 0; 
}
.service-modal-popup .modal-content {
    border: 0;
    max-width: 820px;
    border-radius: 24px; 
}
.service-modal-popup .modal-body {
    padding: 42px;
}
.service-modal-popup .modal-dialog .modal-header .title-and-description-cards .image-card-1 h3 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600; 
}
.service-modal-popup  .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: 24px!important;
    border-top-right-radius: 24px!important;
    border: 0;
}
.service-container{
  max-width: 1280px;margin: auto;
}
    .service-container .col-md-4, .service-container .col-lg-4{
        margin-bottom: 30px;
    }
.service-container {
    max-width: 1280px;
    margin: auto;
    justify-content: center;
}
@media (min-width: 992px) {
    .hc-service-hero-content {
        padding: 0 5rem;
        margin-top: 80px;
    }
}

@media (max-width:992px){ 
 .hc-service-section-heading {
    font-size: 24px!important;padding-bottom: 0!important;
}
.hc-service-title-section {
    background: #fff;padding-bottom: 0!important;
}
.icon-header h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}
.icon-header p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
    color: #364153;
    width: 80%;
    margin: 0 auto 20px;
}
.hc-service-hero-heading {
    font-size: 29px; 
}
.hc-service-section-lead {
    font-size: 16px;
    line-height: 1.2; 
}
.service-modal-popup .modal-dialog .modal-header .title-and-description-cards .image-card-1 h3 {
    font-size: 20px;  
}
.service-modal-popup .modal-dialog .modal-header .title-and-description-cards .image-card-1 .icon-card {
    padding: 16px;
    background: #ffffff20; 
    margin-right: 15px; 
}
.service-modal-popup .modal-body {
    padding: 20px;
}
.hc-service-cta-btn { 
    padding: 10px 30px; 
    border-radius: 999px; 
    font-size: 16px; 
}
.service-modal-popup .modal-content  button.btn-close {
    position: relative;
    right: 6px;
    color: #fff!important;
    top: -25px;
}
.modal-header button.btn-close:first-child {
    display: none;
}
.hc-service-description { 
    margin-bottom: 10px;
}
    .hc-price-cards-section {
        position: relative;
        margin-top: 00px !important;
    }
    .hc-service-hero-eyebrow { 
    margin-top: 50px;
}
}

/* Smooth transition for existing navbar */
.hc-navbar {
    transition: all 1s ease-in-out;
}

    /* Class added on scroll */
    .hc-navbar.hc-scrolled {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        background-color: rgb(0 0 0 / 46%)!important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        z-index: 1000;
        transition: all 1s ease;
        padding:0;
    }

        .hc-navbar.hc-scrolled  a.navbar-brand img {
            width: 100px !important;
            height: auto !important;
        }
         
/* Scroll state */
.hc-navbar.hc-scrolled {
    padding-top: 8px !important;
    padding-bottom: 8px !important;

    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);

    box-shadow: 0 6px 20px rgba(0,0,0,0.08);  
}

/* Optional: add slight slide-down feel when appearing */
.hc-navbar.hc-animate {
    animation: navbarFadeIn 1s ease forwards;
}

@keyframes navbarFadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hc-footer-inner {
    padding: 20px 5rem!important;
}

hr {
    margin: 1rem 0;
    color: #fff;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    margin:  15px 0 15px 0;

}

@media(max-width:1199px) {
    .hc-bk-form__stepper-inner {
        display: none;
    }

    .hc-bk-form__card {
        padding: 14px;
    }

    .hc-bk-form__btn-next {
        padding: .5rem .75rem;
        font-size: 12px;
    }

    .hc-bk-form__btn-prev:disabled {
        padding: .5rem .75rem;
        font-size: 12px;
    }

    .hc-service-hero-heading {
        font-size: 20px;
    }

    .hc-bk-form__card-title {
        font-size: 16px;
    }

    .hc-bk-form__card .row.g-3 .col-md-6 {
        margin-top: 10px;
    }

    .hc-bk-form__label {
        display: block;
        font-size: 14px;
    }

    .hc-bk-form__label {
        margin-bottom: 10px;
    }

    .hc-bk-form__input, .hc-bk-form__select {
        padding: 5px 1rem;
        outline: none;
        font-size: 14px;
        max-height: 37px;
    }

    .hc-bk-form__summary-title {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .hc-bk-form__totals-grand-amount {
        font-size: 18px;
        font-weight: 700;
    }

    .hc-bk-form__totals-grand-label {
        font-size: 14px;
        font-weight: 600;
    }

    .hc-bk-form__summary-help a {
        word-wrap: break-word;
    }
    .hc-reviews-section { 
        padding: 50px 1.5rem;
    }
    .hc-footer-inner {
        padding: 20px 3rem !important;
    }
    .hc-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 3rem;
    }
    .hc-nav-link.active-link::after {  
        bottom: -2px; 
        background-color: #fff; 
    }
    .hc-offcanvas .hc-nav-link { 
        font-size: 16px;  
    }
    .hc-service-title-section { 
        padding: 50px 20px;
    }
    .hc-service-section-heading {
        font-size: 20px !important;
        padding-bottom: 0 !important;
        line-height: 32px;
    }
    .hc-custom-service-cards {  
        padding: 20px 10px; 
    }
    .hc-service-cta-section { 
        padding: 50px 1.5rem;
    }
    .service-container { 
        width: 100%;
    }
    .hc-service-cta-heading {
        font-size: 24px; 
    }
    .hc-img-stack-badge.position-relative p.hc-badge-label {
        margin-top: 0;
    }
    .hc-img-stack-badge .hc-badge-num {
        font-size: 55px; 
        margin: 0;
    }
    .hc-img-stack-badge.position-relative p.hc-badge-label {
        margin-top: 0;
        margin: 0;
    }
    .hc-img-stack-badge .hc-badge-num {
        font-size: 32px !important;
        font-weight: 600;
        color: #fff;
        line-height: 60px;
        margin: 0;
    }
    .hc-img-stack-badge {
        position: absolute;
        left: 417px;
        min-width: 191px;
        height: 160px;
        border-radius: 26px;
        background: #05549E;
        box-shadow: 0 4px 61px rgba(0,0,0,.10);
        padding: 20px 21px;
        margin-top: -105px;
        left: 10px !important;
    }
    .d-flex.flex-column.flex-xl-row.gap-5.align-items-start {
        gap: 0rem !important;
    }
    .hc-pill-label .hc-pill-text {
        font-size: 14px; 
    }
    .hc-pill-label { 
        margin-bottom: 0;
    }
    .hc-section-title {
        font-size: 18px !important;
        line-height: 28px !important;
    }
    .hc-client-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 150px;
        height: 200px;
        border-radius: 20px;
        box-shadow: 28px 41px 94px rgba(0,0,0,.05);
        padding: 29px 10px;
        background: linear-gradient(146.831deg, #05549E 7.58%, #307FC9 79.97%);
        flex-shrink: 0;
    }
        .hc-client-card svg {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
        }
    .hc-multi-closing {
        font-size: 18px; 
        line-height: 27px;  
    }
    .hc-structure-bottom {
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        line-height: 24px;
        text-align: center;
        margin-top: 20px;
    }
    .hc-structure-blue {
        padding: 50px 20px;
    }
    .hc-closing {
        padding: 50px 20px;
    }
    .hc-closing-title {
        font-size: 18px;
        font-weight: 600;
        color: #101828;
        line-height: 30px;
    }
    .hc-closing-desc {
        font-size: 16px;
        font-weight: 600;
        color: #101828;
        line-height: 29px;
        max-width: 854px;
        margin: 0 auto;
    }
    .hc-closing-tagline {
        font-size: 16px;
        font-weight: 600;
        color: #05549E;
        line-height: 30px;
    }
    .hc-authority-content.flex-grow-1 p {
        font-size: 17px !important;
        line-height: 28px !important;
        margin-top: 10px !important;
        margin-bottom: 14px !important;
    }
    .hc-feature-card span {
        font-size: 16px; 
        line-height: 20px;
    }
    .hc-different-tagline {
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        line-height: 24px; 
    }
    .hc-price-cta-banner { 
        width: 80%;
    }
    .hc-price-cta-heading {
        font-size: 20px;
        margin-bottom: 1.5rem;
    }
    .hc-price-cta-body {
        color: #ffffff;
        font-size: 16px;
        line-height: 30px;
        max-width: 42rem;
        margin: 0 auto 2rem auto;
    }
    .hc-price-btn-outline-white { 
        font-size: 16px; 
    }
    button.hc-bk-form__btn-prev {
        padding: .5rem .75rem;
        font-size: 12px;
    }
    .hc-bk-form__nav { 
        padding-top: 0!important;
    }
    .hc-bk-form__review-card-title {
        display: block; 
    }
}
.navbar-toggler:focus { 
    box-shadow: none;
}
.hc-client-card svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}


div#realtor-search-wrap {
    margin-top: 20px;
}
.hc-bk-form__card > .row.g-3 .col-12.col-md-6 {
    gap: 0 !important;
    margin-top: 10px;
}
.hc-bk-form__card > .row.g-3 .col-12 { 
    margin-top: 0px;
}
.hc-bk-form__review-card { 
    margin-bottom: 1rem;
}

.hc-bk-form__util-check span {
    font-size: 13px;
    font-weight: 500;
    line-height: 13px;
}

.hc-different-panel-right {
    overflow: hidden;
    background: #05549e;
}

    .hc-different-panel-right img {
        width: 100%;
        height: 100%;
        max-height: 704px;
        object-fit: contain;
        object-position: center top;
        background: #101828;
    }

    .hc-different-panel-right img {
        width: 100%;
        height: 100%;
        padding: 15px 0;
        max-height: 704px;
        object-fit: contain;
        object-position: center top;
        background: #101828;
    }
    @media(min-width:768px){
.mx-w-100{
    max-width:50%!important
}}

.footer-layouting img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.d-flex.hc-wrapping-footer {
    gap: 10px;
    margin-right: 20px;
}


@media(min-width:768px) and (max-width:1299px){
    .footer-layouting img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }
}

.hc-bk-form__card{
    position:relative
}
.hc-custom-service-cards.septic-iconsection:hover svg path {
    fill: #fff !important;
}
.hc-custom-service-cards.septic-iconsection:hover svg path {
    fill: #fff !important;
}

@media(min-width:768px) and (max-width:1599px) {
    .icon-header h3 {
        font-size: 18px;
        line-height: 30px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .icon-header p {
        font-size: 15px;
        line-height: 24px;
    }

    .hc-nav-link { 
        font-size: 16px;  
    }
}

.hc-custom-service-cards.radon-icon svg {
    width: 50px;
}

.hc-custom-service-cards.radon-icon svg {
    width: 50px;
}

.hc-custom-service-cards.radon-icon:hover svg path {
    fill: #fff;
}

    .hc-custom-service-cards.radon-icon:hover svg path:last-child {
        fill: transparent !important;
    }

.hc-custom-service-cards.hc-custom-service-mold svg path {
    stroke: #212121;
}

.hc-custom-service-cards.hc-custom-service-mold:hover svg circle {
    stroke: #fff;
}
.hc-custom-service-cards.hc-custom-service-mold:hover svg ellipse {
    fill: #fff;
}

.hc-custom-service-cards.hc-custom-service-mold .icon-card svg {
    width: 60px;
}

.image-card-1 .icon-card svg {
    width: 50px;
    height: 50px;
}

@media(min-width:768px) and (max-width:1599px) {
    .icon-header h3 {
        font-size: 18px;
        line-height: 30px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .icon-header p {
        font-size: 15px;
        line-height: 24px;
    }

    .hc-nav-link {
        font-size: 16px;
    }
    .hc-navbar .navbar-brand img {
        height: 62px;
    }

    ul.navbar-nav.gap-4 {
        gap: 24px !important;
        font-weight: 400;
    }
    .hc-btn-book {
        padding: 1px 20px;
        border: 2px solid #fff;
        color: #fff !important;
        background: transparent;
        font-size: 1rem;
        font-weight: 500;
        height: 46px !important;
        white-space: nowrap;
    }
    .hc-hero-title {
        font-size: 50px; 
    }
    .hc-hero-title {
        font-size: 46px; 
        line-height: 1; 
        line-height: 60px;
    }
    .hc-hero-desc { 
        font-size: 20px;
        line-height: 30px;
        max-width: 612px;
    }
    .hc-btn-primary {
        padding: 12px 24px;
        background-color: var(--hc-blue);
        color: #fff !important;
        border: none;
        font-size: 16px;
    }
    .hc-stats-desc {
        font-size: 16px;
        color: #111827;
        line-height: 1.6;
    }
    .hc-house-img {
        width: 100%;
        height: 363px; 
    }
    .hc-badge-pill { 
        padding: 10px 20px;
        font-size: 14px; 
    }
    .hc-fast-report-title {
        font-size: 24px; 
    }
    .hc-fast-report-desc {
        font-size: 16px;
        line-height: 1.5; 
    }
    .hc-deliver-title {
        font-size: 30px;
        font-weight: 600;  
    }
    .hc-step-icon svg {
        width: 40px;
        height: 40px;
    }
    .hc-step-icon {
        width: 90px;
        height: 90px; 
    }
    .hc-step-title {
        font-size: 17px; 
    }
    .hc-step-desc {
        font-size: 14px;
        line-height: 1.3rem; 
    }
    .hc-stat-number {
        font-size: 30px;   
    }
    .hc-service-section-heading {
        font-size: 24px; 
    }
    .hc-custom-service-cards button {  
        font-size: 14px !important;
    }
    .hc-custom-service-cards .icon-card { 
        width: 60px;
        height: 60px; 
    }
        .hc-custom-service-cards .icon-card svg {
            width: 30px;
        }
    .hc-custom-service-cards.hc-custom-service-mold .icon-card svg {
        width: 40px !important;
    }
    .hc-service-cta-heading {
        font-size: 24px;
        font-weight: 700;
        color: #fff; 
    }
    .hc-service-cta-lead {
        font-size: 16px;
        font-weight: 400;
        color: #fff;
        line-height: 1.4; 
        margin-top: 30px;
    }
    .hc-service-cta-primary { 
        font-size: 16px; 
    }
    .hc-service-cta-secondary { 
        font-size: 16px; 
    }
    .hc-price-banner-heading {
        font-size: 29px;
        line-height: 39px;
        max-width: 600px;
    }
    .hc-price-fee-card-icon-wrap {
        width: 4rem;
        height: 4rem; 
    }
        .hc-price-fee-card-icon-wrap svg {
            width: 30px;
            height: 30px;
        }
    .hc-price-fee-card-header-inner { 
        padding: 1rem;
    }
    .hc-price-fee-card-header { 
        height: 6rem; 
     }
    .hc-price-fee-card-title { 
        font-size: 1.2rem;  
    }
    .hc-price-fee-card-desc { 
        font-size: 16px;
        line-height: 22px; 
    }
    .hc-price-feature-list { 
        gap: 0.50rem;
    }
    .hc-hero-heading {
        font-size: 36px; 
        color: #fff; 
        letter-spacing: .7px; 
        max-width: 600px; 
    }
    .hc-img-stack-badge .hc-badge-num {
        font-size: 32px; 
    }
    .hc-img-stack-badge .hc-badge-num {
        font-size: 32px;
        font-weight: 600;
        color: #fff;
        line-height: 30px;
    }
    .hc-img-stack-badge {
        position: absolute;
        left: 417px;
        top: 28px;
        height:auto;
        border-radius: 26px;
        background: #05549E;
        box-shadow: 0 4px 61px rgba(0,0,0,.10);
        padding: 30px 30px;
        min-width: auto;
    }
    .hc-authority-content p {
        font-size: 16px !important;
        line-height: 30px !important;
    }
    .hc-authority-content .hc-pill-label {
        margin-bottom: 20px;
    }
    .hc-btn-primary { 
        font-size: 16px!important; 
    }
    .hc-section-title {
        font-size: 24px !important;
        margin-bottom: 20px;
        margin-top: 20px;line-height:36px!important
    }
    .hc-feature-card span {
        font-size: 15px!important; 
    }
    .hc-multi-closing {
        font-size: 18px !important;
        line-height: 26px !important;
    }
    .hc-structure-intro {
        font-size: 24px !important;
         
        line-height: 32px !important; 
        margin-bottom: 10px;
    }
    .hc-step-label {
        font-size: 16px!important; 
    }
    .hc-closing-title {
        font-size: 24px !important; 
        line-height: 30px !important;
    }
    .hc-closing-desc {
        font-size: 18px !important;
        font-weight: 600 !important;
        color: #101828 !important;
        line-height:32px;
        max-width: 854px;
        margin: 0 auto;
    }
    .hc-closing-tagline {
        font-size: 20px!important; 
    }
    .hc-price-btn-outline-white {
        font-size: 16px;
        padding: 8px 20px;
    }
    .hc-price-cta-body {  
        font-size: 16px;
        line-height: 28px; 
    }

    .hc-service-hero-heading {
        font-size: 27px;
        font-weight: 600;
        color: #fff;
        letter-spacing: 0.7px;
        line-height: 1.25;
        max-width: 1047px;
        margin: 0;
        text-transform: capitalize;
        max-width: 700px;
    }
    .hc-bk-form__btn-prev:disabled { 
        font-size: 12px!important; 
    }
    .hc-bk-form__btn-next {
        font-size: 12px !important;
    }
    .hc-bk-form__totals-grand-amount {
        font-size: 20px!important;
        font-weight: 700;
    }
    .hc-bk-form__btn-prev {
        font-size: 12px !important;
    }
    .hc-bk-form__confirm-title {
        font-size: 20px; 
    }
    .hc-bk-form__confirm-subtitle {
        font-size: 14px; 
        margin-bottom: 2rem;
    }
    .hc-bk-form__confirm-details h4 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: #fff;
        font-size: 18px;
    }
    .hc-bk-form__next-steps h4 {
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 19px;
    }

    .hc-different-panel-right img { 
        max-height: 760px!important; 
    }

    .hc-client-card svg {
        width: 50px !important;
        height: 50px !important;
        flex-shrink: 0;
    }
    .hc-client-card {
        width: 220px !important;
        height: 160px !important;
    }
    .hc-client-card-label {
        font-size: 14px !important;
        font-weight: 600 !important;
        max-width: 201px !important;
        margin-top: 12px !important;
    }
    .hc-client-card-label { 
        font-weight: 500 !important; 
    }


    .image-card-1 .icon-card svg {
        width: 24px;
        height: 24px;
    }

    .service-modal-popup .modal-dialog .modal-header .title-and-description-cards .image-card-1 h3 {
        font-size: 20px;
        line-height: 1.2;
        font-weight: 600;
    }

    .service-modal-popup .modal-dialog .modal-header .title-and-description-cards .image-card-1 .icon-card {
        margin-right: 10px;
    }

    .service-modal-popup .modal-body {
        padding: 20px;
    }

    .hc-service-description {
        font-size: 14px;
    }
    .hc-service-detail-label {
        font-size: 14px;
        font-weight: 600; 
        line-height: 18px;
    }
    .hc-service-matters-text {
        font-size: 12px; 
    }
    .hc-service-detail-value {
        font-size: 11px;  
    }
    .hc-service-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 1rem; 
        font-size: 16px;
        font-weight: 600; 
    }
}


section.hc-hero.hc-about-us-banner-image {
    height: auto;
}

@media (min-width: 992px) {
    .hc-hero-content {
        padding-top: 160px !important;
    }
}

.hc-bk-form__role-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .hc-bk-form__role-btn i { 
        margin: 0; 
    }
     

.hc-bk-form__role-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: start;
    padding: 5px 10px;
}


@media(max-width:768px) {
    .hc-service-hero {
        position: relative;
        height: auto;
        overflow: hidden;
        padding-top: 80px;
        padding-bottom: 30px;
    } 
    .hc-price-banner-heading {
        font-size: 16px;
        line-height: 28px;
    }
    .hc-price-fee-card-icon-wrap {
        width: 4rem;
        height: 4rem; 
    }
    .hc-price-fee-card-header-inner { 
        padding: 1rem;
    }
    .hc-price-fee-card-icon-wrap svg {
        max-width: 24px;
    }
    .hc-price-fee-card-header {
        position: relative;
        height: auto;
    }
    .hc-price-fee-card-body {
        padding: 1rem;
    }
    .hc-price-fee-card-title {
        font-size: 16px; 
    }
    .hc-price-fee-card-notice { 
        font-size: 14px !important; 
    }
    .hc-price-fee-card-desc { 
        font-size: 16px; 
    }
    .hc-price-fee-card-desc { 
        font-size: 14px;
        line-height: 24px; 
    }
    .hc-price-feature-text {
        color: var(--hc-text-label);
        font-size: 13px;
    }
    .hc-price-btn-primary { 
        padding: 0.75rem 1rem; 
    }
}
@media (min-width: 992px) {
    .hc-bk-form__content {
        padding: 2rem 5rem;
    }
}
button#btn-discard-client i {
    top: 3px;
    position: absolute;
    left: 4px;
}

.hc-bk-form__card-title{
    margin-bottom:16px
}

.hc-bk-form__card { 
    margin-bottom: 16px;
}
.hc-bk-form__card { 
    padding: 1rem; 
}

.hc-bk-form__card-title {
    font-size: 18px; 
}
.hc-bk-form__review-card {
    margin-bottom: 10px;
}
.hc-bk-form__review-card {
   padding:16px
}

.hc-bk-form__confirm { 
    padding: 1rem 1rem!important;  
}


@media(max-width:768px){
    .hc-bk-form__role-btn i {
        font-size: 1rem;
        display: block;
        margin: 0 auto 0.5rem;
        color: var(--hc-bk-primary);
    }
    .hc-bk-form__role-btn span {
        font-weight: 500;
        font-size: 12px;
    }
    .hc-bk-form__card-title {
        font-size: 14px!important;
    }
    .hc-bk-form__card-subtitle {
        font-size: 14px; 
    }
    .hc-bk-form__add-client-btn {
        width: 100%;
        border: 2px dashed var(--hc-bk-primary);
        background: #eff6ff;
        border-radius: 0.75rem;
        padding: 10px;
        color: var(--hc-bk-primary);
        font-weight: 600;
        cursor: pointer;
        transition: background .15s;
        font-size: 14px;
        margin-bottom: 1.5rem;
    }
    .hc-bk-form__svc-name { 
        font-size: 13px; 
    }
    .toastify.on.toastify-right.toastify-bottom {
        font-size: 13px !important;
    }
    .hc-bk-form__label {
        display: block;
        font-size: 13px;
    }
    .hc-bk-form__desig-label span {
        font-size: 12px; 
    }
    .hc-bk-form__input, .hc-bk-form__select { 
        font-size: 12px; 
    }

    .flatpickr-current-month {
        font-size: 14px; 
    }
    .hc-bk-form__review-card-title { 
        font-size: 16px; 
    }
    .hc-bk-form__util-check span { 
        line-height: 20px;
    }
    .hc-bk-form__review-card h3 {
        font-size: 16px !important;
        line-height: 26px !important;
    }
    .hc-bk-form__review-card h3 {
        font-size: 16px !important;
        line-height: 26px !important;
        margin-bottom: 5px !important;
    }
    .hc-bk-form__confirm-title {
        font-size: 16px; 
    }
    .hc-bk-form__confirm-icon {
        width: 40px;
        height: 40px; 
    }
        .hc-bk-form__confirm-icon i {
            font-size: 19px;
        }
    .hc-bk-form__confirm-icon {
        width: 45px;
        height: 45px; 
    }
    .hc-bk-form__confirm-subtitle {
        font-size: 14px; 
        margin-bottom: 1rem;
    }
    .hc-bk-form__confirm-details h4 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: #fff;
        font-size: 16px;
    }
    .hc-bk-form__confirm-details p {
        font-size: 12px;
        margin-bottom: 0.5rem;
    }
    .hc-bk-form__next-steps h4 { 
        font-size: 16px;
    }
    .hc-bk-form__next-steps h4 { 
        font-size: 16px;
    }
    .footer-layouting img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }
    .hc-service-hero-eyebrow {
        font-size: 14px; 
    }
    .hc-service-hero-heading {
        font-size: 18px;
    }
}

@media (max-width: 568px) {
    .hc-hero-title {
        font-size: 30px;  
        max-width: 700px;
        line-height: 35px;
    }
    .hc-hero-desc { 
        font-size: 16px;
        line-height: 24px;
        max-width: 640px;
    }
    .hc-btn-primary {
        padding: 12px 20px; 
        font-size: 16px;
    }
    .hc-stat-number {
        font-size: 1.5rem; 
    }
    .hc-fast-report-title {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (min-width: 768px) {
    .hc-service-hero {
        position: relative;
        height: 350px !important;
        overflow: hidden;
    }
}

.service-modal-popup .modal-content button.btn-close {
    position: absolute;
    right: 20px;
    color: #fff !important;
    top: 15px;
}

.hc-navbar.hc-scrolled {
    -webkit-backdrop-filter: blur(12px);
}

.inspection-card { 
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    overflow-x: auto;
    width: fit-content;
    max-width: 80%; 
}

.inspection-heading {
    font-size: 29px;
    font-weight: 800;
    color: #0e2a4a;
    line-height: 1.25;
    margin: 0 0 16px;
}

.inspection-text {
    font-size: 17px;
    line-height: 1.8;
    color: #5f7288;
    margin: 0;
    max-width: 95%;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 992px) {
    .inspection-card {
        padding: 28px;
        max-width: 100%;
    }

    .inspection-heading {
        font-size: 28px;
    }

    .inspection-text {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .inspection-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .inspection-heading {
        font-size: 24px;
    }

    .inspection-text {
        font-size: 16px;
        line-height: 1.6;
    }
}

.inspection-heading {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
}

.inspection-text {
    font-size: 20px;
    line-height: 1.8;
    color: #fff;
    margin: 0;
    max-width: 95%;
    font-weight: 400;
    word-break: break-word;
    width: 100%;
    white-space: normal;
}
.inspection-heading {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
    white-space: normal !important;
    width: 100%;
}
.inspection-card {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(270deg, #00000000, #05549e);
    padding: 20px !important;
    border-radius: 8px;
    white-space: normal;
    overflow-x: auto;
    width: 56%;
    min-width: auto !important;
    max-width: 80%;
}

@media(max-width:768px){
 
    .inspection-card {
        width: 100%;
    }
    .inspection-heading {
        font-size: 18px; 
        line-height: 1.5; 
    }
    .inspection-text {
        font-size: 16px; 
    }
    .inspection-card {
        display: block;
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        background: linear-gradient(358deg, #0000006e, #05549e);
        padding: 20px !important;
        border-radius: 8px;
        white-space: normal;
        overflow-x: auto;
        width: 100%;
        text-align: center;
        min-width: auto !important;
        max-width: 100%;
    }
    .inspection-text {
        font-size: 16px;
        line-height: 1.8;
        color: #fff;
        margin: 0;
        max-width: 95%;
        font-weight: 400;
        word-break: break-word;
        width: 100%;
        white-space: normal;
    }
}

.hc-bk-form__add-client-btn {
    width: 100%;
    border: 2px solid var(--hc-bk-primary);
    background: #eff6ff9c;
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--hc-bk-primary);
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    font-size: 16px; 
}

    .hc-bk-form__add-client-btn:hover {
        background: #05549e;
        color: #fff
    }
.hc-bk-form__pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 14px;
    margin-top: 14px;
}

.hc-bk-form__pkg-card {
    position: relative;
    border: 1px solid #d8dee8;
    border-radius: 14px;
    background: #fff;
    padding: 5px 10px;
    text-align: left;
    transition: .2s ease;
    cursor: pointer;
}

    .hc-bk-form__pkg-card:hover {
        border-color: #0d6efd;
        box-shadow: 0 6px 18px rgba(0,0,0,.08);
        transform: translateY(-2px);
    }

.hc-bk-form__pkg-card--featured {
    border: 2px solid #0d6efd;
    background: #f8fbff;
}

.hc-bk-form__pkg-badge {
    font-size: 12px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 8px;
}

.hc-bk-form__pkg-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.hc-bk-form__pkg-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.hc-bk-form__pkg-note {
    font-size: 13px;
    color: #198754;
    font-weight: 600;
}
a.hc-btn-book.ms-4.btn-fixed-contact {
    position: fixed;
    z-index: 99999;
    right: 10px;
    left: auto;
    background: #05549e;
    top: auto;
    bottom: 30px;
    margin: !important;
    box-shadow: 10px 10px 50px #0000001c;
    padding: 5px 20px;
    font-size: 14px;
}

@media(min-width:768px){
    a.hc-btn-book.ms-4.btn-fixed-contact {
        display:none
    }
}

.hc-custom-service-cards.hc-custom-service-mold:hover .icon-card path, .hi-card:hover .icon-card path, .terminal-card:hover .icon-card path, .hc-custom-service-cards.sci:hover .icon-card path, .septic-iconsection:hover .icon-card path, .wt:hover .icon-card path {
    fill: #fff !important;
}

.hc-custom-service-cards .icon-card svg {
    width: 50px;height:auto

}
.hc-custom-service-cards.terminal-card svg, .hc-custom-service-cards.sci svg, .wt svg {
    width: 30px;
}
