@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://cdn.hugeicons.com/font/hgi-stroke-rounded.css");

:root {
  /* colors */
  --color-white: #ffffff;
  --color-blue: #074fae;
  --cc-blue: 7 79 174;
  --gradient-blue: rgba(7, 79, 174, 70%);
  --gradient-black: rgba(0, 0, 0, 1);
  --primary-color: var(--color-blue);
  --btn-padding-inline: 26px;
  --btn-padding-block: 8px;
  --btn-border-radius: 100px;
  --container-padding: clamp(1rem, 4vw, 3.125rem);
  --layout-padding-block: 4rem;
  --heading-1: clamp(2rem, 4vw + 1rem, 4rem);
  --heading-2: clamp(1.5rem, 4vw + 1rem, 3.25rem);
  /* --------------- */
  --blue: #1560bd;
  --black: #111111;
  --blue-dark: #0e4ea0;
  --blue-panel: #1560bd;
  --gray-sub: #555555;
  --btn-outline-border: #1560bd;
  --star-on: #f5a623;
  --star-off: #ccc;
  /* ------------------- */
  --card-w: 340px;
  --card-h: 440px;
  /* -------------------- */
  --banner-bg: #ddeaf5;
  --banner-border: #c5dae8;
  --text-dark: #0d1b2a;
  --text-muted: #5a7a96;
  --btn-bg: #1a4fd6;
  --btn-hover: #1540b8;
  --btn-text: #ffffff;
}
@media (max-width: 768px) {
  :root {
    --layout-padding-block: 3rem;
  }
}
@media (max-width: 576px) {
  :root {
    --layout-padding-block: 2rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  line-height: 1.2;
}
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* ********************************************************************************** */
/* colors classes */
.color-primary {
  color: var(--primary-color);
}
.bg-color-primary {
  background-color: var(--primary-color);
}
.ss-bg-gradient {
  background: linear-gradient(
    145deg,
    rgba(255, 0, 208, 0.07) 0%,
    rgba(0, 200, 255, 0.08) 37%,
    rgba(0, 100, 88, 0.07) 69%,
    rgba(7, 79, 174, 0.07) 100%
  );
}
/* ********************************************************************************** */
/* layout styleing start */
.container-fluid {
  padding-inline: var(--container-padding);
}
section {
  padding-block: var(--layout-padding-block);
}
/* ********************************************************************************** */
/* heading style start */
.heading {
  font-size: var(--heading-1);
  font-weight: 700;
}
.sub-heading {
  font-size: var(--heading-2);
  font-weight: 700;
}
.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6 {
  font-weight: 600;
}
.heading-1 {
  font-size: calc(1.375rem + 1.5vw);
}
.heading-2 {
  font-size: calc(1.325rem + 0.9vw);
}
.heading-3 {
  font-size: calc(1.3rem + 0.6vw);
}
.heading-4 {
  font-size: calc(1.275rem + 0.3vw);
}
.heading-5 {
  font-size: 1.25rem;
}
.heading-6 {
  font-size: 1rem;
}
/* ********************************************************************************** */
.rotate-90 {
  transform: rotate(90deg);
}
.rotate-180 {
  transform: rotate(180deg);
}
.rotate-270 {
  transform: rotate(270deg);
}
/* Horizontal Flip */
.flip-horizontal {
  transform: scaleX(-1);
}
/* Vertical Flip */
.flip-vertical {
  transform: scaleY(-1);
}
/* Both Directions */
.flip-both {
  transform: scale(-1, -1);
}
/* ********************************************************************************** */
/* buttons style start */
.primary-btn {
  width: max-content;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding-inline: var(--btn-padding-inline);
  padding-block: var(--btn-padding-block);
  border-radius: var(--btn-border-radius);
  background-color: var(--primary-color);
  color: var(--color-white);
  border: 1px solid transparent;
  transition: color 350ms ease-in-out;

  &:hover {
    background-color: var(--color-white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
}
.secondary-btn {
  width: max-content;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding-inline: var(--btn-padding-inline);
  padding-block: var(--btn-padding-block);
  border-radius: var(--btn-border-radius);
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: color 350ms ease-in-out;

  &:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
    border: 1px solid var(--color-white);
  }
}
/* ------------------------------------------------------------ */
/* rotate */
.rotate-ani {
  transform-origin: 50% 50%;
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/* ------------------------------------------------------------ */
/* FAQ section style start */
.home-faq-section {
  background-color: #f1f1f1;
  padding: 80px 0;
}
.home-faq-section .faq-left h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
}
.home-faq-section .faq-left p {
  max-width: 340px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}
.home-faq-section .faq-divider {
  border-left: 1px dashed #cfd4da;
  height: 100%;
}
.home-faq-section .faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #e5e7eb;
  padding: 22px 0;
  background-color: #f1f1f1;
}
.home-faq-section .faq-accordion .accordion-button {
  padding: 0;
  background: none;
  box-shadow: none;
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  column-gap: 12px;
  align-items: center;
}
.home-faq-section .faq-accordion .accordion-button::after {
  display: none;
}
.home-faq-section .faq-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #c7d2fe;
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-faq-section .faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}
.home-faq-section .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}
.home-faq-section .accordion-button:not(.collapsed) .faq-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: url(../svg/minus-sign-stroke-rounded.svg);
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}
.home-faq-section .accordion-button.collapsed .faq-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: url(../svg/add-01-stroke-rounded.svg);
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}
.home-faq-section .faq-answer {
  padding-top: 18px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}
/* FAQ section style end */
/* ----------------------------------------------- */
/* ── NAVBAR ── */
.navbar-brand img {
  height: 36px;
}
header.site-header {
  padding-top: 2rem;
}
.hero {
  text-align: center;
  padding-top: 1.8rem;
}
.hero h1 {
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  max-width: 36ch;
  margin-inline: auto;
}
.hero h1 .highlight {
  color: var(--blue);
}
.hero .subhead {
  --bs-text-opacity: 1;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--bs-secondary-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-inline: auto;
}
.btn-group-hero {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* rotate svg style */
.rotating-text-wrapper {
  --size: 160px;
  width: var(--size);
  height: var(--size);
  position: relative;

  &:hover .text-wrapper {
    animation-play-state: paused;
  }
}
.rotating-text-wrapper .icon-wrapper {
  --icon-size: 40px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  & > img {
    width: var(--icon-size);
    height: var(--icon-size);
  }
}
.rotating-text-wrapper .text-wrapper {
  --icon-size: 160px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  & > img {
    width: var(--icon-size);
    height: var(--icon-size);
  }
}

/* -------------------------------------- */
.video-container {
  position: relative;
  width: 90%;
  height: 480px;
  margin-inline: auto;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  overflow: hidden;
}
.video-container button.icon {
  all: unset;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background-color: transparent;
}
.thumbnail,
.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-iframe {
  display: none; /* Hidden until clicked */
}

/* ── VIDEO THUMBNAIL ── */
.video-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
}

/* ── RESPONSIVE ── */
@media (max-width: 576px) {
  .hero {
    padding-top: 36px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------------------------- */
/* slider */

.services-section {
  background: linear-gradient(160deg, #dde8f5 0%, #edf3fb 40%, #f5f8fd 100%);
  padding: 72px 0 60px;
  overflow: hidden;
}

/* ── HEADING ── */
.services-section h2 {
  letter-spacing: -0.5px;
  color: var(--black);
  margin-bottom: 14px;
}

.services-section .subhead {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--bs-secondary-color);
  margin-bottom: 0;
  max-width: 800px;
  margin-inline: auto;
}


/* ── SECTION ── */
.ps-section {
  background: #fff;
}

/* ── HEADING ── */
.ps-section h2 {
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.ps-section .subhead {
  max-width: 680px;
  margin: 0 auto;
}

/* ── PANELS WRAPPER ── */
.panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 48px;
}

/* ── SHARED PANEL ── */
.panel {
  padding: 44px 44px 0;
  position: relative;
  overflow: hidden;
}

/* Problem panel */
.panel-problem {
  background: #fff;
  border: 1px solid #e8edf3;
}

/* Solution panel */
.panel-solution {
  background: var(--blue-panel);
  color: #fff;
}

/* ── LABEL ── */
.panel-label {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.panel-problem .panel-label {
  color: var(--black);
}
.panel-solution .panel-label {
  color: rgba(255, 255, 255, 0.85);
}

/* ── PANEL HEADING ── */
.panel h3 {
  line-height: 1.25;
  margin-bottom: 18px;
}
.panel-problem h3 {
  color: var(--black);
}
.panel-solution h3 {
  color: #fff;
}

/* ── PANEL BODY TEXT ── */
.panel p.body-text {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 28px;
}
.panel-problem p.body-text {
  color: #555;
}
.panel-solution p.body-text {
  color: rgba(255, 255, 255, 0.82);
}

/* ── CHECKLIST ── */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding: 13px 16px;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
}

.panel-problem .checklist li {
  background: #e8f2f2;
  color: #1a3a3a;
}

.panel-solution .checklist li {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Checkmark icon */
.checklist li::before {
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 10.5l4.5 4.5 7.5-9' stroke='%231560BD' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.panel-solution .checklist li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 10.5l4.5 4.5 7.5-9' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── BOTTOM ILLUSTRATION ROW ── */
.illus-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-height: 180px;
}

.illus-row .illus-img {
  display: block;
  max-height: 190px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Problem illustration — woman figure left + path graphic right */
.illus-problem-person {
  align-self: flex-end;
  max-height: 170px;
}
.illus-problem-path {
  align-self: center;
  max-height: 120px;
  flex: 1;
  text-align: right;
}

/* Solution illustration — gardener figure */
.illus-solution-person {
  align-self: flex-end;
  max-height: 190px;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .ps-section {
    padding: 48px 0 0;
  }
  .panels {
    grid-template-columns: 1fr;
  }
  .panel {
    padding: 36px 24px 0;
  }
  .panel-problem {
    border-bottom: none;
  }
  .illus-row {
    min-height: 140px;
  }
  .illus-problem-person {
    max-height: 130px;
  }
  .illus-problem-path {
    max-height: 90px;
  }
  .illus-solution-person {
    max-height: 150px;
  }
}

@media (max-width: 480px) {
  .panel {
    padding: 28px 16px 0;
  }
  .panel h3 {
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------------------- */
/* ── SECTION ── */
.process-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  min-height: 620px;
}

/* ── LEFT TEXT BLOCK ── */
.process-left {
  position: absolute;
  top: 72px;
  left: clamp(20px, 4vw, 64px);
  max-width: 460px;
  z-index: 10;
}

.process-left h2 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* ── SVG STAGE ── */
.process-svg-wrap {
  width: 100%;
  overflow: visible;
}

/* Path animation */
#wavePath {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2s ease;
}
.process-section.animate #wavePath {
  stroke-dashoffset: 0;
}

/* Node cards */
.node-card {
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.process-section.animate .node-card {
  opacity: 1;
  transform: scale(1);
}
.process-section.animate .node-card:nth-child(1) {
  transition-delay: 0.3s;
}
.process-section.animate .node-card:nth-child(2) {
  transition-delay: 1.3s;
}
.process-section.animate .node-card:nth-child(3) {
  transition-delay: 2.3s;
}

/* step content */
.step-content {
  font-size: 14px;
  margin: 8px 0 0;
}
.step-content {
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* Step labels */
.step-label {
  opacity: 0;
  transition: opacity 0.4s ease;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 18px;
}
.process-section.animate .step-label,
.process-section.animate .step-content {
  opacity: 1;
}
.process-section.animate .step-label:nth-child(1),
.process-section.animate .step-content:nth-child(1) {
  transition-delay: 0.4s;
}
.process-section.animate .step-label:nth-child(2),
.process-section.animate .step-content:nth-child(2) {
  transition-delay: 0.8s;
}
.process-section.animate .step-label:nth-child(3),
.process-section.animate .step-content:nth-child(3) {
  transition-delay: 1.2s;
}

/* ── MOBILE VERTICAL LAYOUT ── */
.process-mobile {
  display: none;
  padding: 0 24px;
}

.mobile-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.35;
  margin-bottom: 24px;
}

.mobile-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 40px;
}

.mobile-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50px;
  width: 2px;
  height: calc(100% - 44px);
  background: linear-gradient(to bottom, var(--blue), transparent);
}

.mobile-node {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--bs-box-shadow);
}

.mobile-node svg text {
  font-size: 18px;
  font-weight: 800;
  fill: var(--primary-color);
}

.mobile-step-content {
  padding-top: 8px;
}
.mobile-step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 6px;
}
.mobile-step-text {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.65;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .process-desktop {
    display: none !important;
  }
  .process-mobile {
    display: block;
  }
  .process-section {
    min-height: auto;
    padding: 52px 0 60px;
  }
}

.node-card .icon-text {
  font-size: 26px;
  font-weight: 800;
  fill: var(--primary-color);
}

/* Slider container */
.services-section {
  position: relative;
}
.services-section::after,
.services-section::before {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 20%;
  z-index: 1;
}
.services-section::after {
  left: 0;
  background: linear-gradient(
    to right,
    rgb(255, 255, 255) 30%,
    transparent 100%
  );
}
.services-section::before {
  right: 0;
  background: linear-gradient(
    to left,
    rgb(255, 255, 255) 30%,
    transparent 100%
  );
}
.services-section .slider-wrap {
  position: relative;
  width: 100vw;
  height: calc(var(--card-h) + 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-section .slider-track {
  position: relative;
  width: var(--card-w);
  height: var(--card-h);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Individual cards */
.services-section .card {
  position: absolute;
  width: var(--card-w);
  height: var(--card-h);
  left: 0;
  top: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
}
.services-section .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.services-section .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: opacity 0.4s;
}
.services-section .card h4 {
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.5rem;
  transform: translateY(10px);
  transition: all 0.4s 0.15s;
}
.services-section .card p {
  font-size: 0.825rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  transition: all 0.4s 0.2s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
/* Active center card */
.services-section .card.active {
  z-index: 10;
  transform: translateX(0) scale(1);
}
.services-section .card.active .card h2 {
  opacity: 1;
  transform: translateY(0);
}
.services-section .card.active p {
  max-height: 100px;
  opacity: 1;
}
.services-section .card.active img {
  transform: scale(1.05);
}
/* Side cards */
.services-section .card.prev-1 {
  z-index: 7;
  transform: translateX(calc(-1 * var(--card-w) * 0.85)) scale(0.88);
  /* filter: brightness(0.55); */
}
.services-section .card.prev-2 {
  z-index: 5;
  transform: translateX(calc(-1 * var(--card-w) * 1.55)) scale(0.76);
  /* filter: brightness(0.35); */
}
.services-section .card.next-1 {
  z-index: 7;
  transform: translateX(calc(var(--card-w) * 0.85)) scale(0.88);
  /* filter: brightness(0.55); */
}
.services-section .card.next-2 {
  z-index: 5;
  transform: translateX(calc(var(--card-w) * 1.55)) scale(0.76);
  /* filter: brightness(0.35); */
}
/* Hidden cards */
.services-section
  .card:not(.active):not(.prev-1):not(.prev-2):not(.next-1):not(.next-2) {
  transform: translateX(0) scale(0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
/* Clickable side cards */
.services-section .card.prev-1,
.services-section .card.prev-2,
.services-section .card.next-1,
.services-section .card.next-2 {
  cursor: pointer;
}
.services-section .card.prev-1:hover {
  filter: brightness(0.75);
}
.services-section .card.next-1:hover {
  filter: brightness(0.75);
}
/* Navigation arrows */
.services-section .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 20;
  backdrop-filter: blur(8px);
}
.services-section .nav-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.08);
}
.services-section .nav-btn.prev {
  left: max(1.5rem, calc(50% - var(--card-w) * 1.25));
}
.services-section .nav-btn.next {
  right: max(1.5rem, calc(50% - var(--card-w) * 1.25));
}
/* Dots */
.services-section .dots {
  display: flex;
  gap: 8px;
  margin-top: -2rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.services-section .dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.4s;
}
.services-section .dot.active {
  width: 24px;
  background: var(--primary-color);
}
/* ── SECTION ── */
.about-section {
  background: linear-gradient(to bottom, #fff 0%, #f1f1f1 100%);
  padding: 64px 0 0;
}
/* ── AUTHOR ── */
.author-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  margin-top: 28px;
}
.author-title {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #777;
}

/* ── CTA BUTTON ── */
.btn-solid-blue {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  text-decoration: none;
  display: inline-block;
  margin-top: 36px;
  transition: background 0.2s;
}
.btn-solid-blue:hover {
  background: var(--blue-dark);
  color: #fff;
}
/* ── CIRCULAR BADGE ── */
.circle-badge {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  z-index: 10;
}
.circle-badge svg {
  width: 160px;
  height: 160px;
}
/* ── RIGHT VISUAL COLUMN ── */
.visual-col {
  position: relative;
  min-height: 520px;
}

.person-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 520px;
  object-fit: contain;
  z-index: 2;
  max-width: 100%;
}
/* ── FLOATING CARDS ── */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 14px 16px;
  z-index: 5;
  font-family: "Inter", sans-serif;
}
/* Pie chart card */
.card-pie {
  left: 2%;
  top: 10%;
  width: 220px;
}
.card-pie .card-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.card-pie .donut-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.donut-label {
  font-size: 0.6rem;
  color: #777;
  text-align: center;
}

/* Revenue bar chart card */
.card-revenue {
  right: 0;
  top: 8%;
  width: 200px;
}
.card-revenue .card-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}
.bar-group {
  display: flex;
  gap: 2px;
  align-items: flex-end;
}
.bar {
  width: 8px;
  border-radius: 3px 3px 0 0;
}
.bar-days {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}
.bar-day {
  font-size: 0.55rem;
  color: #aaa;
  width: 18px;
  text-align: center;
}

/* Realtime users card */
.card-users {
  left: 12%;
  bottom: 14%;
  width: 180px;
}
.card-users .card-sub {
  font-size: 0.65rem;
  color: #888;
  margin-bottom: 2px;
}
.card-users .card-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.card-users .big-num {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  line-height: 1;
}
.card-users .growth {
  font-size: 0.7rem;
  color: #22b573;
  margin-top: 4px;
}

/* Business company card */
.card-business {
  right: 2%;
  bottom: 20%;
  width: 180px;
}
.card-business .biz-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.biz-icon {
  width: 28px;
  height: 28px;
  background: #e8f0fe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
}
.biz-sub {
  font-size: 0.62rem;
  color: #888;
}
.biz-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
}
.biz-stats {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.biz-stat {
  font-size: 0.62rem;
  color: #22b573;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .visual-col {
    min-height: 420px;
  }
  .person-img {
    height: 420px;
  }
  .card-pie {
    width: 170px;
    top: 4%;
  }
  .card-revenue {
    width: 160px;
  }
  .circle-badge {
    left: -20px;
    width: 130px;
    height: 130px;
  }
  .circle-badge svg {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 48px 0 0;
  }
  .visual-col {
    min-height: 360px;
    margin-top: 40px;
  }
  .person-img {
    height: 340px;
  }
  .card-pie {
    left: 0;
    top: 2%;
    width: 150px;
  }
  .card-revenue {
    right: 0;
    top: 2%;
    width: 145px;
  }
  .card-users {
    left: 0;
    bottom: 10%;
    width: 150px;
  }
  .card-business {
    right: 0;
    bottom: 12%;
    width: 150px;
  }
  .circle-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .card-revenue,
  .card-business {
    display: none;
  }
}

/* -------------------------------------------------- */
/* ── BANNER ── */
.fixed-bottom{
background-color: var(--banner-bg);
}
.seo-banner {  
  border-bottom: 1px solid var(--banner-border);
  padding: 14px 0px;
  width: 100%;
}

.seo-banner__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}

/* ── TIMER BLOCK ── */
.seo-banner .timer-block {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
  border-right: 1px solid var(--banner-border);
  padding-right: 28px;
}

.seo-banner .timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 46px;
}

.seo-banner .timer-unit__value {
  font-size: clamp(0.75rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  tabular-nums: true;
  font-variant-numeric: tabular-nums;
}

.seo-banner .timer-unit__label {
  font-size: clamp(0.25rem, 3vw, 0.6rem);
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  /* letter-spacing: 0.08em; */
  margin-top: 3px;
}

.seo-banner .timer-colon {
  font-size: clamp(0.8rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  padding: 0 2px;
  margin-bottom: 16px;
  opacity: 0.7;
}

/* ── TEXT BLOCK ── */
.seo-banner .banner-text {
  flex: 1;
}

.seo-banner .banner-text__eyebrow {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2px;
}

.seo-banner .banner-text__headline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ── CTA BUTTON ── */
.seo-banner .btn-seo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 50px;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(26, 79, 214, 0.25);
}

.seo-banner .btn-seo:hover {
  background-color: var(--btn-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 79, 214, 0.35);
  color: #fff;
}

.seo-banner .btn-seo:active {
  transform: translateY(0);
}

.seo-banner .btn-seo__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.8rem;
  transition: background 0.2s;
}

.seo-banner .btn-seo:hover .btn-seo__arrow {
  background: rgba(255, 255, 255, 0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .seo-banner {
    padding: 4px 16px;
  }

  .seo-banner .seo-banner__inner {
    /* flex-wrap: wrap; */
    /* gap: 14px; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-align: center;
  }

  .seo-banner .timer-block {
    border-right: none;
    padding-right: 0;
    /* border-bottom: 1px solid var(--banner-border); */
    /* padding-bottom: 12px; */
    justify-content: start;
  }

  .seo-banner .banner-text {
    text-align: center;
    width: 100%;
  }

  .services-section::after,
  .services-section::before {
    content: none;
  }
}

@media (max-width: 440px) {
  .seo-banner__inner {
    gap: 0;
  }
  .seo-banner .timer-block {
    gap: 0;
  }
  .seo-banner .timer-unit {
    min-width: 36px;
  }
  .seo-banner .timer-unit__label {
    letter-spacing: 0;
  }
  .seo-banner .btn-seo {
    padding: 6px 12px;
  }
  .seo-banner .btn-seo__arrow {
    display: none;
  }
}

/* ── COLON BLINK ── */
@keyframes blink {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.15;
  }
}
.seo-banner .timer-colon {
  animation: blink 1s step-start infinite;
}

#sticky-footer {
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.3s ease,
    opacity 0.3s ease;
  transition-delay: 0.2s;
}

/* ------------- */
.bd-img-wrapper {
  position: relative;
  height: 480px !important;
  z-index: 10;
}
.bd-img-wrapper > img {
  position: absolute;
  bottom: -5rem;
  left: 0;
}

@media (max-width: 1024px) {
  .bd-img-wrapper > img {
    bottom: -6.5rem;
  }
}
@media (max-width: 876px) {
  .bd-img-wrapper > img {
    bottom: -7.5rem;
  }
}
@media (max-width: 768px) {
  .bd-img-wrapper {
    height: 380px !important;
  }
  .bd-img-wrapper > img {
    bottom: -5rem;
  }
}
@media (max-width: 567px) {
  .home-faq-section .faq-question {
  font-size: 16px;
}
  .bd-img-wrapper {
    height: 200px !important;
  }
  .bd-img-wrapper > img {
    bottom: -10rem;
  }
}
@media (max-width: 375px) {
  .bd-img-wrapper > img {
    bottom: -10.5rem;
  }
}
@media (max-width: 320px) {
  .bd-img-wrapper > img {
    bottom: -11.5rem;
  }
}

.calendly-wrapper {
  height: 100%;
  max-height: 800px;
  margin: auto;
  /* overflow: hidden; */
}
@media (max-width: 705px) {
  .calendly-wrapper {
  padding-top: 20px;
}
}

.calendly-inline-widget {
  background-color: none !important;
}


/* testimonial */
/* Decorative background blobs */
.testimonials-section{
  padding-top: 100px !important;
  position: relative;
  overflow: hidden;
  background: #0040bb;
  background: linear-gradient(135deg, var(--primary-color), #0040bb, #7c3aed);
}
    .testimonials-section::before,
    .testimonials-section::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .testimonials-section::before {
      width: 600px; height: 600px;
      top: -200px; left: -200px;
      background: radial-gradient(circle, rgba(201,151,43,.10) 0%, transparent 70%);
    }
    .testimonials-section::after {
      width: 500px; height: 500px;
      bottom: -150px; right: -150px;
      background: radial-gradient(circle, rgba(201,151,43,.08) 0%, transparent 70%);
    }

    

    /* ══════════════════════════════════════
       SWIPER WRAPPER
    ══════════════════════════════════════ */
    .swiper-outer {
      position: relative;
    }

    .testimonials-swiper {
      overflow: visible !important;
    }

    /* ══════════════════════════════════════
       CARD
    ══════════════════════════════════════ */
    .t-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 32px 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      position: relative;
      transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
      height: 100%;
      box-shadow: 0 2px 12px rgba(26,23,20,.06);
    }
    .t-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(26,23,20,.11);
    }

    /* Decorative quote mark */
    .t-card::before {
      content: '\201C';
      position: absolute;
      top: 20px; right: 28px;
      font-family: 'Playfair Display', serif;
      font-size: 100px;
      line-height: 1;
      color: var(--primary-color);
      pointer-events: none;
      user-select: none;
    }

    /* Stars */
    .t-stars {
      display: flex;
      gap: 3px;
    }
    .t-stars span {
      font-size: 15px;
      color: #d4ac45;
    }
    .t-stars span.off {
      color: var(--border);
    }

    /* Quote text */
    .t-quote {
      font-size: 15.5px;
      font-weight: 300;
      line-height: 1.8;
      color: #464646;
      flex: 1;
      position: relative;
      z-index: 1;
      display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

    /* Divider */
    .t-divider {
      height: 1px;
      background: var(--border);
    }

    /* Author row */
    .t-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .t-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--gold-lt);
      flex-shrink: 0;
    }
    .t-author-info {}
    .t-name {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.3;
    }
    .t-role {
      font-size: 12.5px;
      color: var(--muted);
      margin-top: 2px;
    }

    /* Tag badge */
    .t-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .4px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
      background: #0041bb1f;
      color: var(--primary-color);
      align-self: flex-start;
    }
    .t-tag svg { width: 10px; height: 10px; flex-shrink: 0; }

    /* ══════════════════════════════════════
       SWIPER NAVIGATION
    ══════════════════════════════════════ */
    .swiper-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 40px;
    }
    .swiper-btn {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 1.5px solid #fff;
      background: var(--card-bg);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .2s, border-color .2s, color .2s, transform .2s;
      flex-shrink: 0;
    }
    .swiper-btn:hover {
      background: #fff;
      border-color: var(--primary-color);
      color: var(--primary-color);
      transform: scale(1.08);
    }
    .swiper-btn svg { width: 18px; height: 18px; }

    /* Pagination bullets */
    .t-pagination {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .t-pagination .swiper-pagination-bullet {
      width: 8px; height: 8px;
      background: var(--border);
      border-radius: 100px;
      opacity: 1;
      transition: width .3s, background .3s;
    }
    .t-pagination .swiper-pagination-bullet-active {
      width: 24px;
      background: var(--gold);
    }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 768px) {
      .testimonials-section { padding: 72px 0 90px; }
      .testimonials-swiper { padding: 16px 20px 10px !important; }
      .t-card { padding: 28px 24px 24px; }
    }
    @media (max-width: 480px) {
      
      .t-card::before { font-size: 72px; top: 14px; right: 18px; }
    }
/* testimonial */