/* ==================================================================
   AMBEY NETTING SOLUTIONS — style.css
   Author: DVT
   NOTE: Change the colour theme from the CSS variables below only.
================================================================== */

/* ------------------------------------------------------------------
   THEME VARIABLES  (edit colours here — navy blue combination)
------------------------------------------------------------------ */
:root {
  /* ---- Brand colours (navy blue combination, no gold/yellow/brown) ---- */
  --navy-900: #061226;
  /* deepest navy (overlays / footer) */
  --navy-800: #0a1f3c;
  /* primary navy */
  --navy-700: #123a6b;
  /* mid navy */
  --brand: #1d6ff2;
  /* bright azure — main accent */
  --brand-2: #17b8c9;
  /* teal-cyan — secondary accent */
  --brand-soft: #e8f1ff;
  /* very light blue tint */

  /* ---- Neutrals ---- */
  --ink: #0f1e33;
  /* headings text */
  --body: #435068;
  /* body text */
  --muted: #7a879c;
  /* muted text */
  --line: #e3ebf6;
  /* borders / dividers */
  --white: #ffffff;

  /* ---- Section backgrounds (subtle mix, base white) ---- */
  --bg: #ffffff;
  --bg-soft: #f3f7fd;
  /* light blue-grey */
  --bg-tint: #eef4fc;

  /* ---- Gradients ---- */
  --grad-brand: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  --grad-navy: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);

  /* ---- Typography ---- */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* ---- Shape & shadow ---- */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 6px 18px rgba(10, 31, 60, .06);
  --shadow: 0 14px 40px rgba(10, 31, 60, .10);
  --shadow-lg: 0 26px 60px rgba(10, 31, 60, .16);

  /* ---- Motion ---- */
  --t-fast: .2s ease;
  --t: .35s cubic-bezier(.22, .61, .36, 1);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------------------------------------
   BASE / RESET
------------------------------------------------------------------ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  /* guards against mobile horizontal scroll */
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

p {
  margin: 0 0 1rem;
}

a {
  text-decoration: none;
  color: var(--brand);
  transition: color var(--t-fast);
}

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

/* Gradient text helper */
.txt-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ------------------------------------------------------------------
   REUSABLE SECTION BITS
------------------------------------------------------------------ */
.section {
  padding: 92px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-text {
  color: var(--body);
  font-size: 1.02rem;
  max-width: 640px;
}

.section-text.mx-auto {
  text-align: center;
}

/* ------------------------------------------------------------------
   BUTTONS (varied hover effects)
------------------------------------------------------------------ */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 26px;
  letter-spacing: .01em;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: none;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.02rem;
}

/* Primary brand button — lift + glow on hover */
.btn-brand {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(29, 111, 242, .32);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(29, 111, 242, .45);
}

/* Ghost button — fill-up on hover */
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .55);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy-800);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ==================================================================
   1. TOP BAR
================================================================== */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .82);
  font-size: .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
}

.topbar__contacts,
.topbar__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar__contacts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar i {
  color: var(--brand-2);
}

.topbar a {
  color: rgba(255, 255, 255, .82);
}

.topbar a:hover {
  color: #fff;
}

.topbar__sep {
  opacity: .4;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__social {
  gap: 14px;
}

.topbar__social a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  transition: var(--t-fast);
}

.topbar__social a:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.topbar__social i {
  color: #fff;
  font-size: .8rem;
}

/* ==================================================================
   2. STICKY HEADER
================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 0 var(--line);
  transition: box-shadow var(--t), padding var(--t);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 14px 0;
  transition: padding var(--t);
}

.site-header.scrolled .navbar {
  padding: 8px 0;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--grad-navy);
  color: #fff;
  border-radius: 12px;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: 0;
  transition: var(--t);
}

.navbar-brand:hover .brand-mark::after {
  opacity: .35;
}

.brand-mark i {
  position: relative;
  z-index: 1;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  font-size: 1.18rem;
}

.brand-text strong {
  color: var(--brand);
  font-weight: 800;
}

.brand-text small {
  display: block;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Nav links */
.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  padding: 8px 14px !important;
  position: relative;
  font-size: .96rem;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand);
}

.nav-cta {
  color: #fff;
  padding: 10px 22px !important;
}

.nav-cta::after {
  display: none;
}

/* Custom animated hamburger */
.navbar-toggler {
  border: none;
  padding: 6px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-bar {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy-800);
  border-radius: 3px;
  margin: 5px 0;
  transition: var(--t);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==================================================================
   3. HERO CAROUSEL  (content on LEFT, bg image slides)
================================================================== */
.hero {
  position: relative;
}

.hero__slide {
  min-height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  /* vertical centre */
}

.hero__panel {
  max-width: 620px;
  padding: 40px 0;
  color: #fff;
  /* content sits on LEFT side */
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero__eyebrow i {
  color: var(--brand-2);
}

.hero__title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.hero__lead {
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Controls */
.hero__ctrl {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  opacity: 1;
  margin: 0 18px;
  display: grid;
  place-items: center;
  transition: var(--t);
}

.hero__ctrl:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.hero__ctrl i {
  color: #fff;
  font-size: 1.5rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
}

/* Indicators */
.hero__dots {
  margin-bottom: 26px;
}

.hero__dots [data-bs-target] {
  width: 34px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .4);
  border: none;
  opacity: 1;
  transition: var(--t);
}

.hero__dots .active {
  background: var(--grad-brand);
  width: 46px;
}

/* Floating decorative icons */
.float-ico {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, .18);
  font-size: 3rem;
  pointer-events: none;
  animation: floaty 6s ease-in-out infinite;
}

.float-ico--1 {
  top: 22%;
  right: 8%;
  font-size: 5rem;
}

.float-ico--2 {
  bottom: 18%;
  right: 22%;
  animation-delay: 1.5s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-22px) rotate(8deg);
  }
}

/* ==================================================================
   4. MARQUEE  (rAF-driven — track transform handled in JS)
================================================================== */
.marquee {
  background: var(--grad-navy);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-800), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy-700), transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee__group {
  display: flex;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
  padding: 0 34px;
  white-space: nowrap;
}

.marquee__item i {
  color: var(--brand-2);
  font-size: .9rem;
}

/* ==================================================================
   5. ABOUT US
================================================================== */
.about {
  background: var(--bg);
}

.about__media {
  position: relative;
  padding: 20px 30px 30px 0;
}

.about__img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about__img--main {
  width: 100%;
  height: 440px;
}

.about__img--sub {
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 46%;
  height: 220px;
  border: 6px solid #fff;
  animation: floaty 7s ease-in-out infinite;
}

.about__badge {
  position: absolute;
  top: 34px;
  left: -14px;
  background: var(--grad-navy);
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
}

.about__badge-num span {
  color: var(--brand-2);
}

.about__badge-label {
  font-size: .78rem;
  opacity: .85;
  display: block;
  max-width: 120px;
  margin-top: 4px;
}

/* Counters */
.about__stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.stat {
  position: relative;
}

.stat__num,
.stat__plus {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--navy-800);
  line-height: 1;
}

.stat__plus {
  color: var(--brand);
}

.stat__label {
  display: block;
  font-size: .85rem;
  color: var(--muted);
  margin-top: 6px;
}

.stat+.stat {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

/* ==================================================================
   6. SERVICES  (bento grid + cascading colour-blink wave)
================================================================== */
.services {
  background: var(--bg-soft);
}

.services__grid {
  align-items: stretch;
}

.svc-card {
  height: 100%;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--line);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
  position: relative;
}

.svc-card__img {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform var(--t);
}

.svc-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 31, 60, .35));
}

.svc-card__body {
  padding: 26px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-card__ico {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 14px;
  font-size: 1.4rem;
  margin: -52px 0 16px;
  position: relative;
  z-index: 2;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}

.svc-card__title {
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.svc-card__text {
  font-size: .94rem;
  color: var(--body);
  flex: 1;
}

.svc-card__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.svc-card__link i {
  transition: transform var(--t-fast);
}

/* Hover: image zoom + card lift + icon flip to gradient */
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.svc-card:hover .svc-card__img {
  transform: scale(1.08);
}

.svc-card:hover .svc-card__ico {
  background: var(--grad-brand);
  color: #fff;
  transform: rotate(-6deg);
}

.svc-card:hover .svc-card__link i {
  transform: translateX(5px);
}

/* Feature (first, larger) card gets a tinted body */
.svc-card--feature {
  border-color: var(--brand);
}

.svc-card--feature .svc-card__img {
  height: 192px;
}

/* ---- CASCADING COLOUR-BLINK WAVE (left → right) ----
   Each card blinks its border + shadow colour in sequence using
   --i (index) as a staggered animation-delay. Continuous loop. */
[data-wave] .svc-card {
  animation: blinkWave 5s ease-in-out infinite;
  animation-delay: calc(var(--i) * .28s);
}

@keyframes blinkWave {

  0%,
  88%,
  100% {
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
  }

  6% {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(29, 111, 242, .18), var(--shadow);
  }

  12% {
    border-color: var(--brand-2);
    box-shadow: 0 0 0 3px rgba(23, 184, 201, .20), var(--shadow);
  }
}

/* Pause the wave on hover so hover state reads cleanly */
[data-wave] .svc-card:hover {
  animation-play-state: paused;
}

/* ==================================================================
   7. WHY CHOOSE US  (zig-zag numbered rows)
================================================================== */
.why {
  background: var(--bg);
}

.why__list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why__row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}

.why__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--grad-brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t);
}

.why__row:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.why__row:hover::before {
  transform: scaleY(1);
}

.why__row--alt {
  flex-direction: row-reverse;
  text-align: right;
}

.why__row--alt::before {
  left: auto;
  right: 0;
}

.why__row--alt:hover {
  transform: translateX(-8px);
}

.why__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--brand-soft);
  line-height: 1;
  min-width: 60px;
  -webkit-text-stroke: 1px var(--brand);
  color: transparent;
}

.why__ico {
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--grad-navy);
  color: #fff;
  border-radius: 18px;
  font-size: 1.7rem;
  transition: var(--t);
}

.why__row:hover .why__ico {
  background: var(--grad-brand);
  transform: rotate(-8deg) scale(1.05);
}

.why__content {
  flex: 1;
}

.why__title {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.why__text {
  margin: 0;
  font-size: .96rem;
}

/* ==================================================================
   8. HOW IT WORKS  (horizontal timeline with connecting line)
================================================================== */
.how {
  background: var(--bg-tint);
}

.how__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}

.how__timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--brand) 0 14px, transparent 14px 26px);
  opacity: .35;
  z-index: 0;
}

.how__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.how__dot {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--brand);
  border: 3px solid var(--brand);
  border-radius: 50%;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}

.how__step:hover .how__dot {
  background: var(--grad-brand);
  color: #fff;
  transform: translateY(-6px) scale(1.05);
  border-color: transparent;
}

.how__step-no {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
}

.how__title {
  font-size: 1.18rem;
  margin: 6px 0 6px;
}

.how__text {
  font-size: .92rem;
  margin: 0;
}

/* ==================================================================
   9. GALLERY  (4/row desktop, 2/row mobile — via Bootstrap cols)
================================================================== */
.gallery {
  background: var(--bg);
}

.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery__cap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  color: #fff;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 18, 38, .78));
  opacity: 0;
  transition: var(--t);
}

.gallery__cap span {
  font-family: var(--font-display);
  font-weight: 600;
}

.gallery__cap i {
  font-size: 1.1rem;
}

.gallery__item:hover img {
  transform: scale(1.12);
}

.gallery__item:hover .gallery__cap {
  opacity: 1;
}

/* ==================================================================
   10. FAQ (custom accordion)
================================================================== */
.faq {
  background: var(--bg-soft);
}

.faq__accordion {
  max-width: 860px;
  margin: 0 auto;
}

.faq__accordion .accordion-item {
  border: 1.5px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq__accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.03rem;
  padding: 20px 24px;
  background: #fff;
}

.faq__accordion .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: var(--brand-soft);
  box-shadow: none;
}

.faq__accordion .accordion-button:focus {
  box-shadow: none;
}

.faq__accordion .accordion-button::after {
  background-image: none;
  content: "+";
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  font-size: 1.5rem;
  width: auto;
  height: auto;
  color: var(--brand);
  transform: none;
  transition: var(--t);
}

.faq__accordion .accordion-button:not(.collapsed)::after {
  content: "\2212";
  /* minus sign */
}

.faq__accordion .accordion-body {
  padding: 4px 24px 22px;
  color: var(--body);
  font-size: .96rem;
}

/* ==================================================================
   11. TESTIMONIALS (custom carousel)
================================================================== */
.testimonials {
  background: var(--grad-navy);
}

.testimonials .eyebrow {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.testimonials .section-title {
  color: #fff;
}

.testi__carousel {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 44px 38px;
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: center;
}

.testi-card__quote {
  font-size: 3rem;
  color: var(--brand-2);
  line-height: 1;
  opacity: .3;
}

.testi-card__text {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  margin: 10px 0 26px;
  line-height: 1.6;
}

.testi-card__person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.testi-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}

.testi-card__person>div {
  text-align: left;
}

.testi-card__person strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
}

.testi-card__person span {
  font-size: .85rem;
  color: var(--muted);
}

.testi-card__stars {
  color: #ffb703;
  margin-left: 6px;
  font-size: .9rem;
}

.testi__ctrl {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  top: 40%;
  opacity: 1;
  display: grid;
  place-items: center;
  transition: var(--t);
}

.testi__ctrl:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.testi__ctrl i {
  color: #fff;
  font-size: 1.3rem;
}

.testi__dots {
  bottom: 0;
}

.testi__dots [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  opacity: 1;
}

.testi__dots .active {
  background: var(--brand-2);
}

/* ==================================================================
   12. CTA BANNER
================================================================== */
.cta-banner {
  padding: 20px 0;
}

.cta-banner__inner {
  background: var(--grad-brand);
  border-radius: var(--radius-lg);
  padding: 44px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 70%);
}

.cta-banner__title {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 6px;
}

.cta-banner__text {
  color: rgba(255, 255, 255, .9);
  margin: 0;
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-banner__actions .btn-brand {
  background: #fff;
  color: var(--brand);
  box-shadow: var(--shadow);
}

.cta-banner__actions .btn-brand:hover {
  color: var(--navy-800);
}

/* ==================================================================
   13. CONTACT
================================================================== */
.contact {
  background: var(--bg);
}

.contact__info {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__info li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__ico {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 14px;
  font-size: 1.25rem;
  transition: var(--t);
}

.contact__info li:hover .contact__ico {
  background: var(--grad-brand);
  color: #fff;
  transform: rotate(-6deg);
}

.contact__info strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 2px;
}

.contact__info p {
  margin: 0;
  font-size: .95rem;
}

.contact__form-wrap {
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact__form-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.contact .form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact .form-control,
.contact .form-select {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .95rem;
  transition: var(--t-fast);
  background: #fff;
}

.contact .form-control:focus,
.contact .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(29, 111, 242, .12);
}

.contact__form-msg {
  margin: 14px 0 0;
  font-weight: 600;
  font-size: .95rem;
}

.contact__form-msg.ok {
  color: #12805c;
}

.contact__form-msg.err {
  color: #d1435b;
}

/* ==================================================================
   14. FOOTER
================================================================== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .72);
  padding: 70px 0 0;
}

.site-footer__top {
  padding-bottom: 46px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand .brand-text,
.footer-brand .brand-text small {
  color: #fff;
}

.footer-brand .brand-text strong {
  color: var(--brand-2);
}

.site-footer__about {
  font-size: .92rem;
  line-height: 1.7;
  max-width: 320px;
}

.site-footer__social {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  gap: 12px;
}

.site-footer__social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: var(--t);
}

.site-footer__social a:hover {
  background: var(--brand);
  transform: translateY(-3px);
}

.site-footer__head {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.site-footer__links,
.site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links li {
  margin-bottom: 11px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, .72);
  font-size: .93rem;
  transition: var(--t-fast);
}

.site-footer__links a:hover {
  color: var(--brand-2);
  padding-left: 6px;
}

.site-footer__contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .92rem;
}

.site-footer__contact i {
  color: var(--brand-2);
  margin-top: 3px;
}

.site-footer__contact a {
  color: rgba(255, 255, 255, .72);
}

.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .86rem;
}

.site-footer__bottom p {
  margin: 0;
}

/* ==================================================================
   15. FLOATING BUTTONS + BACK TO TOP
================================================================== */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--t);
}

.float-btn--wa {
  left: 22px;
  background: #25d366;
  animation: pulseWa 2s infinite;
}

.float-btn--call {
  right: 22px;
  background: var(--brand);
  animation: pulseCall 2s infinite;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
  color: #fff;
}

@keyframes pulseWa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulseCall {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 111, 242, .5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(29, 111, 242, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(29, 111, 242, 0);
  }
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1039;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: none;
  background: var(--navy-800);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--t);
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--brand);
  transform: translateY(-3px);
}

/* ==================================================================
   SCROLL-REVEAL (IntersectionObserver adds .is-visible)
================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, .61, .36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================================
   RESPONSIVE
================================================================== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    margin-top: 14px;
    padding: 14px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
    display: inline-flex !important;
  }

  .hero__slide {
    min-height: 560px;
  }

  .how__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }

  .how__timeline::before {
    display: none;
  }

  .about__media {
    padding: 20px 0 30px;
  }

  .why__row--alt {
    flex-direction: row;
    text-align: left;
  }

  .why__row--alt::before {
    left: 0;
    right: auto;
  }

  .why__row--alt:hover {
    transform: translateX(8px);
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__mail {
    display: none;
  }

  /* keep top bar tidy on phones */
  .topbar__note {
    display: none;
  }

  .hero__panel {
    padding: 30px 0;
  }

  .hero__slide {
    min-height: 500px;
  }

  .hero__actions .btn {
    flex: 1;
    justify-content: center;
  }

  .about__stats {
    gap: 18px;
  }

  .stat+.stat {
    padding-left: 18px;
  }

  .cta-banner__inner {
    padding: 32px 26px;
    text-align: center;
    justify-content: center;
  }

  .cta-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .contact__form-wrap {
    padding: 26px 20px;
  }

  .site-footer__bottom {
    justify-content: center;
    text-align: center;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .how__timeline {
    grid-template-columns: 1fr;
  }

  .why__row,
  .why__row--alt {
    flex-direction: column;
    text-align: center;
  }

  .why__num {
    min-width: auto;
  }

  .testi-card {
    padding: 32px 22px 28px;
  }

  .testi-card__text {
    font-size: 1.02rem;
  }
}

/* ==================================================================
   ACCESSIBILITY — respect reduced motion
   (Note: marquee loop is intentionally NOT gated here so the brand
   ticker keeps running; only decorative reveals/floats are eased.)
================================================================== */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .float-ico,
  .about__img--sub {
    animation: none;
  }

  .svc-card,
  .btn,
  .why__row,
  .how__dot {
    transition: none;
  }
}

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 3px solid rgba(29, 111, 242, .45);
  outline-offset: 2px;
}


/* ===========================================================
   VIDEO GALLERY
=========================================================== */

.video-gallery {
  background: var(--bg);
}

.video-card {
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  transition: .35s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 8; 
  border-radius: 18px;
}

@media (max-width: 767px) {
  .video-card {
    border-radius: 14px;
  }

  .video-card video {
    border-radius: 14px;
  }
  .cu-ds-nn{
	  display:none!important
  }
}