:root {
  --brand: #f5b800;
  --brand-hov: #e0a800;
  --brand-dim: rgba(245, 184, 0, 0.12);
  --brand-ring: rgba(245, 184, 0, 0.28);

  --grad-h1: linear-gradient(90deg, #5b8dee 0%, #c850c0 55%, #ff6b6b 100%);

  --footer-border: linear-gradient(
    90deg,
    #fdc700 0%,
    #51a2ff 50%,
    #fb64b6 100%
  );
  --footer-bg: linear-gradient(
    90deg,
    #0d1f35 0%,
    #0c1d32 20%,
    #0b1b2f 40%,
    #0b192c 60%,
    #0a1729 80%,
    #091526 100%
  );

  --navy: #1e3a5f;
  --navy-2: #253357;
  --navy-card: rgba(255, 255, 255, 0.06);
  --navy-bdr: rgba(255, 255, 255, 0.12);

  --white: #ffffff;
  --off-white: #f8f9fc;

  --calc-bg: #eef2ff;
  --calc-card: #ffffff;

  --t1: #111827;
  --t2: #374151;
  --t3: #6b7280;
  --t4: #9ca3af;

  --nt1: #ffffff;
  --nt2: rgba(10, 45, 109, 1);
  --nt3: rgba(255, 255, 255, 0.5);

  --bdr: #e5e8f0;
  --bdr-2: #d0d5e8;

  --sh: 0 2px 12px rgba(0, 0, 0, 0.07);
  --sh-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --sh-form: 0 20px 60px rgba(0, 0, 0, 0.18);
  --sh-btn: 0 4px 16px rgba(245, 184, 0, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--t1);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img,
video,
iframe,
svg,
canvas,
object,
embed {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--brand);
  color: #000;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 99px;
}

.hero-h1 {
  font-size: clamp(2.6rem, 3.2vw, 4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.hero-h1-line1 {
  color: var(--white);
  display: inline;
}
.hero-h1-line2 {
  display: inline;
  background: var(--grad-h1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h2-dark {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--t1);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.h2-light {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.sub-dark {
  color: var(--t3);
  font-size: 0.9rem;
  line-height: 1.65;
}

.sub-light {
  color: var(--nt2);
  font-size: 0.9rem;
  line-height: 1.65;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
/* .badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
} */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  font-weight: 700;
  font-size: 0.825rem;
  letter-spacing: 0.01em;
  padding: 0.68rem 1.6rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.18s,
    transform 0.14s,
    box-shadow 0.18s,
    border-color 0.18s,
    color 0.18s;
}
.btn:active {
  transform: none !important;
}

.btn-yellow {
  background: var(--brand);
  color: #000;
  box-shadow: var(--sh-btn);
}
.btn-yellow:hover {
  background: var(--brand-hov);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 184, 0, 0.4);
}

.btn-outline-light {
  background: transparent;
  color: var(--t2);
  border: 1.5px solid var(--bdr-2);
}
.btn-outline-light:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-dim);
}

.btn-outline-navy {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.btn-outline-navy:hover {
  border-color: var(--brand);
  background: var(--brand-dim);
  color: var(--brand);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
}

.f-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.f-input {
  width: 100%;
  background: #f5f7fa;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  color: var(--t1);
  font-size: 0.875rem;
  padding: 0.425rem 0.9rem;
  outline: none;
  font-family: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.f-input::placeholder {
  color: #a0aec0;
  font-size: 0.775rem;
}
.f-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-ring);
}
textarea.f-input {
  resize: vertical;
  min-height: 90px;
}

.cf-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.cf-input {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--bdr);
  border-radius: 9px;
  color: var(--t1);
  font-size: 0.875rem;
  padding: 0.72rem 1rem;
  outline: none;
  font-family: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.cf-input::placeholder {
  color: var(--t4);
}
.cf-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-ring);
}
textarea.cf-input {
  resize: vertical;
  min-height: 110px;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s,
    border-color 0.3s,
    backdrop-filter 0.3s;
}
.nav-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--nt2);
  font-size: 0.88rem;
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  border-radius: 7px;
  white-space: nowrap;
  transition:
    color 0.2s,
    background 0.2s;
  font-weight: 600;
}
.nav-contact-link:hover {
  color: var(--brand);
  background: var(--brand-dim);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--bdr);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
#navbar.scrolled .nav-contact-link {
  color: var(--t3);
}
#navbar.scrolled .nav-contact-link:hover {
  color: var(--brand);
}

#hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    ellipse 65% 55% at 70% 48%,
    rgba(91, 141, 238, 0.14) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--nt3);
  margin-top: 0.2rem;
}

/*Hero BG Video CSS*/

#hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  z-index: -2;

  filter: brightness(0.5) blur(2px);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--sh-form);
}
.badge-pill {
  display: block;
  align-items: center;
  background: var(--brand);
  color: #000;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.form-card h3 {
  color: var(--t1);
  font-size: 0.975rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
}
.form-card > p {
  color: var(--t3);
  font-size: 0.8rem;
  margin: 0 0 1.1rem;
}

.marquee-wrap {
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.marquee-track {
  display: flex;
  gap: 12px;
  align-items: center;
  width: max-content;
  animation: marquee 44s linear infinite;
  will-change: transform;
}
.marquee-track.rev {
  animation-direction: reverse;
  animation-duration: 44s;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.logo-box {
  flex: 0 0 auto;
  width: 237.5px;
  height: 146px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  overflow: hidden;
}
.logo-box:hover {
  border-color: var(--brand-ring);
  box-shadow: 0 4px 16px rgba(245, 884, 0, 0.18);
  transform: translateY(-2px);
}
.logo-box svg,
.logo-box img {
  max-width: calc(192.5px - 32px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s;
}
.filter-tab:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.filter-tab.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #000;
  font-weight: 700;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.port-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid var(--bdr);
  aspect-ratio: 16/9;
  background: var(--off-white);
  transition:
    transform 0.28s,
    border-color 0.28s,
    box-shadow 0.28s;
}
.port-item:hover {
  transform: translateY(-4px);
  border-color: var(--brand-ring);
  box-shadow: 0 8px 28px rgba(245, 184, 0, 0.18);
}
.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.port-item:hover img {
  transform: scale(1.06);
}
.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.28s;
}
.port-item:hover .port-overlay {
  opacity: 1;
}

.calc-step {
  display: none;
  animation: fadeSlide 0.28s ease;
}
.calc-step.active {
  display: block;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bdr-2);
  background: #fff;
  color: var(--t3);
  font-weight: 800;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.22s;
}
.step-dot.done {
  background: var(--brand);
  border-color: var(--brand);
  color: #000;
}
.step-dot.cur {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-dim);
}
.step-line {
  flex: 1;
  height: 2px;
  background: var(--bdr);
  transition: background 0.3s;
  min-width: 8px;
}
.step-line.done {
  background: var(--brand);
}

.opt-btn {
  border: 1.5px solid var(--bdr);
  border-radius: 10px;
  background: #fff;
  color: var(--t1);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}
.opt-btn:hover {
  border-color: var(--brand);
}
.opt-btn.active {
  border-color: var(--brand);
  background: var(--brand-dim);
  box-shadow: 0 0 0 3px var(--brand-ring);
}

.estimate-panel {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 88px;
  box-shadow: var(--sh-lg);
}
.est-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}

.svc-card {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sh);
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.svc-card:hover {
  border-color: var(--brand-ring);
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(245, 184, 0, 0.14);
}
.svc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 184, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s;
  pointer-events: none;
}
.svc-card:hover .svc-play-btn {
  opacity: 1;
}

.vid-card-grad {
  display: none;
}
.vid-play {
  display: none;
}

.review-card {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: var(--sh);
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  transition: all 0.2s ease-in-out;
}
.review-stars {
  color: var(--brand);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.review-quote {
  color: var(--t1);
  font-weight: 700;
  font-size: 0.92rem;
  margin: 0 0 0.6rem;
  line-height: 1.45;
}

.review-text {
  color: var(--t3);
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0 0 1.1rem;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--bdr);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-name {
  color: var(--t1);
  font-weight: 700;
  font-size: 0.875rem;
}

.review-role {
  color: var(--t3);
  font-size: 0.7rem;
}

/* featured == true */

.review-card.featured,
.review-card:hover {
  background: var(--feature-color, var(--navy));

  transform: translateY(-3px);
}

.review-card.featured .review-quote,
.review-card:hover .review-quote,
.review-card.featured .review-name,
.review-card:hover .review-name {
  color: #fff;
}

.review-card.featured .review-text,
.review-card:hover .review-text,
.review-card.featured .review-role,
.review-card:hover .review-role {
  color: rgba(255, 255, 255, 0.75);
}

.review-card.featured .review-footer,
.review-card:hover .review-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.review-card.featured .review-avatar,
.review-card:hover .review-avatar {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bdr-2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.slider-dot.active {
  background: var(--brand);
  transform: scale(1.3);
}
.slider-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--bdr);
  box-shadow: var(--sh-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  z-index: 2;
  transition:
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.slider-arrow:hover {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 4px 16px rgba(245, 184, 0, 0.25);
}
.slider-arrow.prev {
  left: -30px;
}
.slider-arrow.next {
  right: -30px;
}

.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  min-width: 78px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.award-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--brand-ring);
  transform: translateY(-2px);
}

.proc-card {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sh);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.proc-card:hover {
  border-color: var(--brand-ring);
  transform: translateY(-4px);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 20s linear infinite;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--brand-ring);
  transform: translateX(4px);
}
.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--brand-dim);
  border: 1px solid var(--brand-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}
.contact-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--sh-lg);
}

#modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
#modal-box {
  background: #fff;
  border-radius: 33px;
  width: 100%;
  max-width: 560px;
  max-height: 92svh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  color: var(--t1);
}
#modal-overlay.open #modal-box {
  transform: none;
}

#yt-overlay,
#video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#yt-overlay.open,
#video-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

.slider-container {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
}

.review-card,
.video-card {
  flex: 0 0 calc((100% - 40px) / 3); /* desktop */
}

/*footer code link popup*/
.info-code {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip {
  position: absolute;
  bottom: 125%; /* Above the code */
  left: 50%;
  transform: translateX(-50%);

  background: white;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  white-space: nowrap;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s;
}

.info-code:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}
.pulse-dot {
  animation: pulse-dot 1.5s ease infinite;
}

@media (max-width: 1024px) {
  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .estimate-panel {
    position: static;
  }
  .review-card,
  .video-card {
    flex: 0 0 calc(50% - 10px);
  }
  .slider-arrow.prev {
    left: -14px;
  }
  .slider-arrow.next {
    right: -14px;
  }
}
@media (max-width: 768px) {
  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-num {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.67rem;
  }
}

@media (max-width: 640px) {
  .port-grid {
    grid-template-columns: 1fr;
  }
  .logo-box svg,
  .logo-box img {
    max-width: calc(142.5px - 32px);
  }
  .hero-h1 {
    /* font-size: clamp(2rem, 10vw, 2.8rem) !important; */
  }
  .est-price {
    font-size: 2.2rem;
  }
  .form-card {
    padding: 2rem 0rem;
  }
  .logo-box {
    width: 160px;
    height: 100px;
    padding: 12px;
  }
  .review-card,
  .video-card {
    flex: 0 0 100%;
  }
  .slider-arrow {
    display: none;
  }
}
@media (max-width: 420px) {
  .port-grid {
    gap: 0.65rem;
  }
  .step-dot {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
  }
  .step-line {
    min-width: 4px;
  }
}
