/* ========================================================
   LEAPSURGE BI — Complete Responsive Stylesheet v4
   Fonts: Archivo Black (hero heading), DM Sans (body)
   Primary Blue: #236bfb
   Heading: #000000 | Paragraph: #8a8a8a
   ======================================================== */

@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@300;400;500;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-main: #236bfb;
  --blue-light: rgba(35, 107, 251, 0.12);
  --hero-bg: linear-gradient(135deg, #1a3acc 0%, #2563eb 45%, #3b8ef8 100%);
  --nav-bg: #000000;
  --nav-height: 56px;
  --nav-height-real: 56px;
  --white: #ffffff;
  --text-dark: #000000;
  --text-muted: #8a8a8a;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body,
input,
select,
textarea {

  font-family: var(--font-body);
  color: var(--text-dark);
  overflow-x: hidden;
}

button {
  font-family: var(--font-body);
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.blue-text {
  color: var(--blue-main);
}

/* From About to Footer: force DM Sans for titles and paragraph text */
#empower :is(h1, h2, h3, h4, h5, h6, p),
#features :is(h1, h2, h3, h4, h5, h6, p),
#customers :is(h1, h2, h3, h4, h5, h6, p),
#testimonials :is(h1, h2, h3, h4, h5, h6, p),
#faq :is(h1, h2, h3, h4, h5, h6, p),
#contact :is(h1, h2, h3, h4, h5, h6, p) {
  font-family: var(--font-body);
}


/* ================================================
   NAVBAR
   ================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

#navbar {
  background: var(--nav-bg);
  min-height: var(--nav-height);
  width: 100%;
  padding: 10px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.3s;
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

#navbar .container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

#navbar .navbar-brand {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

#navbar .navbar-brand img {
  display: block;
  width: auto;
  height: 32px;
  max-width: 240px;
  object-fit: contain;
  margin: 0;
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 16px !important;
  position: relative;
  transition: color 0.25s;
  font-family: var(--font-body);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-custom:hover::after {
  width: 0;
}

.nav-link-custom:hover {
  color: #236bfb !important;
}

.nav-btn-contact {
  color: white !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 7px 24px !important;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.nav-btn-contact:hover {
  background: white;
  color: var(--blue-main) !important;
  border-color: white;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* ================================================
   HERO SECTION
   ================================================ */

/* Hero Section and it Media Query  */
.hero-section {
  background-image: url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Background-image.svg");
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: -18%;
  min-height: 100vh;
  padding-top: 0 !important;
  height: 100%;
  width: 100%;
  background-size: 100% 100%;
  position: relative;
}

.hero-wrap {
  margin-right: 0;
  margin-left: 0;
  min-height: 100vh;
  /* ← row must also stretch full height */
  /* override Bootstrap's align-items-start */
}

.hero-chat-img img {
  width: 20%;
  height: auto;
  display: block;
  margin-left: 1rem;
  margin-top: 28rem;
  opacity: 0;
  transform: translateY(-1.5rem);
  transition: transform 0.60s ease-in-out, opacity 0.60s ease-in-out;
}

.hero-section.in-view .hero-chat-img img {
  opacity: 1;
  transform: translateY(0);
}

.hero-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.8rem;
  color: #fff;
  margin-top: 1rem;
  line-height: 3.7rem;
  width: 100%;
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  margin-top: 1rem;
}

.hero-button {
  font-family: var(--font-body);
}

.btn-get-started {
  border: #000;
  background-color: #000;
  color: #fff;
  transition: all 0.2s ease-in-out;
  margin-right: 1rem;
}

.btn-get-started:hover {
  color: black;
  background-color: #fff;

}

.btn-book-demo {
  border: 1px solid;
  border-color: #ffffff;
  background-color: #00000000;
  color: #fff;
  transition: all 0.2s ease-in-out;

}

.btn-book-demo:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #000000;
}

/* right */

/* Fix the right column to be a positioning context */
/* .hero-right {
  position: relative;
  padding: 0 !important;
  align-self: stretch;
  min-height: 100%;
} */

.right-dash-wrapper {
  position: relative;
  width: 100%;
  max-width: 20rem;
  min-height: 60rem;
}

.hero-dashboard-main {
  position: absolute;
  top: 18rem;
  max-width: calc(100% + 26rem);
  left: 5rem;
  height: auto;
  transform-origin: top left;
  transform: rotate(-4deg);
  transition: all 0.60s ease-in-out;
}

.hero-dashboard-main.is-hover-locked {
  transform: rotate(1deg);
}

.hero-section.in-view .hero-dashboard-main {
  transform: rotate(1deg);
}

.hero-male-img {
  position: absolute;
  top: 46rem;
  width: 24%;
  left: 8rem;
  height: auto;
  opacity: 0;
  transform: translateY(6rem);
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.hero-section.in-view .hero-male-img {
  opacity: 1;
  transform: translateY(0);
}

.hero-female-img {
  position: absolute;
  top: 22rem;
  margin-left: 35rem;
  width: 26%;
  opacity: 0;
  transform: translateX(6rem);
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.hero-section.in-view .hero-female-img {
  opacity: 1;
  transform: translateX(0);
}

.hero-male-2-img {
  position: absolute;
  margin-top: 1rem;
  width: 26%;
  margin-left: 42rem;
  opacity: 0;
  transform: translateX(6rem);
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.hero-section.in-view .hero-male-2-img {
  opacity: 1;
  transform: translateX(0);
}

.hero-male-bubble {
  position: absolute;
  margin-top: -7rem;
  margin-left: -2rem;
  width: 50%;
  z-index: 2;
  opacity: 0;
  transform: translateY(-1.5rem);
  transition: transform 0.60s ease-in-out, opacity 0.60s ease-in-out;
}

.hero-female-bubble {
  position: absolute;
  top: 22rem;
  margin-left: 24rem;
  width: 50%;
  opacity: 0;
  transform: translateY(-1.5rem);
  transition: transform 0.60s ease-in-out, opacity 0.60s ease-in-out;
}

.hero-male-2-bubble {
  margin-top: 1.5rem;
  margin-left: 31rem;
  width: 50%;
  position: absolute;
  z-index: 4;
  opacity: 0;
  transform: translateY(-1.5rem);
  transition: transform 0.60s ease-in-out, opacity 0.60s ease-in-out;
}

.hero-section.in-view .hero-male-bubble,
.hero-section.in-view .hero-female-bubble,
.hero-section.in-view .hero-male-2-bubble {
  opacity: 1;
  transform: translateY(0);
}

.hero-analytics-icon {
  position: absolute;
  width: 80%;
  margin-top: 5rem;
  margin-left: 34rem;
  z-index: 2;
}


/* ================================================
   EMPOWER SECTION
   ================================================ */
.empower-section {
  background: #ffffff;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.empower-inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.empower-heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #000000;
  text-align: center;
  width: 100%;
  margin-top: 100px;
}

.emp-icon-img {
  position: absolute;
  width: 6%;
  height: 192px;
  object-fit: contain;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.35s;
}

.empower-inner:hover .emp-icon-img,
.empower-inner:focus-within .emp-icon-img,
.empower-section:is(:hover, :focus-within) .emp-icon-img,
.empower-inner:has(.empower-heading:is(:hover, :focus-visible, :active)) .emp-icon-img {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.emp-icon-1 {
  left: 4%;
  top: 18%;
}

.emp-icon-2 {
  left: 10%;
  top: 5%;
}

.emp-icon-3 {
  left: 2%;
  top: 52%;
}

.emp-icon-4 {
  left: 13%;
  top: 68%;
}

.emp-icon-5 {
  right: 10%;
  top: 5%;
}

.emp-icon-6 {
  right: 3%;
  top: 18%;
}

.emp-icon-7 {
  right: 4%;
  top: 55%;
}

.emp-icon-8 {
  right: 13%;
  top: 65%;
}

@keyframes floatA {
  from {
    transform: translateY(0px) rotate(0deg);
  }

  to {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes floatB {
  from {
    transform: translateY(0px) rotate(-1deg);
  }

  to {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes floatC {
  from {
    transform: translateY(-4px) rotate(1deg);
  }

  to {
    transform: translateY(8px) rotate(-1deg);
  }
}


/* ================================================
   FEATURES SECTION
   ================================================ */
.features-section {
  background: #ffffff;
}

.features-title {
  font-family: var(--font-body);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  padding: 12px;
}

.features-sub {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 500;
}

.features-cards-row {
  display: flex;
  gap: 14px;
  height: 440px;
  align-items: stretch;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
}

.feat-card {
  border-radius: 22px;
  background: rgba(35, 107, 251, 0.50);
  transition:
    flex 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.9s ease;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex: 0 0 10.5%;
  min-width: 0;
}

.feat-card:hover {
  background: rgba(35, 107, 251, 0.72);
  flex: 0 0 42% !important;
  background: #236bfb !important;
}

.feat-card-active {
  flex: 0 0 42% !important;
  background: #236bfb !important;
  cursor: default;
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
  z-index: 0;
}


.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.75s ease;
}

.feat-card-img-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  height: 30%;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transition:
    left 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    bottom 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    width 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    height 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.65s ease,
    visibility 0s linear 0.65s;
}

.feat-card-img {
  display: block;
  width: 100%;
  height: 120%;
  object-fit: contain;
  pointer-events: none;
}

.feat-card-active .feat-card-img-wrap,
.feat-card:hover .feat-card-img-wrap {
  left: 0;
  bottom: 0;
  transform: none;
  width: 46%;
  height: 92%;
  max-width: 340px;
  opacity: 1;
  visibility: visible;
}

.feat-card-active .feat-card-img {
  width: 75%;
  height: 106%;
  object-fit: contain;
  object-position: bottom left;
}

.feat-card-side-title {
  position: absolute;
  top: 34%;
  left: 50%;
  right: auto;
  width: 290px;
  max-width: none;
  margin-left: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--font-body);
  font-size: clamp(22px, 1.35vw, 21px);
  font-weight: 800;
  color: #fff;
  text-align: left;
  white-space: normal;
  line-height: 1.18;
  padding-left: 10px;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    font-size 0.45s ease,
    opacity 0.35s ease;
}

.feat-card:hover .feat-card-side-title,
.feat-card-active .feat-card-side-title {
  top: 46px;
  left: 18px;
  right: 18px;
  width: auto;
  max-width: calc(100% - 36px);
  margin-left: 0;
  transform: none;
  font-size: clamp(18px, 1.8vw, 30px);
  font-weight: 900;
  text-align: left;
  white-space: normal;
  line-height: 1.18;
  padding-right: 0;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s, 0s;
}

.feat-card-inner {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.feat-card-active .feat-card-inner {
  pointer-events: auto;
}

.feat-card-desc {
  position: absolute;
  top: 100px;
  left: 30px;
  right: auto;
  max-width: 360px;
  margin: 0;
  z-index: 3;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 14px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.45;
  display: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  filter: none;
  clip-path: none;
  pointer-events: none;
  will-change: auto;
  transition: none !important;
  animation: none !important;
}

.feat-card:hover .feat-card-desc,
.feat-card-active .feat-card-desc {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: none;
  filter: none;
  clip-path: none;
  pointer-events: auto;
  transition-delay: 0s;
  animation: none !important;
}

.feat-card:hover::after,
.feat-card-active::after {
  opacity: 0.56;
  animation: featDarkPulse 1.15s ease forwards;
}

@keyframes featDarkPulse {
  0% {
    opacity: 0.56;
  }

  55% {
    opacity: 0.56;
  }

  100% {
    opacity: 0.28;
  }
}

.feat-number {
  position: absolute;
  bottom: -32px;
  right: 2px;
  font-family: var(--font-body);
  font-size: clamp(160px, 20vw, 320px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.86);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.feat-card:hover .feat-number,
.feat-card-active .feat-number {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.18s,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.18s,
    visibility 0s linear 0.18s;
}

.feat-mobile-dots {
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.feat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(35, 107, 251, 0.28);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
  display: none !important;
}

.feat-dot.active {
  background: #236bfb;
  width: 26px;
  border-radius: 5px;
  display: none !important;
}


/* ================================================
   CUSTOMERS SECTION
   ================================================ */
.customers-section {
  background: white;
  padding: 80px 0;
}

.customers-title {
  font-family: var(--font-body);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #000000;
}

.customers-sub {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--text-muted);
  line-height: 1.2;
  font-weight: 400;
}

.customers-logo-wall {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.logo-strip-wrapper {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}

.logo-strip-wrapper::before,
.logo-strip-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.logo-strip-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.logo-strip-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.logo-strip {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLogos 60s linear infinite;
}

.logo-strip:hover {
  animation-play-state: paused;
}

@media (hover: hover) and (pointer: fine) {
  .customers-section .logo-strip:hover {
    animation-play-state: running;
  }
}

.logo-strip-reverse {
  animation-name: scrollLogosReverse;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollLogosReverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 180px;
  height: 86px;
  padding: 0 8px;
  background: #fff;
  border-radius: 12px;
}

.customer-logo-img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.82;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo-item:hover .customer-logo-img {
  transform: scale(1.04);
  opacity: 1;
}


/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
  background: url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Testimonials BG.svg") center / cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  height: 80vh;
}

.testimonials-section .row>.position-relative {
  position: relative !important;
  margin-top: -10px;
}

.testi-heading {
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.testi-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.testi-nav-btns {
  display: flex;
  gap: 12px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 25%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-btn:hover {
  background: white;
  color: var(--blue-main);
}

.testi-ropes {
  display: flex;
  justify-content: space-around;
  padding: 0 40px;
}

.testi-rope {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
}

.testi-card-wrapper {
  position: relative;
  transform: rotate(-4deg);
  width: 86%;
}

.testi-card-wrapper::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 18px;
  right: 6px;
  bottom: -10px;
  border-radius: 16px;
  background: #c9d7ff;
  box-shadow: 0 10px 24px rgba(20, 58, 144, 0.28);
  z-index: 1;
  pointer-events: none;
}

.testi-card {
  background: white;
  border-radius: 16px;
  padding: 48px 72px 14px 52px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: none;
  transform: rotate(0deg);
  width: 95%;
  margin-left: 20px;
  margin-top: 74px;
  height: 288px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.test-rope::before {
  content: '';
  position: absolute;
  top: -180px;
  right: 14px;
  width: 3px;
  height: 190px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 9px 0 0 rgba(255, 255, 255, 0.56);
  z-index: 0;
  pointer-events: none;
}

.testi-card.fade-out {
  opacity: 1;
  transform: rotate(-3deg);
}

.testi-quote {
  font-size: 40px;
  width: 1em;
  height: 1em;
  color: #F59E0B;
  line-height: 1;
  margin-bottom: 10%;
}

.testi-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
  margin-top: -40px;
  transition: opacity 0.28s ease, transform 0.28s ease;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testi-text::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.testi-author {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin: 0;
  margin-bottom: 45px;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.testi-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: #9CA3AF;
  margin: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.testi-content-fade {
  opacity: 0;
  transform: translateY(8px);
}


/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
  background: white;
}

.faq-heading {
  font-family: var(--font-body);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
}

.faq-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
}

.faq-lady {
  display: flex;
  justify-content: flex-start;
}

.faq-illustration {
  width: min(100%, 348px);
  height: auto;
  display: block;
  margin-left: 332px;
  z-index: 1;
  padding: 66px;
  margin-top: 70px;
}

.faq-card-ropes {
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
}

.faq-rope {
  width: 2px;
  height: 96px;
  background: #CBD5E1;
  margin-left: 25%;
  margin-top: -60px;
  margin-right: 6px;
}

.faq-hanging-card {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 16px;
  padding: 80px;
  position: relative;
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.08);
  width: 80%;
  margin-left: 20%;
  height: 496px;
  overflow: hidden;
}

.faq-pin {
  position: absolute;
  top: 1px;
  width: 14px;
  height: 14px;
  background: #CBD5E1;
  border-radius: 50%;
  border: 2px solid #94A3B8;
}

.faq-pin-left {
  left: 58px;
}

.faq-pin-right {
  right: 64px;
}

.faq-item-custom {
  border-bottom: 1px solid #DBEAFE;
  padding: 14px 0;
}

.faq-item-custom:last-child {
  border-bottom: none;
}

.faq-q-btn {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  transition: color 0.25s;
}

.faq-q-btn:hover {
  color: var(--blue-main);
}

.faq-q-btn::after {
  content: "\25BE";
  flex-shrink: 0;
  font-size: 44px;
  line-height: 1;
  color: #2563eb;
  transform: rotate(180deg);
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-q-btn.collapsed::after {
  transform: rotate(0deg);
  color: #64748b;
}

.faq-answer {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 8px;
  padding-left: 16px;
}

.faq-illustration,
.faq-hanging-card {
  animation: none !important;
  transform: none !important;
}

.faq-hanging-card .accordion {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}


/* ================================================
   FOOTER
   ================================================ */
.footer-section {
  background: #0b1017 url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Footer_BG.svg") center bottom / cover no-repeat !important;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  color: white;
  padding: 0;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: inherit !important;
  z-index: 0;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding: 62px 94px 40px;
  display: grid;
  grid-template-columns: 1.9fr 0.85fr 1.15fr;
  row-gap: 52px;
  gap: 84px;
  align-items: start;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}

.footer-logo-img {
  height: 24px;
  width: auto;
  transform: none;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  max-width: 360px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: white;
  margin-bottom: 24px;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 0;
}

.footer-nav-links a {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-nav-links a:hover {
  color: white;
}

.footer-contact-item {
  margin-bottom: 22px;
}

.footer-contact-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: white;
  margin-bottom: 8px;
}

.footer-contact-val {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  text-decoration: none;
  display: block;
  transition: color 0.25s;
}

.footer-contact-item a[href^="mailto"] {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.footer-contact-val:hover {
  color: white;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  line-height: 1.35;
  grid-column: 1 / 2;
  align-self: end;
}

.footer-social-links {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  grid-column: 3 / 4;
  align-self: end;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s, transform 0.25s;
}

.footer-social-links a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.social-icon-img-insta {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.social-icon-img-facebook {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.social-icon-img-linkedin {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  width: 80%;
}

.social-icon-img-x {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  width: 66%;
}

.footer-social-links a:not([aria-label="Instagram"]) .social-icon-img {
  width: 50px;
  height: 58px;
}


/* ================================================
   SCROLL ANIMATION
   ================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


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

/* ========================= 
   SMALL MOBILE (≈6 inch phones)
   max-width: 480px
   ========================= */
@media only screen and (max-width: 480px) {

  /* ── NAVBAR ── */
  #navbar .container-fluid {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  #navbar .navbar-brand img {
    height: 24px;
  }

  .nav-link-custom {
    font-size: 14px;
    padding: 8px 12px !important;
  }

  .nav-btn-contact {
    font-size: 13px;
    padding: 7px 14px !important;
    margin-top: 4px;
    display: inline-block;
  }

  /* ── EMPOWER ── */
  .empower-inner {
    padding: 40px 16px 44px;
  }

  .empower-heading {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0;
  }

  .emp-icon-img {
    width: 11%;
    height: 52px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .emp-icon-1 {
    left: 1%;
    top: 6%;
  }

  .emp-icon-2 {
    left: 14%;
    top: 0%;
  }

  .emp-icon-3 {
    left: 0%;
    top: 55%;
  }

  .emp-icon-4 {
    left: 12%;
    top: 74%;
  }

  .emp-icon-5 {
    right: 14%;
    top: 0%;
  }

  .emp-icon-6 {
    right: 1%;
    top: 6%;
  }

  .emp-icon-7 {
    right: 0%;
    top: 55%;
  }

  .emp-icon-8 {
    right: 12%;
    top: 74%;
  }

  /* ── FEATURES ── */
  .features-section .container-fluid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .features-title {
    font-size: clamp(20px, 7vw, 28px);
  }

  .features-sub {
    font-size: 13px;
  }

  .features-cards-row {
    flex-direction: column;
    height: auto;
    gap: 0;
  }

  .feat-card {
    width: 100%;
    height: 340px;
    display: none;
    border-radius: 14px;
    flex: none !important;
  }

  .feat-card.feat-card-active,
  .feat-card.feat-card-mobile-active {
    display: block;
  }

  .feat-card-side-title {
    top: 24px;
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
    font-size: clamp(18px, 6vw, 24px);
    opacity: 1;
    visibility: visible;
  }

  .feat-card-desc {
    top: 80px;
    left: 16px;
    right: 16px;
    font-size: 13px;
    display: block;
    max-width: none;
  }

  .feat-card-img-wrap {
    left: 0;
    bottom: 0;
    transform: none;
    width: 48%;
    height: 52%;
    max-width: 180px;
    opacity: 1;
    visibility: visible;
  }

  .feat-mobile-dots {
    display: flex !important;
    margin-top: 14px;
  }

  .feat-dot,
  .feat-dot.active {
    display: block !important;
  }

  /* ── CUSTOMERS ── */
  .customers-section .container-fluid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .customers-title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .customers-sub {
    font-size: 13px;
    line-height: 1.5;
  }

  .logo-item {
    min-width: 110px;
    height: 58px;
  }

  .customer-logo-img {
    max-width: 90px;
  }

  .logo-strip-wrapper::before,
  .logo-strip-wrapper::after {
    width: 40px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Testimonials-BG-mobile.svg") center / cover no-repeat !important;
    height: auto;
    padding: 44px 0 56px;
  }

  .testimonials-section .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .testimonials-section .row {
    flex-direction: column;
  }

  .testi-heading {
    font-size: clamp(20px, 6.5vw, 28px);
  }

  .testi-card-wrapper {
    width: 100%;
    transform: rotate(-2deg);
    margin-top: 28px;
  }

  .testi-card {
    padding: 36px 20px 16px 20px;
    height: auto;
    min-height: 180px;
    margin-left: 4px;
    margin-top: -2rem;
    width: 96%;
  }

  /* ── FAQ ── */
  .faq-section .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .faq-section .row {
    flex-direction: column;
  }

  .faq-section .col-lg-4,
  .faq-section .col-lg-8 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .faq-heading {
    font-size: 1rem;
    text-align: center;
  }

  .faq-sub {
    text-align: center;
    margin-top: 6px !important;
    font-size: 10px !important;
  }

  .faq-illustration {
    display: none;
  }

  .faq-card-ropes {
    display: none;
  }

  .faq-hanging-card {
    padding: 36px 20px 20px;
    width: 100%;
    margin-left: 0;
    height: auto;
    min-height: 280px;
  }

  .faq-pin-left {
    left: 28px;
    display: none;
  }

  .faq-pin-right {
    right: 28px;
    display: none;
  }

  /* ── FOOTER ── */
  .footer-section {
    background: #0b1017 url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/FOOTER_Tab_BG.svg") center bottom / cover no-repeat !important;
  }

  .footer-inner {
    padding: 40px 20px 32px;
    grid-template-columns: 1fr;
    gap: 24px;
    row-gap: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand-desc {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.5;
  }

  .footer-copy {
    grid-column: 1 / -1;
    font-size: 11px;
    text-align: center;
  }

  .footer-social-links {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 20px;
    margin-top: 4px;
  }

  .social-icon-img-insta,
  .social-icon-img-facebook,
  .social-icon-img-linkedin,
  .social-icon-img-x {
    width: 24px !important;
    height: 24px !important;
  }
}


/* ========================= 
   LARGE MOBILE
   481px – 767px
   ========================= */
@media only screen and (min-width: 481px) and (max-width: 767.98px) {

  /* ── NAVBAR ── */
  #navbar {
    padding: 8px 0;
  }

  #navbar .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  #navbar .navbar-brand img {
    height: 26px;
  }

  .nav-link-custom {
    font-size: 14px;
    padding: 8px 12px !important;
  }

  .nav-btn-contact {
    font-size: 14px;
    padding: 8px 18px !important;
    margin-top: 6px;
    display: inline-block;
  }

  /* ── EMPOWER ── */
  .empower-section {
    margin-top: -62%;
    min-height: auto;
  }

  .empower-inner {
    width: 100%;
    padding: 52px 24px 56px;
    min-height: auto;
  }

  .empower-heading {
    font-size: 1.5rem;
    margin-top: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
  }

  .emp-icon-img {
    width: 10%;
    height: 58px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .emp-icon-1 {
    left: 1%;
    top: 6%;
  }

  .emp-icon-2 {
    left: 14%;
    top: 0%;
  }

  .emp-icon-3 {
    left: 0%;
    top: 55%;
  }

  .emp-icon-4 {
    left: 12%;
    top: 74%;
  }

  .emp-icon-5 {
    right: 14%;
    top: 0%;
  }

  .emp-icon-6 {
    right: 1%;
    top: 6%;
  }

  .emp-icon-7 {
    right: 0%;
    top: 55%;
  }

  .emp-icon-8 {
    right: 12%;
    top: 74%;
  }

  /* ── FEATURES ── */
  .features-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .features-section .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .features-title {
    font-size: clamp(22px, 5.5vw, 30px);
    padding: 6px;
    line-height: 1.2;
  }

  .features-sub {
    font-size: 14px;
    padding: 0 8px;
    line-height: 1.5;
  }

  .features-cards-row {
    flex-direction: column;
    height: auto;
    gap: 0;
    overflow: hidden;
    width: 70%;
  }

  .feat-card {
    flex: none !important;
    width: 100%;
    height: 400px;
    border-radius: 18px;
    display: none;
    margin-left: 0;
  }

  .feat-card.feat-card-active,
  .feat-card.feat-card-mobile-active {
    display: block;
    flex: none !important;
  }

  .feat-card.feat-hidden {
    display: none !important;
  }

  .feat-card-side-title {
    top: 28px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: calc(100% - 40px);
    transform: none;
    font-size: clamp(20px, 5vw, 26px);
    font-weight: 900;
    text-align: left;
    white-space: normal;
    line-height: 1.18;
    padding-left: 0;
    opacity: 1;
    visibility: visible;
  }

  .feat-card-active .feat-card-side-title,
  .feat-card:hover .feat-card-side-title {
    top: 28px;
    left: 20px;
    font-size: clamp(20px, 5vw, 26px);
    transform: none;
  }

  .feat-card-desc {
    top: 98px;
    left: 20px;
    right: 20px;
    max-width: none;
    font-size: 14px;
    display: block;
    line-height: 1.5;
  }

  .feat-card-img-wrap {
    left: 0;
    bottom: 0;
    transform: none;
    width: 48%;
    height: 58%;
    max-width: 240px;
    opacity: 1;
    visibility: visible;
  }

  .feat-card-active .feat-card-img-wrap,
  .feat-card:hover .feat-card-img-wrap {
    left: 0;
    bottom: 0;
    transform: none;
    width: 48%;
    height: 58%;
    max-width: 240px;
  }

  .feat-number {
    font-size: clamp(120px, 30vw, 180px);
    bottom: -16px;
    right: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .feat-card-active .feat-number,
  .feat-card:hover .feat-number {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .feat-mobile-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .feat-dot {
    display: block !important;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(35, 107, 251, 0.28);
  }

  .feat-dot.active {
    display: block !important;
    width: 26px;
    border-radius: 5px;
    background: #236bfb;
  }

  /* ── CUSTOMERS ── */
  .customers-section {
    padding: 48px 0;
  }

  .customers-section .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .customers-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .customers-sub {
    font-size: 14px;
    line-height: 1.5;
  }

  .logo-item {
    min-width: 130px;
    height: 64px;
    padding: 0 6px;
  }

  .customer-logo-img {
    max-width: 110px;
  }

  .logo-strip-wrapper::before,
  .logo-strip-wrapper::after {
    width: 60px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Testimonials.svg") center / cover no-repeat !important;
    height: auto;
    padding: 48px 0 60px;
  }

  .testimonials-section .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .testimonials-section .row {
    flex-direction: column;
  }

  .testi-heading {
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.25;
  }

  .testi-sub {
    font-size: 14px;
    margin-top: 10px !important;
    width: 85%;
    padding-bottom: 0;
    line-height: 1.6;
  }

  .testi-nav-btns {
    margin-top: 16px !important;
    display: flex;
  }

  .testi-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .testi-card-wrapper {
    width: 100%;
    transform: rotate(-2deg);
    margin-top: 28px;
  }

  .test-rope::before {
    content: '';
    position: absolute;
    top: -130%;
    right: 14px;
    width: 3px;
    height: 290px;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 9px 0 0 rgba(255, 255, 255, 0.56);
    z-index: 0;
    pointer-events: none;
  }

  .testi-card-wrapper::before {
    top: 8px;
    left: 12px;
    right: 4px;
    bottom: -8px;
    border-radius: 14px;
  }

  .testi-card {
    padding: 40px 24px 16px 24px;
    height: auto;
    min-height: 210px;
    margin-left: 8px;
    margin-top: 38px;
    width: 96%;
    border-radius: 14px;
  }

  .testi-quote {
    font-size: 38px;
  }

  .testi-text {
    font-size: 14px;
    margin-top: -3rem;
    line-height: 1.65;
  }

  .testi-author {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
  }

  /* ── FAQ ── */
  .faq-section {
    padding: 48px 0 52px;
  }

  .faq-section .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .faq-section .row {
    flex-direction: column;
  }

  .faq-section .col-lg-4,
  .faq-section .col-lg-8 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .faq-heading {
    font-size: clamp(26px, 6.5vw, 36px);
    text-align: center;
    line-height: 1.2;
  }

  .faq-sub {
    font-size: 15px;
    text-align: center;
    margin-top: 6px !important;
  }

  .faq-illustration {
    display: none;
  }

  .faq-card-ropes {
    display: flex;
    justify-content: space-around;
    gap: 90%;
    padding: 0 48px;
    margin-top: -40%;
  }

  .faq-rope {
    width: 2px;
    height: 230px;
    background: #CBD5E1;
    margin-left: 0;
    margin-top: -5rem;
    margin-right: 0;
  }

  .faq-hanging-card {
    padding: 52px 24px 24px;
    width: 100%;
    margin-left: 0;
    margin-top: -1rem;
    height: auto;
    min-height: 340px;
    border-radius: 14px;
  }

  .faq-pin {
    width: 13px;
    height: 13px;
    top: 0rem;
  }

  .faq-pin-left {
    left: 9%;
  }

  .faq-pin-right {
    right: 9%;
  }

  .faq-q-btn {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .faq-answer {
    font-size: 10px;
    line-height: 1.65;
    padding-left: 12px;
  }

  .faq-item-custom {
    padding: 2px 0;
  }

  /* ── FOOTER ── */
  .footer-section {
    background: #0b1017 url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Footer.svg") center top / cover no-repeat !important;
    min-height: 480px;
  }

  .footer-section::before {
    background-position: center top !important;
    background-size: cover !important;
  }

  .footer-inner {
    padding: 37px 22px 35px 28Px;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    row-gap: 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo-img {
    height: 22px;
  }

  .footer-logo-wrap {
    margin-bottom: 14px;
  }

  .footer-brand-desc {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.5;
  }

  .footer-col-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 14px;
  }

  .footer-nav-links {
    gap: 12px;
  }

  .footer-nav-links a {
    font-size: 14px;
  }

  .footer-contact-label {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .footer-contact-val {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-contact-item {
    margin-bottom: 14px;
  }

  .footer-social-links {
    grid-column: 1 / -1;
    justify-content: end;
    gap: 8px;
    margin-top: 6rem;
  }

  .footer-copy {
    grid-column: 1 / -1;
    font-size: 12px;
    text-align: start;
    margin-top: 4px;
  }

  .footer-social-links a:not([aria-label="Instagram"]) .social-icon-img {
    width: 34px;
    height: 58px;
  }

  .social-icon-img-insta,
  .social-icon-img-facebook {
    width: 30px !important;
    height: 30px !important;
  }

  .social-icon-img-linkedin {
    width: 30px !important;
    height: 30px !important;
  }

  .social-icon-img-x {
    width: 30px !important;
    height: 30px !important;
  }
}


/* ========================= 
   TABLETS
   768px – 991px
   ========================= */
@media only screen and (min-width: 768px) and (max-width: 991px) {

  /* ── NAVBAR ── */
  #navbar {
    min-height: 62px;
    padding: 8px 0;
  }

  #navbar .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  #navbar .navbar-brand img {
    height: 28px;
    max-width: 220px;
  }

  #navbar .navbar-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px !important;
  }

  #navMenu {
    flex-grow: 0;
  }

  .nav-link-custom {
    font-size: 13px;
    padding: 6px 0 !important;
    white-space: nowrap;
  }

  .nav-btn-contact {
    border-radius: 10px;
    font-size: 13px;
    padding: 7px 16px !important;
    white-space: nowrap;
  }


  /* ── EMPOWER ── */
  .empower-inner {
    width: 100%;
    padding: 52px 28px 60px;
  }

  .empower-heading {
    font-size: clamp(22px, 2.6vw, 28px);
    margin-top: 6%;
    line-height: 1.4;
  }

  .emp-icon-img {
    width: 8%;
    height: 80px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  /* ── FEATURES ── */
  .features-section .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .features-title {
    font-size: clamp(26px, 4vw, 36px);
  }

  .features-sub {
    font-size: 18px;
  }

  .features-cards-row {
    flex-direction: column;
    height: auto;
    gap: 0;
    width: 50%;
    margin: 0 auto;
  }

  .feat-card {
    flex: none !important;
    width: 100%;
    height: 360px;
    border-radius: 16px;
    display: none;
  }

  .feat-card.feat-card-active,
  .feat-card.feat-card-mobile-active {
    display: block;
    flex: none !important;
  }

  .feat-card.feat-hidden {
    display: none !important;
  }

  .feat-card-side-title {
    top: 30px;
    left: 24px;
    right: 24px;
    width: auto;
    max-width: calc(100% - 48px);
    transform: none;
    font-size: clamp(20px, 3.5vw, 28px);
    text-align: left;
    line-height: 1.18;
    padding-left: 0;
    opacity: 1;
    visibility: visible;
  }

  .feat-card-active .feat-card-side-title,
  .feat-card:hover .feat-card-side-title {
    top: 30px;
    left: 24px;
  }

  .feat-card-desc {
    top: 96px;
    left: 24px;
    right: 24px;
    max-width: none;
    font-size: 15px;
    display: block;
  }

  .feat-card-img-wrap {
    left: 0;
    bottom: 0;
    transform: none;
    width: 44%;
    height: 58%;
    max-width: 280px;
    opacity: 1;
    visibility: visible;
  }

  .feat-card-active .feat-card-img-wrap {
    width: 44%;
    height: 58%;
    max-width: 280px;
  }

  .feat-number {
    font-size: 160px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .feat-mobile-dots {
    display: flex !important;
    margin-top: 16px;
    justify-content: center;
  }

  .feat-dot {
    display: block !important;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(35, 107, 251, 0.28);
  }

  .feat-dot.active {
    display: block !important;
    width: 26px;
    border-radius: 5px;
    background: #236bfb;
  }

  /* ── CUSTOMERS ── */
  .customers-section {
    padding: 60px 0;
  }

  .customers-section .container-fluid {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .customers-title {
    font-size: clamp(28px, 4.5vw, 38px);
  }

  .customers-sub {
    font-size: 17px;
  }

  .logo-item {
    min-width: 150px;
    height: 72px;
  }

  .logo-strip-wrapper::before,
  .logo-strip-wrapper::after {
    width: 80px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Testimonials.svg") center / cover no-repeat !important;
    height: auto;
    padding: 60px 0 80px;
  }

  .testimonials-section .container-fluid {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .testimonials-section .row {
    flex-direction: column;
    gap: 32px !important;
  }

  .testi-heading {
    font-size: clamp(24px, 4vw, 34px);
  }

  .testi-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    width: 50%;
  }

  .testi-card-wrapper {
    width: 70%;
    transform: rotate(-3deg);
    margin-top: -20%;
    margin-left: 30%;
  }

  .testi-card {
    padding: 44px 36px 20px 36px;
    height: auto;
    min-height: 220px;
    margin-left: 12px;
    margin-top: 52px;
    width: 96%;
  }

  /* ── FAQ ── */
  .faq-section .container-fluid {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .faq-section .row {
    flex-direction: column;
  }

  .faq-section .col-lg-4,
  .faq-section .col-lg-8 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .faq-heading {
    font-size: clamp(30px, 5vw, 42px);
    text-align: center;
    white-space: nowrap;
  }

  .faq-q-btn::after {
    font-size: 32px;
  }

  .faq-heading br {
    display: none;
  }

  .faq-sub {
    font-size: 15px;
    text-align: center;
  }

  .faq-illustration {
    display: none;
  }

  .faq-card-ropes {
    display: flex;
    justify-content: space-between;
    padding: 0 46px;
    margin-top: -30%;
  }

  .faq-rope {
    height: 160px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .faq-hanging-card {
    padding: 48px 32px 28px;
    width: 100%;
    margin-left: 0;
    height: auto;
    min-height: 360px;
  }

  .faq-pin-left {
    left: 40px;
  }

  .faq-pin-right {
    right: 40px;
  }

  /* ── FOOTER ── */
  .footer-section {
    background: #0b1017 url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Footer.svg") center top / contain no-repeat !important;
    min-height: 520px;
  }

  .footer-section,
  .footer-section::before {
    background-position: center top !important;
    background-size: 110% auto !important;
    background-repeat: no-repeat !important;
  }

  .footer-inner {
    padding: 52px 28px 40px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    row-gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-copy {
    grid-column: 1 / 2;
    grid-row: 3;
    align-self: center;
    font-size: 13px;
    margin: 0;
  }

  .footer-social-links {
    grid-column: 2 / 3;
    grid-row: 3;
    justify-content: flex-end;
    gap: 20px;
    align-self: center;
    flex-wrap: nowrap;
  }
}


/* ========================= 
   SMALL LAPTOPS
   992px – 1199px
   ========================= */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

  /* ── NAVBAR ── */
  #navbar .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .nav-link-custom {
    font-size: 13px;
    padding: 6px 10px !important;
  }

  .nav-btn-contact {
    font-size: 13px;
    padding: 6px 18px !important;
  }

  /* ── EMPOWER ── */
  .empower-inner {
    width: 95%;
    padding: 64px 28px;
  }


  .emp-icon-img {
    width: 6.5%;
    height: 140px;
  }

  /* ── FEATURES ── */
  .features-section .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .features-title {
    font-size: clamp(24px, 3vw, 36px);
  }

  .features-sub {
    font-size: 16px;
  }

  .features-cards-row {
    height: 380px;
    gap: 10px;
  }

  .feat-card {
    flex: 0 0 12%;
  }

  .feat-card:hover,
  .feat-card-active {
    flex: 0 0 44% !important;
  }

  .feat-card-side-title {
    font-size: clamp(14px, 1.2vw, 18px);
    width: 260px;
  }

  .feat-card:hover .feat-card-side-title,
  .feat-card-active .feat-card-side-title {
    font-size: clamp(16px, 1.7vw, 24px);
  }

  .feat-card-desc {
    font-size: 13px;
    top: 88px;
    left: 22px;
    max-width: 70%;
  }

  .feat-card-img-wrap {
    width: 110px;
    height: 28%;
  }

  .feat-card-active .feat-card-img-wrap,
  .feat-card:hover .feat-card-img-wrap {
    width: 44%;
    height: 90%;
    max-width: 300px;
  }

  .feat-number {
    font-size: clamp(120px, 16vw, 240px);
  }

  /* ── CUSTOMERS ── */
  .customers-section .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .customers-title {
    font-size: clamp(28px, 3.5vw, 40px);
  }

  .customers-sub {
    font-size: 18px;
  }

  .logo-item {
    min-width: 160px;
    height: 78px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    height: auto;
    min-height: 40vh;
    padding: 14px 10px 2px 18px;
  }

  .testimonials-section .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .testi-heading {
    font-size: clamp(22px, 3vw, 34px);
  }

  .testi-card-wrapper {
    width: 92%;
  }

  .testi-card {
    padding: 44px 48px 14px 40px;
    height: 260px;
    margin-top: 64px;
  }

  .testi-text {
    font-size: 14px;
  }

  /* ── FAQ ── */
  .faq-section .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .faq-card-ropes {
    padding: 0 40px;
  }

  .faq-sub {
    font-size: 1rem;
  }


  /* ── FOOTER ── */
  .footer-inner {
    padding: 65px 40px 36px 55px;
    grid-template-columns: 1.6fr 0.8fr 1fr;
    gap: 20px;
    height: 44vh;
  }

  .footer-brand-desc {
    font-size: 15px;
  }

  .footer-col-title {
    font-size: 16px;
  }

  .footer-nav-links a {
    font-size: 14px;
  }

  .footer-contact-val {
    font-size: 14px;
  }
}





/* ========================= 
   DESKTOPS
   1200px – 1399px
   ========================= */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {

  /* ── NAVBAR ── */
  #navbar {
    min-height: 62px;
    padding: 8px 0;
  }

  #navbar .container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  #navbar .navbar-brand img {
    height: 34px;
    max-width: 260px;
  }

  #navbar .navbar-nav {
    gap: 20px !important;
  }

  .nav-link-custom {
    font-size: 14px;
    padding: 6px 0 !important;
  }

  .nav-btn-contact {
    font-size: 14px;
    padding: 8px 24px !important;
    border-radius: 10px;
  }


  .faq-q-btn {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .faq-q-btn::after {
    font-size: 30px;
  }


  /* ── EMPOWER ── */

  .empower-section {
    margin-top: -40%;
  }

  .empower-inner {
    width: 92%;
    padding: 2px 36px;
  }

  .empower-heading {
    font-size: clamp(26px, 2.8vw, 36px);
    margin-top: 10%;
  }

  .emp-icon-img {
    width: 6%;
    height: 168px;
  }

  /* ── FEATURES ── */
  .features-section .container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .features-title {
    font-size: clamp(26px, 2.8vw, 40px);
  }

  .features-sub {
    font-size: clamp(16px, 1.4vw, 20px);
  }

  .features-cards-row {
    height: 500px;
    gap: 12px;
  }

  .feat-card-active .feat-card-img {
    width: 85%;
    height: 106%;
  }

  .feat-card {
    flex: 0 0 11%;
  }

  .feat-card:hover,
  .feat-card-active {
    flex: 0 0 42% !important;
  }

  .feat-card-side-title {
    font-size: clamp(16px, 1.3vw, 20px);
    width: 270px;
  }

  .feat-card:hover .feat-card-side-title,
  .feat-card-active .feat-card-side-title {
    font-size: clamp(17px, 1.7vw, 26px);
  }

  .feat-card-desc {
    font-size: clamp(13px, 1vw, 15px);
    max-width: 70%;

  }

  .feat-card-img-wrap {
    width: 120px;
    height: 30%;
  }

  .feat-card-active .feat-card-img-wrap,
  .feat-card:hover .feat-card-img-wrap {
    width: 46%;
    height: 92%;
    max-width: 320px;
  }

  .feat-number {
    font-size: clamp(140px, 18vw, 280px);
  }

  /* ── CUSTOMERS ── */
  .customers-section .container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .customers-title {
    font-size: clamp(30px, 3.2vw, 44px);
  }

  .customers-sub {
    font-size: clamp(16px, 1.4vw, 20px);
  }

  .logo-item {
    min-width: 170px;
    height: 82px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    height: auto;
    min-height: 55vh;
    padding: 70px 0;
  }

  .testimonials-section .container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .testi-heading {
    font-size: clamp(24px, 2.4vw, 36px);
  }

  .testi-card-wrapper {
    width: 90%;
    transform: rotate(-4deg);
  }

  .testi-card {
    padding: 46px 64px 14px 48px;
    height: 276px;
    margin-left: 2%;
  }

  .testi-quote {
    font-size: 50px;
  }

  /* ── FAQ ── */
  .faq-section .container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .faq-heading {
    font-size: clamp(28px, 3.2vw, 44px);
  }

  .faq-illustration {
    width: min(100%, 300px);
    margin-left: 89%;
    padding: 52px;
    margin-top: 49%;
  }

  .faq-rope {
    width: 2px;
    height: 96px;
    background: #CBD5E1;
    margin-left: 18%;
    margin-top: -60px;
    margin-right: 6px;
  }

  .faq-card-ropes {
    padding: 0 50px;
  }

  .faq-hanging-card {
    padding: 68px 48px 61px 68px;
    width: 88%;
    margin-left: 14%;
    height: 86%;
  }

  /* ── FOOTER ── */
  .footer-inner {
    padding: 58px 72px 38px;
    grid-template-columns: 1.8fr 0.82fr 1.1fr;
    gap: 72px;
  }

  .footer-brand-desc {
    font-size: 16px;
  }

  .footer-social-links a:not([aria-label="Instagram"]) .social-icon-img {
    width: 35px;
    height: 35px;
  }
}


/* ========================= 
   DESKTOPS
   1400px – 1499px  (gap-fill breakpoint)
   ========================= */
@media only screen and (min-width: 1400px) and (max-width: 1499px) {

  /* ── NAVBAR ── */
  #navbar .container-fluid {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .nav-link-custom {
    font-size: 15px;
    padding: 6px 14px !important;
  }

  .nav-btn-contact {
    font-size: 15px;
    padding: 8px 26px !important;
  }

  /* ── EMPOWER ── */
  .empower-inner {
    width: 91%;
    padding: 76px 38px;
  }

  .empower-heading {
    font-size: clamp(28px, 2.8vw, 38px);
    margin-top: 88px;
  }

  .emp-icon-img {
    width: 6%;
    height: 176px;
  }

  /* ── FEATURES ── */
  .features-section .container-fluid {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .features-title {
    font-size: clamp(28px, 2.9vw, 42px);
  }

  .features-sub {
    font-size: clamp(16px, 1.5vw, 22px);
  }

  .features-cards-row {
    height: 500px;
    gap: 13px;
  }

  .feat-card {
    flex: 0 0 10.5%;
  }

  .feat-card:hover,
  .feat-card-active {
    flex: 0 0 43% !important;
  }

  .feat-card-side-title {
    font-size: clamp(16px, 1.3vw, 21px);
    width: 278px;
  }

  .feat-card:hover .feat-card-side-title,
  .feat-card-active .feat-card-side-title {
    font-size: clamp(18px, 1.75vw, 28px);
  }

  .feat-card-desc {
    font-size: clamp(13px, 1vw, 15px);
    max-width: 340px;
  }

  .feat-card-img-wrap {
    width: 125px;
    height: 29%;
  }

  .feat-card-active .feat-card-img-wrap,
  .feat-card:hover .feat-card-img-wrap {
    width: 46%;
    height: 91%;
    max-width: 330px;
  }

  .feat-number {
    font-size: clamp(150px, 19vw, 295px);
  }

  /* ── CUSTOMERS ── */
  .customers-section .container-fluid {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .customers-title {
    font-size: clamp(30px, 3.2vw, 46px);
  }

  .customers-sub {
    font-size: clamp(17px, 1.5vw, 22px);
  }

  .logo-item {
    min-width: 175px;
    height: 84px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    height: auto;
    min-height: 58vh;
    padding: 74px 0;
  }

  .testimonials-section .container-fluid {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .testi-heading {
    font-size: clamp(25px, 2.5vw, 38px);
  }

  .testi-card-wrapper {
    width: 88%;
    transform: rotate(-4deg);
  }

  .testi-card {
    padding: 47px 66px 14px 50px;
    height: 280px;
    margin-left: 2%;
    margin-top: 70px;
  }

  .testi-text {
    font-size: 15px;
  }

  /* ── FAQ ── */
  .faq-section .container-fluid {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .faq-heading {
    font-size: clamp(28px, 3.2vw, 46px);
  }

  .faq-illustration {
    width: min(100%, 310px);
    margin-left: 94%;
    padding: 52px;
    margin-top: 32%;
  }


  .faq-rope {
    margin-left: 21%;
    margin-top: -60px;
  }

  .faq-card-ropes {
    padding: 0 52px;
  }

  .faq-hanging-card {
    padding: 70px 52px 36px 70px;
    width: 86%;
    margin-left: 16%;
    height: 86%;
    height: 33rem !important;
    min-height: 440px;
    overflow-y: auto !important;
  }

  .faq-sub {
    font-size: 18px;
  }

  /* ── FOOTER ── */
  .footer-inner {
    padding: 64px 80px 42px;
    grid-template-columns: 1.85fr 0.83fr 1.12fr;
    gap: 76px;
  }

  .footer-brand-desc {
    font-size: 16px;
  }
}

/* ========================= 
   LARGE SCREENS / FULL HD
   1600px – 1919px
   ========================= */
@media only screen and (min-width: 1500px) and (max-width: 1919.98px) {

  .hero-section {
    margin-top: -5% !important;
  }


  .hero-chat-img img {
    margin-top: 12rem !important;
  }


  .right-dash-wrapper {
    max-width: 20rem !important;
  }

  .hero-right {
    margin-top: -19rem !important;
    padding-left: 4rem !important;
  }


  .hero-male-img {
    top: 49rem !important;
    width: 24% !important;
    left: 8rem !important;
  }

  .hero-male-bubble {
    margin-top: 48rem;
    margin-left: -3rem;
    width: 55%;
  }

  .hero-female-img {
    top: 25.5rem !important;
    margin-left: 34rem !important;
    width: 28% !important;
  }

  .hero-male-2-img {
    margin-top: 56rem !important;
    width: 28%;
    margin-left: 39rem !important;
  }

  .hero-male-2-bubble {
    margin-top: 56.5rem !important;
    margin-left: 29rem !important;
    width: 40% !important;
  }

  .hero-analytics-icon {
    margin-top: 59rem !important;
    margin-left: 27rem !important;
  }

  .empower-section {
    margin-top: -16%;
  }

  /* ── NAVBAR ── */
  #navbar .container-fluid {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .nav-link-custom {
    font-size: 15px;
    padding: 6px 16px !important;
  }

  .nav-btn-contact {
    padding: 7px 24px !important;
    font-size: 15px;
  }


  /* ── EMPOWER ── */
  .empower-section {
    margin-top: -16%;
  }

  .empower-inner {
    width: 90%;
    padding: 40px 40px;
  }

  .empower-heading {
    font-size: 3rem;
    margin-top: 8%;
  }

  .emp-icon-img {
    width: 6%;
    height: 192px;
  }

  /* ── FEATURES ── */
  .features-section .container-fluid {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .features-title {
    font-size: clamp(28px, 3vw, 44px);
  }

  .feat-card-active .feat-card-img {
    width: 88%;
    height: 110%;
  }

  .features-sub {
    font-size: clamp(18px, 1.6vw, 26px);
  }

  .features-cards-row {
    height: 500px;
    gap: 14px;
  }

  .feat-card {
    flex: 0 0 10.5%;
  }

  .feat-card:hover,
  .feat-card-active {
    flex: 0 0 42% !important;
  }

  .feat-card-side-title {
    font-size: clamp(18px, 1.35vw, 22px);
    width: 290px;
  }

  .feat-card:hover .feat-card-side-title,
  .feat-card-active .feat-card-side-title {
    font-size: clamp(18px, 1.8vw, 30px);
  }

  .feat-card-desc {
    font-size: clamp(14px, 1vw, 15px);
    max-width: 460px;
  }

  .feat-card-img-wrap {
    width: 132px;
    height: 30%;
  }

  .feat-card-active .feat-card-img-wrap,
  .feat-card:hover .feat-card-img-wrap {
    width: 46%;
    height: 92%;
    max-width: 340px;
  }

  .feat-card:hover::after,
  .feat-card-active::after {
    opacity: 0.56;
    animation: featDarkPulse 2.5s ease forwards;
  }

  .feat-number {
    font-size: clamp(160px, 20vw, 320px);
  }

  /* ── CUSTOMERS ── */
  .customers-section .container-fluid {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .customers-title {
    font-size: clamp(32px, 3.2vw, 48px);
  }

  .customers-sub {
    font-size: 22px;
  }

  .logo-item {
    min-width: 180px;
    height: 86px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    height: 66vh;
    padding: 80px 0;
  }

  .testimonials-section .container-fluid {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .testi-heading {
    font-size: clamp(26px, 2.4vw, 40px);
  }

  .testi-card-wrapper {
    width: 86%;
    transform: rotate(-4deg);
  }

  .testi-card {
    padding: 48px 72px 14px 52px;
    height: 288px;
    margin-left: 20px;
    margin-top: 74px;
  }

  .testi-text {
    font-size: 16px;
    margin-top: -6%;
  }

  .testi-author {
    font-size: 18px;
  }

  /* ── FAQ ── */
  .faq-section .container-fluid {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .faq-heading {
    font-size: clamp(30px, 3.2vw, 48px);
  }

  .faq-illustration {
    width: 23rem;
    margin-left: 100%;
    padding: 14%;
    margin-top: 11%;

  }

  .faq-q-btn::after {
    font-size: 34px;

  }

  .faq-rope {
    margin-left: 24%;
    margin-right: 2%;
  }

  .faq-card-ropes {
    padding: 0 56px;
    margin-left: -4px;
  }

  .faq-hanging-card {
    padding: 78px 72px 28px;
    width: 80%;
    margin-left: 20%;
    height: 84%;
  }

  .faq-q-btn {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }

  /* ── FOOTER ── */
  .footer-inner {
    padding: 92px 104px 60px 98px;
    grid-template-columns: 1.9fr 0.85fr 1.15fr;
    gap: 84px;
  }

  .footer-brand-desc {
    font-size: 17px;
  }

  .footer-col-title {
    font-size: 18px;
  }

  .footer-nav-links a {
    font-size: 16px;
  }

  .footer-contact-val {
    font-size: 16px;
  }
}


/* ========================= 
   2K MONITORS
   1920px – 2559px
   ========================= */
@media only screen and (min-width: 1920px) and (max-width: 2559.98px) {

  :root {
    --nav-height: 68px;
  }

  /* ── NAVBAR ── */
  #navbar {
    min-height: 68px;
    padding: 14px 0;
  }

  #navbar .container-fluid {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }

  #navbar .navbar-brand img {
    height: 40px;
  }

  .nav-link-custom {
    font-size: 17px;
    padding: 8px 20px !important;
  }

  .nav-btn-contact {
    font-size: 17px;
    padding: 9px 30px !important;
  }

  .hero-section {
    margin-top: -18% !important;
  }

  .hero-heading {
    font-size: 3.4rem !important;
    line-height: 4.5rem !important;
  }

  .hero-subtext {
    font-size: 1.5rem !important;
  }

  .hero-dashboard-main {
    max-width: calc(100% + 20rem) !important;
    margin-top: 5rem;
  }

  .btn-get-started {
    padding: 1rem;
    width: 22%;
  }

  .btn-book-demo {
    padding: 1rem;
    width: 22%;
  }

  .hero-right {
    margin-top: -3rem !important;
    padding-left: 7rem !important;
  }

  .right-dash-wrapper {
    max-width: 22rem !important;
    min-height: 0rem;
  }

  .hero-chat-img img {
    padding-top: 6% !important;
  }

  .hero-male-img {
    top: 54.5rem !important;
    width: 26% !important;
  }


  .hero-male-bubble {
    margin-top: 54rem !important;
    margin-left: -3rem !important;
    width: 60%;
  }

  .hero-female-img {
    top: 26rem !important;
    margin-left: 39.5rem !important;
    width: 30% !important;
  }

  .hero-female-bubble {
    top: 26rem !important;
    margin-left: 28rem !important;
    width: 60%;
  }

  .hero-male-2-img {
    margin-top: 64rem !important;
    width: 34%;
    margin-left: 45rem !important;
  }

  .hero-male-2-bubble {
    margin-top: 64rem !important;
    margin-left: 33rem !important;
    width: 55% !important;
  }

  .hero-analytics-icon {
    margin-top: 68rem !important;
    margin-left: 32rem !important;
  }


  /* ── EMPOWER ── */
  .empower-section {
    margin-top: -10%;
  }

  .empower-inner {
    width: 86%;
    padding: 100px 60px;
    min-height: 380px;
  }

  .empower-heading {
    font-size: 3.5rem;
    margin-top: 8%;
    letter-spacing: 1.5px;
  }

  .emp-icon-img {
    width: 6%;
    height: 240px;
  }

  .emp-icon-1 {
    left: 3.5%;
    top: 16%;
  }

  .emp-icon-2 {
    left: 9%;
    top: 3%;
  }

  .emp-icon-3 {
    left: 1.5%;
    top: 54%;
  }

  .emp-icon-4 {
    left: 11%;
    top: 70%;
  }

  .emp-icon-5 {
    right: 9%;
    top: 3%;
  }

  .emp-icon-6 {
    right: 2.5%;
    top: 16%;
  }

  .emp-icon-7 {
    right: 3.5%;
    top: 57%;
  }

  .emp-icon-8 {
    right: 11%;
    top: 67%;
  }

  /* ── FEATURES ── */
  .features-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .features-section .container-fluid {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .features-title {
    font-size: clamp(36px, 6vw, 76px);
  }

  .features-sub {
    font-size: clamp(22px, 1.8vw, 34px);
    margin-top: 16px !important;
  }

  .features-cards-row {
    height: 740px;
    gap: 18px;
    margin-top: 32px;
  }

  .feat-card {
    flex: 0 0 10%;
    border-radius: 28px;
  }

  .feat-card-active .feat-card-img {
    width: 80%;
    height: 106%;
  }

  .feat-card:hover,
  .feat-card-active {
    flex: 0 0 44% !important;
  }

  .feat-card-side-title {
    font-size: clamp(20px, 2vw, 55px);
    width: 360px;
    top: 38%;
  }

  .feat-card:hover .feat-card-side-title,
  .feat-card-active .feat-card-side-title {
    top: 10%;
    left: 3%;
    font-size: clamp(22px, 4vw, 40px);
  }

  .feat-card-desc {
    top: 148px;
    left: 36px;
    max-width: 86%;
    font-size: 30px;
    line-height: 1.5;
  }

  .feat-card-img-wrap {
    width: 160px;
    height: 30%;
  }

  .feat-card-active .feat-card-img-wrap,
  .feat-card:hover .feat-card-img-wrap {
    width: 40%;
    height: 90%;
    max-width: 440px;
  }

  .feat-number {
    font-size: clamp(200px, 24vw, 380px) !important;
    bottom: -10%;
    right: 4px;
  }

  /* ── CUSTOMERS ── */
  .customers-section {
    padding: 100px 0;
  }

  .customers-section .container-fluid {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .customers-title {
    font-size: clamp(40px, 5vw, 80px);
  }

  .customers-sub {
    font-size: 44px;
    margin-top: 24px !important;
  }

  .customers-logo-wall {
    gap: 24px;
    margin-top: 16px;
  }

  .logo-item {
    min-width: 220px;
    height: 100px;
    padding: 0 12px;
    border-radius: 16px;
  }

  .customer-logo-img {
    max-width: 180px;
  }

  .logo-strip-wrapper::before,
  .logo-strip-wrapper::after {
    width: 160px;
  }

  .logo-strip {
    gap: 40px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    height: 64vh;
    padding: 100px 0;
  }

  .testimonials-section .container-fluid {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .testi-heading {
    font-size: clamp(32px, 2.4vw, 56px);
    margin-top: 6%;
  }

  .testi-sub {
    font-size: 30px;
    margin-top: 16px !important;
    line-height: 1.8;
  }

  .testi-nav-btns {
    margin-top: 24px !important;
    gap: 16px;
  }

  .testi-btn {
    width: 8%;
    height: 66px;
    font-size: 22px;
    border-radius: 19%;
  }

  .testi-card-wrapper {
    width: 78%;
    transform: rotate(-4deg);
    margin-left: 20%;
  }

  .testi-card-wrapper::before {
    border-radius: 20px;
  }

  .testi-card {
    border-radius: 8px;
    padding: 60px 90px 20px 68px;
    height: 376px;
    margin-left: 2%;
    margin-top: 10%;
  }

  .testi-quote {
    font-size: 50px;
  }

  .testi-text {
    font-size: 22px;
    margin-top: -38px;
    line-height: 1.75;
  }

  .testi-author {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .testi-role {
    font-size: 14px;
  }

  /* ── FAQ ── */

  .faq-section .container-fluid {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .faq-heading {
    font-size: clamp(36px, 3.5vw, 60px);
  }

  .faq-sub {
    font-size: 28px;
    margin-top: 10px !important;
  }

  .faq-illustration {
    width: min(100%, 420px);
    margin-left: 100%;
    padding: 30px;
    margin-top: 28%;
  }

  .faq-card-ropes {
    padding: 0 80px;
  }

  .faq-rope {
    height: 120px;
    margin-top: -8%;
    margin-left: 27%;
  }

  .faq-hanging-card {
    padding: 100px 96px 36px 118px;
    width: 78%;
    margin-left: 22%;
    height: 78vh;
  }

  .faq-pin {
    width: 2%;
    height: 2%;
    top: 0%;
  }

  .faq-pin-left {
    left: 10%;
  }

  .faq-pin-right {
    right: 80px;
  }

  .faq-q-btn {
    font-size: 24px;
  }

  .faq-answer {
    font-size: 20px;
    line-height: 1.75;
    padding-top: 2%;
    padding-left: 2%;
  }

  .faq-item-custom {
    padding: 18px 0;
  }

  /* ── FOOTER ── */
  .footer-section {
    background: #0b1017 url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Footer_BG.svg") center bottom / cover no-repeat !important;
    height: 78vh;
    width: 100%;
  }

  .footer-inner {
    padding: 88px 90px 82px 84px;
    gap: 80px;
    row-gap: 80px;
  }

  .footer-logo-img {
    height: 50px;
  }

  .footer-logo-wrap {
    margin-bottom: 34px;
  }

  .footer-brand-desc {
    font-size: 36px;
    line-height: 1.55;
    max-width: 440px;
  }

  .footer-col-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .footer-nav-links {
    gap: 22px;
  }

  .footer-nav-links a {
    font-size: 26px;
  }

  .footer-contact-item {
    margin-bottom: 28px;
  }

  .footer-contact-label {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .footer-contact-val {
    font-size: 26px;
    line-height: 1.5;
  }

  .footer-copy {
    font-size: 30px;
    margin-top: 10%;
  }

  .footer-social-links {
    gap: 40px;
  }

  .social-icon-img-insta,
  .social-icon-img-facebook {
    width: 42px !important;
    height: 42px !important;
  }

  .social-icon-img-linkedin {
    width: 42px !important;
    height: 42px !important;
  }

  .social-icon-img-x {
    width: 42px !important;
    height: 42px !important;
  }

  .footer-social-links a:not([aria-label="Instagram"]) .social-icon-img {
    width: 50px;
    height: 58px;
  }

}


/* ========================= 
   4K SCREENS / VERY LARGE DISPLAYS (≈60 inch TVs)
   2560px and above
   ========================= */
@media only screen and (min-width: 2560px) {

  :root {
    --nav-height: 80px;
  }

  /* ── NAVBAR ── */
  #navbar {
    min-height: 80px;
    padding: 18px 0;
  }

  #navbar .container-fluid {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }

  #navbar .navbar-brand img {
    height: 52px;
    max-width: 320px;
  }

  .nav-link-custom {
    font-size: 22px;
    padding: 10px 24px !important;
  }

  .nav-btn-contact {
    font-size: 22px;
    padding: 12px 40px !important;
    border-radius: 12px;
  }

  .empower-inner {
    width: 90%;
    padding: 120px 40px;
    min-height: 500px;
  }

  .empower-heading {
    font-size: 5rem;
    letter-spacing: 2px;
    line-height: 1.25;
    margin-top: 4%;
  }

  .emp-icon-img {
    margin-top: 1% !important;
  }

  .emp-icon-1 {
    left: 2%;
    top: 15%;
  }

  .emp-icon-2 {
    left: 8.5%;
    top: 2%;
  }

  .emp-icon-3 {
    left: 1%;
    top: 54%;
  }

  .emp-icon-4 {
    left: 10%;
    top: 72%;
  }

  .emp-icon-5 {
    right: 8%;
    top: 2%;
  }

  .emp-icon-6 {
    right: 2%;
    top: 15%;
  }

  .emp-icon-7 {
    right: 3%;
    top: 57%;
  }

  .emp-icon-8 {
    right: 10%;
    top: 68%;
  }

  /* ── FEATURES ── */
  .features-section {
    padding-top: 6% !important;
    padding-bottom: 6% !important;
  }

  .features-section .container-fluid {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }

  .features-title {
    font-size: clamp(50px, 4vw, 80px);
  }

  .features-sub {
    font-size: clamp(28px, 2vw, 46px);
    margin-top: 24px !important;
  }

  .features-cards-row {
    height: 1000px;
    gap: 24px;
    margin-top: 48px;
  }

  .feat-card {
    flex: 0 0 9.5%;
    border-radius: 36px;
  }

  .feat-card:hover,
  .feat-card-active {
    flex: 0 0 44% !important;
  }

  .feat-card-side-title {
    font-size: clamp(26px, 1.5vw, 72px);
    width: 480px;
  }

  .feat-card:hover .feat-card-side-title,
  .feat-card-active .feat-card-side-title {
    top: 80px;
    left: 36px;
    font-size: clamp(30px, 2.5vw, 52px);
  }

  .feat-card-img {
    height: 130%;
  }

  .feat-card-desc {
    top: 200px;
    left: 48px;
    max-width: 82%;
    font-size: 38px;
    line-height: 1.55;
  }

  .feat-card-img-wrap {
    width: 200px;
    height: 28%;
  }

  .feat-card-active .feat-card-img-wrap,
  .feat-card:hover .feat-card-img-wrap {
    width: 44%;
    height: 88%;
    max-width: 580px;
  }

  .feat-number {
    font-size: clamp(280px, 30vw, 500px);
    bottom: -60px;
  }

  .feat-card-img {
    width: 100%;
  }

  .feat-card-desc {
    transform: translateX(-26px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.6s ease, visibility 0s linear 0.45s;
  }

  /* ── CUSTOMERS ── */
  .customers-section {
    padding: 140px 0;
  }

  .customers-section .container-fluid {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }

  .customers-title {
    font-size: clamp(56px, 6vw, 80px);
  }

  .customers-sub {
    font-size: 48px;
    margin-top: 16px !important;
  }

  .customers-logo-wall {
    gap: 100px;
    margin-top: 6%;
  }

  .logo-item {
    min-width: 300px;
    height: 140px;
    padding: 0 16px;
    border-radius: 20px;
  }

  .customer-logo-img {
    max-width: 240px;
  }

  .logo-strip-wrapper::before,
  .logo-strip-wrapper::after {
    width: 240px;
  }

  .logo-strip {
    gap: 60px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    height: 100%;
    padding: 140px 0;
    margin-top: 10%;
  }

  .testimonials-section .container-fluid {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }

  .testi-heading {
    font-size: clamp(48px, 3.5vw, 60px);
    margin-top: 8%;
  }

  .testi-sub {
    font-size: 40px;
    margin-top: 20px !important;
    line-height: 1.85;
  }

  .testi-nav-btns {
    margin-top: 32px !important;
    gap: 20px;
  }

  .testi-btn {
    width: 100px;
    height: 100px;
    font-size: 32px;
    border-radius: 20%;
  }

  .testi-card-wrapper {
    width: 74%;
    transform: rotate(-4deg);
    margin-left: 22%;
  }

  .testi-card {
    padding: 80px 120px 28px 90px;
    height: 520px;
    margin-left: 2%;
    margin-top: 14%;
    border-radius: 12px;
  }

  .testi-quote {
    font-size: 60px;
  }

  .testi-text {
    font-size: 30px;
    margin-top: -50px;
    line-height: 1.8;
  }

  .testi-author {
    font-size: 36px;
    margin-bottom: 56px;
  }

  .testi-role {
    font-size: 20px;
  }

  /* ── FAQ ── */
  .faq-section {
    height: 100vh;
  }

  .faq-section .container-fluid {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }

  .faq-heading {
    font-size: clamp(52px, 4.5vw, 80px);
    margin-top: 10%;
  }

  .faq-sub {
    font-size: 36px;
    margin-top: 14px !important;
  }

  .faq-illustration {
    width: min(100%, 560px);
    margin-left: 100%;
    padding: 40px;
    margin-top: 20%;
  }

  .faq-card-ropes {
    padding: 0 120px;
  }

  .faq-rope {
    height: 180px;
    margin-top: -6%;
    margin-left: 26%;
  }

  .faq-hanging-card {
    padding: 140px 140px 48px 160px;
    width: 76%;
    margin-left: 24%;
    height: 87% !important;
  }

  .faq-pin {
    width: 2%;
    height: 18px;
    top: 0;
  }

  .faq-pin-left {
    left: 7%;
  }

  .faq-pin-right {
    right: 10%
  }

  .faq-q-btn {
    font-size: 32px;
  }

  .faq-q-btn::after {
    font-size: 48px;
  }

  .faq-answer {
    font-size: 26px;
    line-height: 1.8;
    padding-top: 14px;
    padding-left: 28px;
  }

  .faq-item-custom {
    padding: 24px 0;
  }

  /* ── FOOTER ── */
  .footer-section {
    background: #0b1017 url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Footer_BG.svg") center bottom / cover no-repeat !important;
    height: 75vh;
    width: 100%;
  }

  .footer-inner {
    padding: 108px 124px 131px 120px;
    gap: 8px;
    row-gap: 9px;
  }

  .footer-logo-img {
    height: 70px;
  }

  .footer-logo-wrap {
    margin-bottom: 44px;
  }

  .footer-brand-desc {
    font-size: 40px;
    line-height: 1.6;
    max-width: 580px;
  }

  .footer-col-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .footer-nav-links {
    gap: 28px;
  }

  .footer-nav-links a {
    font-size: 36px;
  }

  .footer-contact-item {
    margin-bottom: 36px;
  }

  .footer-contact-label {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .footer-contact-val {
    font-size: 36px;
    line-height: 1.55;
  }

  .footer-copy {
    font-size: 38px;
  }

  .footer-social-links {
    gap: 56px;
  }

  .social-icon-img-insta,
  .social-icon-img-facebook {
    width: 60px !important;
    height: 60px !important;
  }

  .social-icon-img-linkedin {
    width: 60px !important;
    height: 60px !important;
  }

  .social-icon-img-x {
    width: 60px !important;
    height: 60px !important;
  }

  .footer-social-links a:not([aria-label="Instagram"]) .social-icon-img {
    width: 60px;
    height: 60px;
  }
}


/* ================================================================
   DESKTOP (≥ 992px) — horizontal accordion, all cards visible
   JS MOBILE_BP = 991, so everything above 991 is desktop mode.
   ================================================================ */
@media only screen and (min-width: 992px) {

  /* All cards must be in the flex row */
  .features-cards-row {
    display: flex !important;
    flex-direction: row !important;
  }

  /* Cards hidden by JS must still appear on desktop */
  .feat-card.feat-hidden {
    display: block !important;
  }

  /* Dots never visible on desktop */
  .feat-mobile-dots {
    display: none !important;
  }

  .feat-dot,
  .feat-dot.active {
    display: none !important;
  }
}


/* ================================================================
   SMALL LAPTOP  992px – 1199px
   ================================================================ */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

  /* ── NAVBAR ── */
  #navbar .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  #navbar .navbar-brand img {
    height: 28px;
  }

  .nav-link-custom {
    font-size: 13px;
    padding: 6px 10px !important;
  }

  .nav-btn-contact {
    font-size: 13px;
    padding: 7px 16px !important;
  }

  /* ── EMPOWER ── */
  .empower-inner {
    width: 95%;
    padding: 60px 28px;
  }

  .empower-heading {
    font-size: clamp(20px, 2.4vw, 30px);
    margin-top: 60px;
  }

  .emp-icon-img {
    width: 6%;
    height: 140px;
  }

  /* ── FEATURES (horizontal accordion) ── */
  .features-section .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .features-title {
    font-size: clamp(22px, 2.4vw, 34px);
  }

  .features-sub {
    font-size: clamp(14px, 1.2vw, 18px);
  }

  .features-cards-row {
    height: 360px !important;
    gap: 10px !important;
    display: flex !important;
    flex-direction: row !important;
    overflow: hidden !important;
  }

  .feat-card {
    flex: 0 0 11% !important;
    height: 100% !important;
    display: block !important;
    border-radius: 16px !important;
  }

  .feat-card.feat-hidden {
    display: block !important;
    flex: 0 0 11% !important;
  }

  .feat-card.feat-card-active,
  .feat-card:hover {
    flex: 0 0 44% !important;
  }

  .feat-card-side-title {
    font-size: clamp(13px, 1.1vw, 17px);
    width: 250px;
  }

  .feat-card:hover .feat-card-side-title,
  .feat-card-active .feat-card-side-title {
    font-size: clamp(15px, 1.5vw, 22px);
  }

  .feat-card-desc {
    font-size: 13px;
    top: 88px;
    left: 27px;
    max-width: 70%;
  }

  .feat-card-img-wrap {
    width: 100px;
    height: 28%;
  }

  .feat-card-active .feat-card-img-wrap,
  .feat-card:hover .feat-card-img-wrap {
    width: 44%;
    height: 90%;
    max-width: 280px;
  }

  .feat-number {
    font-size: clamp(100px, 14vw, 200px);
  }

  /* ── CUSTOMERS ── */
  .customers-section .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .customers-title {
    font-size: clamp(24px, 2.6vw, 36px);
  }

  .customers-sub {
    font-size: clamp(14px, 1.2vw, 18px);
  }

  .logo-item {
    min-width: 150px;
    height: 72px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    height: auto !important;
    min-height: 48vh;
    padding: 60px 0;
  }

  .testimonials-section .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .testi-heading {
    font-size: clamp(20px, 2vw, 30px);
  }

  .testi-card-wrapper {
    width: 92%;
  }

  .testi-card {
    height: 260px !important;
    min-height: 260px;
    padding: 40px 48px 14px 36px;
    margin-top: 60px;
  }

  .testi-text {
    font-size: 14px;
  }

  /* ── FAQ ── */
  .faq-section .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .faq-heading {
    font-size: 2.5rem;
  }

  .faq-illustration {
    width: min(100%, 300px);
    margin-left: 95% !important;
    padding: 62px !important;
    margin-top: 46% !important;
  }

  .faq-rope {
    margin-left: 22%;
    margin-top: -60px;
  }

  .faq-card-ropes {
    padding: 0px 4rem;
  }

  .faq-hanging-card {
    height: 86% !important;
    min-height: 360px;
    overflow-y: auto !important;
    padding: 56px 36px 28px 45px;
    width: 82%;
    margin-left: 18%;
  }

  /* ── FOOTER ── */
  .footer-section {
    height: auto !important;
    min-height: 280px;
  }

  .footer-inner {
    height: auto !important;
    padding: 52px 48px 36px;
    grid-template-columns: 1.8fr 0.8fr 1.1fr;
    gap: 40px;
  }

  .footer-brand-desc {
    font-size: 14px;
  }

  .footer-col-title {
    font-size: 15px;
  }

  .footer-nav-links a {
    font-size: 13px;
  }

  .footer-contact-val {
    font-size: 13px;
  }
}


/* ================================================================
   STANDARD LAPTOP  1200px – 1399px
   ================================================================ */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {

  /* testimonials: auto height, never clip */
  .testimonials-section {
    height: auto !important;
    min-height: 50vh;
  }

  .testi-card {
    height: 276px !important;
    min-height: 276px;
  }

  /* faq hanging card: auto height */
  .faq-hanging-card {
    height: 85% !important;
    min-height: 420px;
    overflow-y: auto !important;
  }

  /* footer: auto height */
  .footer-section {
    height: auto !important;
    min-height: 300px;
  }

  .footer-inner {
    height: auto !important;
  }

  /* features: horizontal accordion */
  .features-cards-row {
    display: flex !important;
    flex-direction: row !important;
    height: 480px !important;
    gap: 12px !important;
  }

  .feat-card {
    display: block !important;
    flex: 0 0 10.5% !important;
    height: 100% !important;
  }

  .feat-card.feat-hidden {
    display: block !important;
  }

  .feat-card.feat-card-active,
  .feat-card:hover {
    flex: 0 0 44% !important;
  }
}


/* ================================================================
   GAP FILL  1400px – 1499px
   ================================================================ */
@media only screen and (min-width: 1400px) and (max-width: 1499px) {
  .empower-section {
    margin-top: -20%;
  }

  .testimonials-section {
    height: auto !important;
    min-height: 52vh;
  }

  .testi-card {
    height: 280px !important;
    min-height: 280px;
  }

  .footer-section {
    height: auto !important;
    min-height: 320px;
  }

  .footer-inner {
    height: auto !important;
  }

  .features-cards-row {
    display: flex !important;
    flex-direction: row !important;
    height: 500px !important;
  }

  .feat-card {
    display: block !important;
    flex: 0 0 10.5% !important;
    height: 100% !important;
  }

  .feat-card.feat-hidden {
    display: block !important;
  }

  .feat-card:hover,
  .feat-card.feat-card-active {
    flex: 0 0 44% !important;
  }

  .feat-card-side-title {
    width: 250px;
    font-size: clamp(18px, 1.25vw, 22px);
  }

  .feat-card:hover .feat-card-side-title,
  .feat-card.feat-card-active .feat-card-side-title {
    font-size: clamp(20px, 1.7vw, 28px);
  }

  .feat-card-desc {
    max-width: 70%;
    font-size: clamp(14px, 1.1vw, 16px);
  }

  .feat-card-img-wrap {
    width: 120px;
    height: 30%;
  }

  .feat-card.feat-card-active .feat-card-img-wrap,
  .feat-card:hover .feat-card-img-wrap {
    width: 46%;
    height: 92%;
    max-width: 320px;
  }
}


/* ================================================================
   FULL-HD  1500px – 1919px
   ================================================================ */
@media only screen and (min-width: 1500px) and (max-width: 1919px) {


  .testi-card {
    height: 288px !important;
    min-height: 288px;
  }

  .faq-hanging-card {
    height: 83% !important;
    min-height: 460px;
    overflow-y: auto !important;
  }

  .footer-section {
    height: auto !important;
    min-height: 340px;
  }

  .footer-inner {
    height: auto !important;
  }

  .features-cards-row {
    display: flex !important;
    flex-direction: row !important;
    height: 500px !important;
  }

  .feat-card {
    display: block !important;
  }

  .feat-card.feat-hidden {
    display: block !important;
  }
}


/* ================================================================
   2K  1920px – 2559px
   ================================================================ */
@media only screen and (min-width: 1920px) and (max-width: 2559.98px) {

  .testi-card {
    height: 376px !important;
    min-height: 376px;
  }

  .faq-hanging-card {
    height: 91% !important;
    min-height: 90%;
    overflow-y: auto !important;
  }

  .footer-section {
    height: auto !important;
    min-height: 400px;
  }

  .footer-inner {
    height: auto !important;
  }
}


/* ================================================================
   4K / UHD  ≥ 2560px
   ================================================================ */
@media only screen and (min-width: 2560px) {

  .testi-card {
    height: 520px !important;
    min-height: 520px;
  }

  .faq-hanging-card {
    height: 87% !important;
    min-height: 700px;
    overflow-y: auto !important;
  }

  .footer-section {
    height: auto !important;
    min-height: 500px;
  }

  .footer-inner {
    height: auto !important;
  }
}


/* ================================================================
   TABLET  768px – 991px
   JS MOBILE_BP = 991 → carousel mode → one card shown at a time
   ================================================================ */
@media only screen and (min-width: 768px) and (max-width: 991px) {

  /* Empower overlap fix */
  .empower-section {
    margin-top: -41rem !important;
  }

  /* Features: MUST be carousel (JS MOBILE_BP = 991) */
  .features-cards-row {
    display: block !important;
    flex-direction: column !important;
    height: auto !important;
    gap: 0 !important;
    width: 60% !important;
    overflow: hidden !important;
  }

  .feat-card {
    flex: none !important;
    width: 100% !important;
    height: 380px !important;
    display: none !important;
    border-radius: 18px !important;
  }

  .feat-card.feat-card-active,
  .feat-card.feat-card-mobile-active {
    display: block !important;
  }

  .feat-card.feat-hidden {
    display: none !important;
  }

  /* Show dots on tablet (carousel mode) */
  .feat-mobile-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .feat-dot {
    display: block !important;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(35, 107, 251, 0.28);
  }

  .feat-dot.active {
    display: block !important;
    width: 26px;
    border-radius: 5px;
    background: #236bfb;
  }

  .feat-card-active .feat-card-img {
    width: 70%;
    height: 100%;
  }

  /* Testimonials */
  .testimonials-section {
    height: auto !important;
    min-height: 40vh !important;
  }

  .testi-card {
    height: 220px !important;
    min-height: 220px !important;
    margin-top: 4%;
  }

  /* FAQ */
  .faq-section {
    height: auto !important;
  }

  .faq-hanging-card {
    height: 28rem !important;
    min-height: 340px !important;
    overflow-y: auto !important;
  }

  /* Footer: no fixed height */
  .footer-section {
    height: auto !important;
  }

  .footer-inner {
    height: auto !important;
  }

  .footer-social-links a:not([aria-label="Instagram"]) .social-icon-img {
    width: 30px;
    height: 40px;
  }
}


/* ================================================================
   LARGE MOBILE  481px – 767px
   ================================================================ */
@media only screen and (min-width: 481px) and (max-width: 767.98px) {

  /* Empower overlap: the -62% offset causes a big gap */
  .empower-section {
    margin-top: 0 !important;
  }

  .testimonials-section {
    height: 34rem !important;
  }

  .testi-card {
    height: 210px !important;
    min-height: 210px !important;
  }

  .faq-hanging-card {
    height: 24rem !important;
    min-height: 340px !important;
    overflow-y: auto !important;
  }

  .faq-section {
    height: auto !important;
  }

  .footer-section {
    height: auto !important;
  }

  .footer-inner {
    height: auto !important;
  }
}


/* ================================================================
   SMALL MOBILE  ≤ 480px
   ================================================================ */
@media only screen and (max-width: 480px) {

  /* Empower: no negative margin */
  .empower-section {
    margin-top: -13rem !important;
  }


  /* Testimonials: auto height, no clip */

  .testimonials-section {
    background: url(https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Testimonials.svg) center / cover no-repeat !important;
    height: auto !important;
    padding: 44px 0 56px !important;
  }

  .testi-card {
    height: 16rem !important;
  }

  .testi-sub {
    width: 80%;
  }

  .testi-btn {
    display: none !important;
  }

  /* FAQ */
  .faq-section {
    height: auto !important;
  }

  .faq-hanging-card {
    height: 32rem !important;
    min-height: 240px !important;
    overflow-y: auto !important;
  }

  /* Footer */
  .footer-section {
    height: auto !important;
    min-height: unset !important;
  }

  .footer-inner {
    height: auto !important;
  }

  .footer-social-links a:not([aria-label="Instagram"]) .social-icon-img {
    width: 32px;
    height: 50px;
  }
}


/* ================================================================
   OVERFLOW GUARD — faq-illustration
   The base rule has margin-left: 332px which overflows on
   anything below ~1400px wide.
   ================================================================ */
@media only screen and (max-width: 1399px) {

  .faq-illustration {
    width: min(100%, 300px);
    margin-left: 89%;
    padding: 52px;
    margin-top: 32%;
  }
}


@media (min-width: 2560px) {

  /* Hero - Section  */

  .hero-section {
    margin-top: -4%;
    height: 100%;
  }

  .right-dash-wrapper {
    position: relative;
    width: 100%;
    max-width: 39rem;
    min-height: 60rem;
    margin-left: -4%;
  }

  .hero-subtext {
    font-size: 2rem;
    margin-top: 2rem;
  }

  .hero-chat-img img {
    width: 25%;
    margin-left: 1rem;
    margin-top: 14rem;
  }

  .hero-dashboard-main {
    width: 140%;
    margin-top: -19rem;
  }

  .hero-dashboard-wrap {
    margin-top: 1rem;
  }

  .hero-heading {
    font-size: 5rem;
    line-height: 6rem;
  }

  .btn-get-started,
  .btn-book-demo {
    width: 20%;
    font-size: 2rem;
    padding: 1rem;
  }

  .hero-male-img {
    position: absolute;
    top: 41rem;
    width: 16%;
    margin-left: 1rem;
  }

  .hero-male-bubble {
    position: absolute;
    margin-top: 40rem;
    margin-left: -6rem;
    width: 40%;
  }

  .hero-female-img {
    position: absolute;
    top: 6rem;
    margin-left: 50.5rem;
    width: 19%;
  }

  .hero-female-bubble {
    position: absolute;
    top: 6rem;
    margin-left: 34rem;
    width: 40%;
  }

  .hero-male-2-img {
    position: absolute;
    margin-top: 56rem !important;
    width: 20% !important;
    margin-left: 55rem !important;
  }

  .hero-male-2-bubble {
    margin-top: 54rem !important;
    margin-left: 36rem !important;
    width: 40%;
  }

  .hero-analytics-icon {
    position: absolute;
    width: 76%;
    margin-top: 60rem;
    margin-left: 38rem;
    z-index: 2;
  }
}

@media (min-width: 2100px) and (max-width: 2260.98px) {
  .hero-section {
    margin-top: -16% !important;
  }

  .hero-heading {
    font-size: 3rem;
    line-height: 4rem;
    width: 100%;
  }

  .hero-right {
    padding-left: 14rem !important;
    padding-top: 2rem !important;
  }

  .hero-male-2-bubble {
    margin-top: 64rem;
    margin-left: 33rem;
    width: 55%;
  }
}

@media (min-width: 2261px) and (max-width: 2559px) {

  .hero-section {
    margin-top: -16% !important;
  }

  .hero-heading {
    font-size: 4.6rem !important;
    line-height: 6rem !important;
    width: 105%;
  }

  .hero-right {
    padding-left: 14rem !important;
    padding-top: 2rem !important;
  }

  .hero-male-2-bubble {
    margin-top: 64rem;
    margin-left: 33rem;
    width: 55%;
  }
}

@media (min-width: 1680px) and (max-width: 1760.98px) {

  .hero-section {
    margin-top: -5% !important;
  }

  .hero-left {
    padding-left: 3rem !important;
  }

  .hero-chat-img img {
    margin-top: 15rem;
  }

  .hero-right {
    margin-top: -19rem !important;
    padding-left: 4rem !important;
  }

  .right-dash-wrapper {
    max-width: 25rem !important;
  }

  .hero-dashboard-main {
    max-width: calc(100% + 15rem) !important;
    margin-top: 4rem !important;
    margin-left: -2rem !important;
  }

  .hero-male-img {
    top: 52.5rem !important;
    width: 22% !important;
    left: 6rem !important;
  }

  .hero-male-bubble {
    margin-top: 52rem !important;
    margin-left: -5rem !important;
    width: 44% !important;
  }

  .hero-female-img {
    top: 26.5rem !important;
    margin-left: 36rem !important;
    width: 24% !important;
  }

  .hero-female-bubble {
    top: 26rem !important;
    margin-left: 26rem !important;
    width: 40% !important;
  }

  .hero-male-2-img {
    margin-top: 61rem !important;
    width: 20% !important;
    margin-left: 43rem !important;
  }

  .hero-male-2-bubble {
    margin-top: 61.5rem !important;
    margin-left: 33rem !important;
    width: 36% !important;
  }

  .hero-analytics-icon {
    width: 66% !important;
    margin-top: 64rem !important;
    margin-left: 34rem !important;
  }

}

@media (min-width: 1761px) and (max-width: 1880.98px) {
  .hero-left {
    padding-left: 3rem !important;
  }

  .hero-heading {
    font-size: 4rem !important;
    line-height: 5rem !important;
    width: 116% !important;
  }

  .hero-chat-img img {
    margin-top: 15rem;
  }

  .hero-right {
    margin-top: -19rem !important;
    padding-left: 4rem !important;
  }

  .right-dash-wrapper {
    max-width: 25rem !important;
  }

  .hero-dashboard-main {
    max-width: calc(100% + 11rem) !important;
    margin-top: 4rem !important;
    margin-left: 1.5rem !important;
  }

  .hero-male-img {
    top: 51rem !important;
    width: 18% !important;
    left: 9.5rem !important;
  }

  .hero-male-bubble {
    margin-top: 50rem !important;
    margin-left: 0rem !important;
    width: 40% !important;
  }

  .hero-female-img {
    top: 26.5rem !important;
    margin-left: 36.5rem !important;
    width: 20% !important;
  }

  .hero-female-bubble {
    top: 26.5rem !important;
    margin-left: 27rem !important;
    width: 38% !important;
  }

  .hero-male-2-img {
    margin-top: 57rem !important;
    width: 22% !important;
    margin-left: 45.5rem !important;
  }

  .hero-male-2-bubble {
    margin-top: 57.5rem !important;
    margin-left: 36rem !important;
    width: 36% !important;
  }

  .hero-analytics-icon {
    width: 66% !important;
    margin-top: 60.5rem !important;
    margin-left: 36rem !important;
  }

}

@media (min-width: 1882px) and (max-width: 1919.98px) {

  .hero-left {
    padding-left: 3rem !important;
  }

  .hero-heading {
    font-size: 4rem !important;
    line-height: 5rem !important;
    width: 116% !important;
  }

  .hero-chat-img img {
    margin-top: 15rem;
  }

  .btn-get-started,
  .btn-book-demo {
    width: 25% !important;
  }

  .hero-right {
    margin-top: -19rem !important;
    padding-left: 4rem !important;
  }

  .right-dash-wrapper {
    max-width: 25rem !important;
  }

  .hero-dashboard-main {
    max-width: calc(100% + 11rem) !important;
    margin-top: 4rem !important;
    margin-left: 1.5rem !important;
  }

  .hero-male-img {
    top: 51rem !important;
    width: 18% !important;
    left: 9.5rem !important;
  }

  .hero-male-bubble {
    margin-top: 50rem !important;
    margin-left: 0rem !important;
    width: 40% !important;
  }

  .hero-female-img {
    top: 26.5rem !important;
    margin-left: 36.5rem !important;
    width: 20% !important;
  }

  .hero-female-bubble {
    top: 26.5rem !important;
    margin-left: 27rem !important;
    width: 38% !important;
  }

  .hero-male-2-img {
    margin-top: 57rem !important;
    width: 22% !important;
    margin-left: 45.5rem !important;
  }

  .hero-male-2-bubble {
    margin-top: 57.5rem !important;
    margin-left: 36rem !important;
    width: 36% !important;
  }

  .hero-analytics-icon {
    width: 66% !important;
    margin-top: 60.5rem !important;
    margin-left: 36rem !important;
  }

}


@media only screen and (min-width: 1100px) and (max-width: 1199px) {
  .hero-section {
    margin-top: -49% !important;
    /* adjust value as needed */
  }

  .hero-right {
    padding-left: 5rem;
  }
}

@media (min-width: 1400px) and (max-width: 2559.98px) {

  /* Hero - section   */

  .hero-section {

    margin-top: -28%;
    height: 100%;
  }


  .hero-chat-img img {
    width: 24%;
  }

  .hero-heading {
    font-size: 2.6rem;
    line-height: 3rem;
    width: 100%;
  }

  .hero-subtext {
    font-family: 'DM Sans';
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1rem;
  }

  .hero-dashboard-main {
    max-width: calc(100% + 15rem);
    margin-top: 4rem;
  }

  .hero-right {
    position: relative;
    padding: 0;
    min-height: 100%;
    margin-top: 0rem;
  }

  .hero-wrap {
    margin-right: 0;
    margin-left: 0;
    min-height: 100vh;
    /* ← row must also stretch full height */
    align-items: stretch !important;
    /* override Bootstrap's align-items-start */
  }

  .right-dash-wrapper {
    max-width: 16rem;
    min-height: 0rem;
  }

  .hero-male-img {
    top: 45rem;
    width: 25%;
    left: 8rem;
  }

  .hero-male-bubble {
    margin-top: 44rem;
    margin-left: -1rem;
    width: 55%;
  }

  .hero-female-img {
    top: 26.5rem;
    margin-left: 31.5rem;
    width: 24%;
  }

  .hero-female-bubble {
    top: 26.2rem;
    margin-left: 23rem;
    width: 50%;
  }


  .hero-male-2-img {
    margin-top: 53rem;
    width: 28%;
    margin-left: 39rem;
  }

  .hero-male-2-bubble {
    margin-top: 53rem;
    margin-left: 30rem;
    width: 55%;
  }

  .hero-analytics-icon {
    width: 100%;
    margin-top: 55.5rem;
    margin-left: 30rem;
    z-index: 2;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {


  /* Hero-Section */
  .hero-section {
    margin-top: -23%;
    height: 100%;
  }

  .hero-heading {
    font-size: 2rem;
    line-height: 3rem;
  }

  .hero-dashboard-main {
    margin-top: -1.5rem;
    max-width: calc(100% + 10rem);
  }

  .hero-chat-img img {
    margin-left: 1rem;
    margin-top: 22rem;
    width: 20%;
  }

  .right-dash-wrapper {
    width: 100%;
    max-width: 17rem;
    min-height: 30rem;
  }

  .hero-male-img {
    top: 37.5rem;
    width: 20%;
    left: 7rem;
  }

  .hero-male-bubble {
    margin-top: 36.5rem;
    margin-left: -1rem;
  }

  .hero-female-img {
    top: 18.5rem;
    margin-left: 27rem;
    width: 28%;
  }

  .hero-female-bubble {
    top: 19rem;
    margin-left: 19rem;
    width: 45%;
  }


  .hero-male-2-img {
    margin-top: 44rem;
    margin-left: 34rem;
  }

  .hero-male-2-bubble {
    margin-top: 43.5rem;
    margin-left: 25rem;
    width: 50%;
  }

  .hero-analytics-icon {
    width: 70%;
    margin-top: 46.5rem;
    margin-left: 27rem;
  }
}



/* ABOUT - SECTION and it Media Query */

.about-section {
  overflow: hidden;
}

.about-wrap {
  flex-wrap: wrap;
}

.about-heading {
  width: 70%;
}

.about-subtext {
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.about-left {
  flex: 0 0 70%;
}

.about-us-img img {
  width: 60%;
  display: block;
}

.about-right {
  flex: 1 1 30%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.right-drop-wrapper {
  position: relative;
  width: 100%;
  max-width: 20rem;
  min-height: 60rem;
}

.about-figure-wrap {
  position: absolute;
  top: 2%;
  right: 2%;
  width: 40%;
  display: flex;
  justify-content: flex-end;
  z-index: 3;
  opacity: 0;
  transform: translateX(120px);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.about-section.in-view .about-figure-wrap {
  opacity: 1;
  transform: translateX(0);
}

.human-img {
  width: 90%;
  height: auto;
  display: block;
  margin-right: 6%;
}

.drop-1 {
  position: absolute;
  top: -16%;
  right: -8%;
  z-index: 2;
  max-width: calc(100% + 8rem);
  opacity: 0;
  transform: translateY(-160px);
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition-delay: 0.05s;
}

.drop-2 {
  position: absolute;
  top: 43%;
  right: 23%;
  z-index: 1;
  max-width: calc(100% + 7rem);
  opacity: 0;
  transform: translateY(-190px);
  transition: transform 0.95s ease, opacity 0.95s ease;
  transition-delay: 0.2s;
}

.drop-3 {
  position: absolute;
  top: 40%;
  right: -6%;
  z-index: 0;
  max-width: calc(100% + 12rem);
  opacity: 0;
  transform: translateY(-220px) rotate(0deg);
  transition: transform 1.1s ease, opacity 1.1s ease;
  transition-delay: 0.35s;
}

.about-section.in-view .drop-1,
.about-section.in-view .drop-2,
.about-section.in-view .drop-3 {
  opacity: 1;
}

.about-section.in-view .drop-1 {
  transform: translateY(0);
}

.about-section.in-view .drop-2 {
  transform: translateY(0);
}

.about-section.in-view .drop-3 {
  transform: translateY(0) rotate(0deg);
}


@media (min-width: 2560px) {

  /* ABOUT - SECTION */
  .about-heading {
    width: 100% !important;
    font-size: 4rem !important;
  }

  .about-subtext {
    width: 100% !important;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 2rem !important;
  }

  .about-us-img img {
    max-width: 50% !important;
  }

  .right-drop-wrapper {
    margin-right: 20%;
    margin-top: 20%;
    min-height: 46rem;
  }

  .human-img {
    width: 130% !important;
    margin-right: 30% !important;
    margin-top: -86% !important;
  }

  .drop-1 {
    top: -37% !important;
    right: -6% !important;
    max-width: calc(100% + 20rem);
  }

  .drop-2 {
    position: absolute;
    top: 32% !important;
    right: 21% !important;
    max-width: calc(100% + 20rem);
  }

  .drop-3 {
    position: absolute;
    top: 30% !important;
    right: -6% !important;
    max-width: calc(100% + 25rem);
  }
}

@media (min-width: 1400px) and (max-width: 2559.98px) {
  /* About - section */

  .about-heading {
    width: 70%;
    font-size: 3rem !important;
  }

  .about-subtext {
    width: 100% !important;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.6rem !important;
  }

  .about-us-img img {
    width: 55%;
  }

  .human-img {
    width: 90%;
    height: auto;
    display: block;
    margin-right: 11%;
    margin-top: 10%;
  }

  .drop-1 {
    top: -12%;
    right: -8%;
  }

  .drop-2 {
    top: 36%;
    right: 16%;
  }

  .drop-3 {
    top: 33%;
    right: -6%;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {

  /* About-Section */

  .about-heading {
    width: 100% !important;
    font-size: 2rem !important;
  }

  .about-subtext {
    width: 100% !important;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.3rem !important;
  }

  .about-us-img img {
    width: 55% !important;
  }

  .right-drop-wrapper {
    margin-right: 20%;
    margin-top: 22%;
    width: 100%;
    max-width: 16rem;
  }

  .human-img {
    position: absolute;
    width: 96% !important;
    margin-right: 24% !important;
    margin-top: -96% !important;
  }

  .drop-1 {
    position: absolute;
    top: -19% !important;
    right: -6% !important;
    max-width: calc(100% + 6rem);
  }

  .drop-2 {
    position: absolute;
    top: 19% !important;
    right: 13% !important;
    max-width: calc(100% + 6rem);
  }

  .drop-3 {
    position: absolute;
    top: 20% !important;
    right: -4% !important;
    max-width: calc(100% + 6rem);
  }

}


@media (min-width: 992px) and (max-width: 1199.98px) {

  .hero-section {
    margin-top: -55%;
  }

  .hero-heading {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .hero-subtext {
    font-size: 0.8rem;
    width: 100%;
    margin-top: 0;
  }

  .hero-chat-img img {
    width: 21%;
    padding-top: 10rem;
  }

  .btn-get-started {
    padding: 0.5rem;
    width: 32%;
    font-size: 14px;
    margin-right: 0.5rem;
  }

  .btn-book-demo {
    padding: 0.5rem;
    width: 32%;
    font-size: 14px;
    margin-right: 0.5rem;

  }

  .hero-dashboard-main {
    max-width: calc(100% + 5rem);
    left: 1rem;
    top: 32rem;
  }

  .hero-male-img {
    position: absolute;
    top: 52.5rem;
    width: 15%;
    left: 3rem;
  }

  .hero-male-bubble {
    position: absolute;
    margin-top: 52rem;
    margin-left: -3rem;
    width: 30%;
  }

  .hero-female-img {
    position: absolute;
    top: 35.5rem;
    margin-left: 22rem;
    width: 16%;
  }

  .hero-female-bubble {
    position: absolute;
    top: 35rem;
    margin-left: 16rem;
    width: 30%;
  }

  .hero-male-2-bubble {
    margin-top: 57rem;
    margin-left: 21rem;
    width: 30%;
    position: absolute;
  }

  .hero-male-2-img {
    position: absolute;
    margin-top: 57rem;
    width: 15%;
    margin-left: 27rem;
  }

  .hero-male-2-bubble {
    margin-top: 58rem;
    margin-left: 18rem;
    width: 30%;
    position: absolute;
  }

  .hero-analytics-icon {
    width: 50%;
    margin-top: 59rem;
    margin-left: 21rem;
  }

  .empower-section {
    margin-top: -33rem;
  }


  .empower-heading {
    font-size: 2rem;
    margin-top: 4rem;
  }

  .about-heading {
    width: 100%;
    font-size: 1.5rem;
  }

  .about-subtext {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem !important;
  }

  .about-us-img img {
    width: 64%;
  }

  .right-drop-wrapper {
    width: 100%;
    max-width: 12rem;
  }

  .human-img {
    width: 90%;
    margin-right: 14%;
    margin-top: 10%;
  }

  .drop-1 {
    top: -8%;
    right: -8%;
    width: calc(100% + 6rem);
  }

  .drop-2 {
    top: 23%;
    right: 16%;
    width: calc(100% + 6rem);
  }

  .drop-3 {
    top: 22%;
    right: -6%;
    width: calc(100% + 8rem);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  .hero-section {
    margin-top: -54rem;
  }

  .hero-heading {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .hero-subtext {
    font-size: 0.8rem;
    width: 100%;
    margin-top: 0;
  }

  .hero-right {
    padding-top: 18rem;
    padding-left: 0rem;
  }

  .hero-left {
    padding-top: 4rem;
  }

  .hero-chat-img img {
    width: 26%;
    padding-top: 26rem;
  }

  .btn-get-started {
    padding: 0.5rem;
    width: 32%;
    font-size: 14px;
    margin-right: 0.5rem;
  }

  .btn-book-demo {
    padding: 0.5rem;
    width: 32%;
    font-size: 14px;
    margin-right: 0.5rem;

  }

  .hero-dashboard-main {
    max-width: calc(100% + 2rem);
    left: 1rem;
    top: 34rem;
  }

  .hero-male-img {
    position: absolute;
    top: 52.5rem;
    width: 15%;
    left: 2.5rem;
  }

  .hero-male-bubble {
    position: absolute;
    margin-top: 52rem;
    margin-left: -3rem;
    width: 30%;
  }

  .hero-female-img {
    position: absolute;
    top: 36rem;
    margin-left: 19rem;
    width: 18%;
  }

  .hero-female-bubble {
    position: absolute;
    top: 36rem;
    margin-left: 12rem;
    width: 30%;
  }

  .hero-male-2-bubble {
    margin-top: 57rem;
    margin-left: 21rem;
    width: 30%;
    position: absolute;
  }

  .hero-male-2-img {
    position: absolute;
    margin-top: 57rem;
    width: 15%;
    margin-left: 21rem;
  }

  .hero-male-2-bubble {
    margin-top: 56rem;
    margin-left: 16rem;
    width: 30%;
    position: absolute;
  }

  .hero-analytics-icon {
    width: 50%;
    margin-top: 59rem;
    margin-left: 15rem;
  }


  .about-heading {
    width: 90%;
    font-size: 1.2rem;
  }

  .about-subtext {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem !important;
  }

  .right-drop-wrapper {
    width: 100%;
    max-width: 8rem;
  }

  .human-img {
    width: 90%;
    margin-right: 15%;
    margin-top: -8%;
  }

  .drop-1 {
    top: -10%;
    right: -24%;
    width: calc(100% + 7rem);
  }

  .drop-2 {
    top: 16%;
    right: 4%;
    width: calc(100% + 7rem);
  }

  .drop-3 {
    top: 16%;
    right: -20%;
    width: calc(100% + 8rem);
  }

  .faq-illustration {
    display: none;
  }
}

@media (min-width: 578px) and (max-width: 767.98px) {
  .about-heading {
    width: calc(100% + 90px);
    font-size: 1.5rem;
  }

  .about-subtext {
    width: calc(100% + 130px);
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 13px !important;
  }

  .about-us-dash {
    content: url(https://leapsurgebi.blob.core.windows.net/sync-application/other_images/About_us_Mobile.svg);
    width: 100% !important;
    margin-left: 20%;
  }

  .human-img {
    display: none;
  }

  .drop-1 {
    display: none;
  }

  .drop-2 {
    display: none;
  }

  .drop-3 {
    display: none;
  }
}

@media (max-width: 575.98px) {

  .hero-section {
    background-image: url(https://leapsurgebi.blob.core.windows.net/sync-application/other_images/Tab_Home_bg.svg) !important;
    padding-top: 36rem !important;
    margin-top: -58rem;
  }

  .hero-male-img {
    display: none;
  }

  .hero-male-bubble {
    display: none;
  }

  .hero-female-bubble {
    display: none;
  }

  .hero-male-2-bubble {

    display: none;
  }

  .about-section {
    overflow: hidden;
    margin-top: -57rem;
  }


  .hero-dashboard-main {
    display: none;
  }

  .hero-heading {
    font-size: 1.5rem;
    line-height: 2.6rem;
  }

  .about-heading {
    width: calc(100% + 90px);
    font-size: 1.5rem;
  }

  .about-subtext {
    width: calc(100% + 100px);
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 14px !important;
  }

  .about-us-dash {
    content: url("https://leapsurgebi.blob.core.windows.net/sync-application/other_images/About_us_Mobile.svg") !important;
    width: 100% !important;
    margin-left: 20%;
  }

  .human-img {
    display: none;
  }

  .drop-1 {
    display: none;
  }

  .drop-2 {
    display: none;
  }

  .drop-3 {
    display: none;
  }
}



@media (min-width: 3840px) {


  /* left side section */

  .hero-chat-img {
    margin-top: 28rem !important;
    position: relative;
    top: -2rem;
  }

  .hero-heading {
    font-size: 7rem;
    line-height: 8rem;
  }

  .hero-button {
    padding-top: 2rem !important;
  }

  .btn-get-started,
  .btn-book-demo {
    width: 20%;
    font-size: 2rem;
    padding: 2rem;
    border-radius: 20px !important;
  }

  .hero-subtext {
    font-size: 2.6rem;
    margin-top: 2rem;
  }

  /* right side section */

  .hero-dashboard-wrap {
    margin-top: 2rem;
    padding-left: 6rem;
  }

  .right-dash-wrapper {
    position: relative;
    width: 100%;
    max-width: 62rem !important;
    min-height: 60rem !important;
    margin-left: -4%;
  }

  .hero-male-img {
    position: absolute;
    top: 66rem;
    width: 16%;
    left: 12rem;
  }

  .hero-male-bubble {
    position: absolute;
    margin-top: 64rem;
    margin-left: -17rem;
    width: 40%;
  }


  .hero-male-2-img {
    position: absolute;
    top: 82rem !important;
    width: 20% !important;
    Left: 50rem !important;
  }


  .hero-female-bubble {
    position: absolute;
    top: 9rem;
    margin-left: rem;
    width: 37%;
  }



  .hero-female-img {
    position: absolute;
    top: 10rem;
    left: 27rem;
    width: 19%;
  }

  .hero-male-2-bubble {
    margin-top: 85rem !important;
    margin-left: 61rem !important;
    width: 36%;
  }

  .hero-male-2-img {
    position: absolute;
    top: 28rem !important;
    width: 20% !important;
    Left: 36rem !important;
  }

  .hero-analytics-icon {
    position: absolute;
    width: 76%;
    margin-top: 92rem;
    margin-left: 63rem;
    z-index: 2;
  }
}
