/* ====================================================================
   RONAK ELECTRONIC'S — Landing Page Styles
   Theme: Maroon + Navy Blue + White
   All colours are CSS variables below — change them here only.
   ==================================================================== */

/* ------------------------------------------------------------------
   THEME VARIABLES  (edit these to re-skin the whole site)
   ------------------------------------------------------------------ */
:root {
  /* Brand colours */
  --maroon: #7A1E2B;
  --maroon-dark: #5C1420;
  --maroon-light: #A5364A;
  --navy: #0E2148;
  --navy-dark: #081633;
  --navy-light: #1C3A6E;
  --gold: #E0A64E;
  /* accent for highlights / blink */
  --gold-soft: #F3D9A6;

  /* Surfaces */
  --bg: #FFFFFF;
  --bg-soft: #F5F6FA;
  /* light grey-blue alt sections */
  --bg-tint: #FBF2F3;
  /* faint maroon wash */
  --line: #E7E9F0;

  /* Text */
  --ink: #171A24;
  --body: #4B5164;
  --muted: #8A90A2;
  --white: #FFFFFF;

  /* Type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Shape / motion */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 14px rgba(14, 33, 72, .07);
  --shadow-md: 0 14px 34px rgba(14, 33, 72, .12);
  --shadow-lg: 0 26px 60px rgba(14, 33, 72, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t: .35s var(--ease);

  --header-h: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  /* clip (not hidden) so scroll-reveal transforms can't create a
     horizontal scrollbar, while keeping position:sticky working */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.01em;
  font-weight: 600;
}

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

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

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--maroon);
  color: #fff;
}

/* Reusable section rhythm */
.section {
  padding: clamp(58px, 8vw, 104px) 0;
  position: relative;
}

/* Eyebrow label with blinking LED dot */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--maroon);
  padding: .4rem .9rem;
  border-radius: 100px;
  background: var(--bg-tint);
  border: 1px solid rgba(122, 30, 43, .15);
  margin-bottom: 1rem;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--light {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
}

/* Live LED dot — blinks (respects reduced-motion) */
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(224, 166, 78, .7);
  animation: ledPulse 1.6s infinite;
}

@keyframes ledPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 166, 78, .7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(224, 166, 78, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(224, 166, 78, 0);
  }
}

.section__title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin: 0 0 .8rem;
}

.section__title strong {
  color: var(--maroon);
  font-weight: 700;
}

.section__title--light {
  color: #fff;
}

.section__title--light strong {
  color: var(--gold);
}

.section__sub {
  color: var(--body);
  max-width: 620px;
  margin-inline: 0;
  font-size: 1.03rem;
}

.text-center .section__sub {
  margin-inline: auto;
}

.section__head {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.lead-text {
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}

/* ------------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------------ */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 100px;
  padding: .72rem 1.5rem;
  letter-spacing: .01em;
  transition: all var(--t);
  border: none;
}

.btn i {
  vertical-align: -1px;
}

.btn-cta {
  background: var(--maroon);
  color: #fff;
  box-shadow: 0 8px 20px rgba(122, 30, 43, .32);
}

.btn-cta:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(122, 30, 43, .45);
}

.btn-primary-2 {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 33, 72, .25);
}

.btn-primary-2:hover {
  background: var(--navy-dark);
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-light-2 {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(4px);
}

.btn-outline-light-2:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .3);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  color: #fff;
  transform: translateY(-3px);
}

/* ==================================================================
   1. TOP BAR
   ================================================================== */
.topbar {
  background: var(--navy-dark);
  color: #d9e0ef;
  font-size: .85rem;
}

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

.topbar__contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar__contacts a {
  color: #d9e0ef;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.topbar__contacts a:hover {
  color: var(--gold);
}

.topbar__contacts i {
  color: var(--gold);
}

.topbar__sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, .2);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.topbar__note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #b9c3da;
}

.topbar__social {
  display: flex;
  gap: .7rem;
}

.topbar__social a {
  color: #d9e0ef;
  font-size: 1rem;
  transition: transform var(--t), color var(--t);
}

.topbar__social a:hover {
  color: var(--gold);
  transform: translateY(-2px) scale(1.12);
}

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

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, .98);
}

.site-header .navbar {
  padding: 0;
  min-height: var(--header-h);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  background: var(--maroon);
  box-shadow: 0 6px 16px rgba(122, 30, 43, .3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
}

.brand-text strong {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}

.brand-text em {
  font-style: normal;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--maroon);
}

.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  padding: .5rem .9rem;
  position: relative;
  font-size: .96rem;
}

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

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

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

/* Custom hamburger */
.navbar-toggler {
  border: none;
  padding: .4rem;
  width: 44px;
}

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

.toggler-bar {
  display: block;
  width: 24px;
  height: 2.4px;
  background: var(--navy);
  border-radius: 2px;
  margin: 5px auto;
  transition: var(--t);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
  transform: translateY(7.4px) 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.4px) rotate(-45deg);
}

/* ==================================================================
   3. HERO CAROUSEL
   ================================================================== */
.hero {
  position: relative;
}

.hero .carousel-item {
  height: clamp(520px, 82vh, 760px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-dark);
  /* fallback before image loads */
  transform: scale(1.06);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.699);
}

.hero__container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Content pinned to the LEFT (not centered) */
.hero__content {
  max-width: 620px;
  text-align: left;
  color: #fff;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: .45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.hero__title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  margin: 0 0 1rem;
  line-height: 1.08;
}

.hero__title span {
  color: var(--gold);
}

.hero__text {
  color: #dfe4f0;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  max-width: 540px;
  margin-bottom: 1.8rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

/* Controls */
.hero__ctrl {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  transition: all var(--t);
  backdrop-filter: blur(4px);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  padding: 0 clamp(8px, 2vw, 26px);
  opacity: 1;
}

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

.hero__dots {
  margin-bottom: 1.6rem;
}

.hero__dots [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: .8;
  transition: all var(--t);
}

.hero__dots .active {
  background: var(--gold);
  border-color: var(--gold);
  width: 30px;
  border-radius: 8px;
}

/* ==================================================================
   4. MARQUEE (RAF-driven — no keyframes, JS handles movement)
   ================================================================== */
.marquee {
  background: var(--maroon);
  color: #fff;
  overflow: hidden;
  padding: 15px 0;
  white-space: nowrap;
  position: relative;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
}

.marquee__group {
  display: inline-flex;
  align-items: center;
}

.marquee__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .02em;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.marquee__item i {
  color: var(--gold);
  font-size: 1.1rem;
}

.marquee__dot {
  color: var(--gold);
  font-size: .6rem;
  opacity: .8;
}

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

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

.about__img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3.4;
  object-fit: cover;
}

.about__img-sub {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 46%;
  border-radius: var(--radius-sm);
  border: 5px solid #fff;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  top: 22px;
  left: -14px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: .9rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.1;
}

.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--gold);
}

.about__badge-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about__float-icon {
  position: absolute;
  right: 30px;
  top: -18px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--maroon);
  color: #fff;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
}

.about__points {
  margin: 1.4rem 0;
  display: grid;
  gap: .6rem;
}

.about__points li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 500;
  color: var(--ink);
}

.about__points i {
  color: var(--maroon);
  font-size: 1.15rem;
}

/* Floating micro-animations */
.float-y {
  animation: floatY 4s ease-in-out infinite;
}

.float-x {
  animation: floatX 5s ease-in-out infinite;
}

@keyframes floatY {

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

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatX {

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

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

/* ==================================================================
   COUNTERS
   ================================================================== */
.counters {
  background: var(--navy);
  padding: clamp(40px, 6vw, 64px) 0;
  position: relative;
  overflow: hidden;
}

.counters::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
}

.counter-card {
  position: relative;
  color: #fff;
  padding: .5rem;
}

.counter-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto .7rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
}

.counter-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: #fff;
  line-height: 1;
}

.counter-label {
  font-size: .92rem;
  color: #c7cfe2;
  font-weight: 500;
  letter-spacing: .02em;
}

/* ==================================================================
   6. SERVICES — zig-zag alternating rows (image one side, content other)
   ================================================================== */
.services {
  background: var(--bg-soft);
}

.service-row {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.service-row:last-child {
  margin-bottom: 0;
}

/* image side */
.service-media {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 14/11;
  background: var(--navy-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-row:hover .service-media img {
  transform: scale(1.06);
}

.service-media__no {
  position: absolute;
  right: 14px;
  bottom: 6px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
  color: #fff;
  opacity: .28;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.service-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 100px;
}

/* content side */
.service-content {
  padding: .5rem clamp(0px, 2vw, 1.6rem);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  color: #fff;
  margin: 0 0 1rem;
  background: var(--maroon);
  box-shadow: 0 8px 18px rgba(122, 30, 43, .3);
}

.service-content h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 0 0 .6rem;
}

.service-content p {
  font-size: .98rem;
  margin: 0 0 1rem;
  color: var(--muted);
}

.service-feat {
  display: grid;
  gap: .5rem;
  margin: 0 0 1.3rem;
}

.service-feat li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 500;
  font-size: .95rem;
  color: var(--body);
}

.service-feat i {
  color: var(--maroon);
  font-size: 1.05rem;
}

.service-card__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

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

.service-card__link:hover {
  color: var(--maroon);
}

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

/* Sequential colour/shadow/border blink — image frames light up one after another */
.services__grid.in-view .blink-seq .service-media {
  animation: seqGlow 4s ease-in-out infinite;
  animation-delay: calc(var(--seq) * .5s);
}

@keyframes seqGlow {

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

  8% {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(224, 166, 78, .4), var(--shadow-lg);
  }

  16% {
    border-color: var(--maroon);
    box-shadow: 0 0 0 4px rgba(122, 30, 43, .32), var(--shadow-lg);
  }

  26% {
    border-color: var(--line);
    box-shadow: var(--shadow-md);
  }
}

/* ==============================
   BRANDS
============================== */

.brands{
    padding:70px 0;
    background:#fff;
}

.brands__title{
    text-align:center;
    font-size:20px;
    margin-bottom:40px;
    color:#444;
}

.brands__title strong{
    color:#8a1c1c;
}

.brands-slider{
    width:100%;
    overflow:hidden;
}

.brands-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scroll 25s linear infinite;
}

.brands-slider:hover .brands-track{
    animation-play-state:paused;
}

.brand-logo{

    width:170px;
    height:90px;

    margin:0 18px;

    background:#fff;

    border-radius:15px;

    border:1px solid #e8e8e8;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:15px;

    flex-shrink:0;

    box-shadow:0 5px 15px rgba(0,0,0,.06);

    transition:.35s;
}

.brand-logo:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.brand-logo img{

    width:100%;
    height:100%;

    object-fit:contain;

    filter:none;

    opacity:1;

    transition:.35s;
}

.brand-logo:hover img{

    filter:none;
    opacity:1;
}

@keyframes scroll{

    from{
        transform:translateX(0);
    }

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

}

/* ==================================================================
   7. WHY CHOOSE US — center graphic w/ side features
   ================================================================== */
.why {
  background: var(--bg-tint);
  position: relative;
}

.why__layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 3vw, 46px);
  align-items: center;
}

.why__col {
  display: grid;
  gap: 1.6rem;
}

.why__feature {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.why__col--right .why__feature {
  flex-direction: row-reverse;
  text-align: right;
}

.why__ico {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--maroon);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(122, 30, 43, .12);
  transition: all var(--t);
}

.why__feature:hover .why__ico {
  background: var(--maroon);
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
}

.why__feature h4 {
  font-size: 1.08rem;
  margin: 0 0 .2rem;
}

.why__feature p {
  font-size: .9rem;
  margin: 0;
}

.why__center {
  position: relative;
  display: grid;
  place-items: center;
}

.why__screen {
  position: relative;
  width: clamp(220px, 26vw, 320px);
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  border: 8px solid var(--navy-dark);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  background: #000;
}

.why__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why__screen-glow {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 40%);
}

.why__pulse {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(circle, rgba(122, 30, 43, .28), transparent 68%);
  animation: whyPulse 3.2s ease-in-out infinite;
}

@keyframes whyPulse {

  0%,
  100% {
    transform: scale(.85);
    opacity: .55;
  }

  50% {
    transform: scale(1.15);
    opacity: .9;
  }
}

/* ==================================================================
   8. HOW IT WORKS — horizontal stepper
   ================================================================== */
.how {
  background: var(--navy-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.how .section__title {
  color: #fff;
}

.how .section__title strong {
  color: var(--gold);
}

.how .section__sub {
  color: #c3cbe0;
}

.how .eyebrow {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  color: var(--gold-soft);
}

.how__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* connecting line */
.how__track::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(224, 166, 78, .6) 0 14px, transparent 14px 26px);
}

.how__step {
  position: relative;
  text-align: center;
  padding: 1.4rem 1rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  transition: all var(--t);
  z-index: 2;
}

.how__step:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-6px);
  border-color: rgba(224, 166, 78, .5);
}

.how__num {
  position: absolute;
  top: -14px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: rgba(224, 166, 78, .22);
  line-height: 1;
}

.how__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--navy-dark);
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(224, 166, 78, .35);
}

.how__step h4 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 .4rem;
}

.how__step p {
  color: #c3cbe0;
  font-size: .9rem;
  margin: 0;
}

/* ==================================================================
   10. GALLERY
   ================================================================== */
.gallery {
  background: var(--bg);
}

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

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: .9rem 1rem .8rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: #fff;
  background: rgba(8, 22, 51, .82);
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--t);
}

.gallery__item::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  /* search icon */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.6);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(122, 30, 43, .9);
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  transition: all var(--t);
}

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

.gallery__item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.gallery__item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

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

.faq__accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  padding: 1.05rem 1.2rem;
  background: #fff;
}

.faq__accordion .accordion-button:not(.collapsed) {
  color: var(--maroon);
  background: var(--bg-tint);
  box-shadow: none;
}

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

.faq__accordion .accordion-button::after {
  background-image: none;
  content: "\F64D";
  font-family: "bootstrap-icons";
  /* plus */
  font-size: 1rem;
  width: auto;
  height: auto;
  transition: transform var(--t);
  color: var(--maroon);
}

.faq__accordion .accordion-button:not(.collapsed)::after {
  content: "\F63B";
  transform: rotate(0);
}

/* dash */
.faq__accordion .accordion-body {
  color: var(--body);
  padding: 0 1.2rem 1.15rem;
  font-size: .96rem;
}

/* ==================================================================
   12. TESTIMONIALS
   ================================================================== */
.testimonials {
  background: var(--maroon);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "\F6B0";
  font-family: "bootstrap-icons";
  position: absolute;
  top: -30px;
  right: 4%;
  font-size: 14rem;
  color: rgba(255, 255, 255, .05);
}

.review-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .98);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.review-card__quote {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 1.6rem;
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  color: var(--gold);
  font-size: 1.05rem;
  margin: .8rem 0 1rem;
  letter-spacing: .12em;
}

.review-card__text {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink);
  font-weight: 500;
  font-family: var(--font-display);
  line-height: 1.5;
}

.review-card__person {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.3rem;
  text-align: left;
}

.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.review__dots {
  position: static;
  margin-top: 1.8rem;
}

.review__dots [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: .7;
}

.review__dots .active {
  background: var(--gold);
  border-color: var(--gold);
  width: 28px;
  border-radius: 8px;
}

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

.contact__info {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.contact__info li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.contact__ico {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}

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

.contact__info a,
.contact__info span {
  color: var(--body);
}

.contact__info a:hover {
  color: var(--maroon);
}

.contact__form-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}

.contact__form-title {
  font-size: 1.3rem;
  margin: 0 0 1.2rem;
  color: var(--navy);
}

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

.contact .form-label .opt {
  color: var(--muted);
  font-weight: 400;
}

.contact .form-control,
.contact .form-select {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  font-size: .95rem;
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
}

.contact .form-control:focus,
.contact .form-select:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(122, 30, 43, .12);
}

.form-success {
  background: #e9f9ef;
  color: #157347;
  border: 1px solid #b7e4c7;
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  margin: 0;
  font-weight: 500;
}

/* ==================================================================
   15. FOOTER
   ================================================================== */
.footer {
  background: var(--navy-dark);
  color: #b9c3da;
  padding: clamp(48px, 7vw, 76px) 0 0;
  position: relative;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
}

.footer__brand .brand-text strong {
  color: #fff;
}

.footer__brand .brand-text em {
  color: var(--gold);
}

.footer__about {
  font-size: .92rem;
  color: #a7b1c9;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: .7rem;
  margin-top: 1rem;
}

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

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

.footer__title {
  color: #fff;
  font-size: 1.02rem;
  margin: 0 0 1rem;
}

.footer__links li,
.footer__contact li {
  margin-bottom: .55rem;
  font-size: .92rem;
}

.footer__links a {
  color: #a7b1c9;
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  color: #a7b1c9;
}

.footer__contact i {
  color: var(--gold);
  margin-top: 4px;
}

.footer__contact a {
  color: #a7b1c9;
}

.footer__contact a:hover {
  color: var(--gold);
}

.footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 2.4rem;
  padding-top: 1.3rem;
  font-size: .78rem;
  line-height: 1.6;
  color: #8894b0;
  max-width: 900px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 1.3rem;
  padding: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
  color: #8894b0;
}

.footer__bottom p {
  margin: 0;
}

/* ==================================================================
   13. FLOATING BUTTONS + BACK TO TOP
   ================================================================== */
.float-btn {
  position: fixed;
  bottom: 24px;
  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-md);
  transition: transform var(--t);
}

.float-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

.float-btn--whatsapp {
  left: 24px;
  background: #25D366;
  animation: fbPulseGreen 2s infinite;
}

.float-btn--call {
  right: 24px;
  background: var(--maroon);
  animation: fbPulseMaroon 2s infinite;
}

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

  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 fbPulseMaroon {
  0% {
    box-shadow: 0 0 0 0 rgba(122, 30, 43, .55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(122, 30, 43, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(122, 30, 43, 0);
  }
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 1039;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t);
}

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

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

/* ==================================================================
   SCROLL REVEAL
   ================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

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

  .navbar-nav .nav-link {
    padding: .6rem .4rem;
  }

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

  .btn-cta {
    margin-top: .5rem;
    width: 100%;
    text-align: center;
  }

  /* Why: stack into single column, hide center graphic decoration flow */
  .why__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why__col--right .why__feature {
    flex-direction: row;
    text-align: left;
  }

  .why__center {
    order: -1;
  }

  /* How: 2x2 grid, drop the connecting line */
  .how__track {
    grid-template-columns: repeat(2, 1fr);
  }

  .how__track::before {
    display: none;
  }

  .topbar__contacts a span {
    display: inline;
  }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
  .hero__content {
    text-align: left;
  }

  .hero .carousel-item {
    height: clamp(480px, 78vh, 620px);
  }

  .about__media {
    padding: 0 0 30px;
  }

  .about__badge {
    left: 6px;
  }

  /* Top bar: keep phone, simplify the rest */
  .topbar__right .topbar__note {
    display: none;
  }

  .topbar {
    font-size: .78rem;
  }

  .how__track {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 575.98px) {
  .topbar__contacts {
    gap: .5rem;
  }

  .topbar__contacts a span {
    font-size: .74rem;
  }

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

  .float-btn--whatsapp {
    left: 16px;
  }

  .float-btn--call {
    right: 16px;
  }

  .to-top {
    right: 16px;
    bottom: 78px;
  }
}

/* ==================================================================
   REDUCED MOTION  — gate all NON-marquee animations
   (marquee movement is JS/RAF-driven and intentionally always runs)
   ================================================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__bg {
    animation: none;
    transform: scale(1);
  }

  /* Brand strip is a core brand element — keep it scrolling even under reduced motion */
  .brands-track {
    animation: scroll 25s linear infinite !important;
    animation-duration: 25s !important;
    animation-iteration-count: infinite !important;
  }
  .brands-slider:hover .brands-track {
    animation-play-state: paused !important;
  }
}