/* ============================================================
   VISHWANATH ELECTRONICS — style.css
   ------------------------------------------------------------
   Change the colour theme in ONE place below (:root).
   Theme: Navy #10233F  +  related blue accent  +  White base.
   ============================================================ */

/* ============================================================
   THEME TOKENS  ⟶  EDIT COLOURS HERE
   ============================================================ */
:root {
  /* --- Brand colours --- */
  --clr-primary: #10233F;
  /* main orange accent            */
  --clr-primary-dark: #35598f;
  /* darker orange (hover)         */
  --clr-primary-soft: #eaf0f8;
  --clr-accent: #4576BC;
  /* related lighter navy-blue accent */
  --clr-accent-soft: #eaf0f8;
  /* light accent tint */
  /* light orange tint (backgrounds)*/

  --clr-navy: #10233f;
  /* deep navy (dark sections)     */
  --clr-navy-2: #1a3559;
  /* lighter navy                  */

  /* --- Neutrals --- */
  --clr-bg: #ffffff;
  /* main background               */
  --clr-bg-alt: #f5f8fc;
  /* alternate cool-light section  */
  --clr-ink: #16202e;
  /* headings / dark text          */
  --clr-body: #4a5563;
  /* body text                     */
  --clr-muted: #7a8695;
  /* muted text                    */
  --clr-line: #e6ebf2;
  /* borders / dividers            */

  /* --- Effects --- */
  --shadow-sm: 0 4px 14px rgba(16, 35, 63, .06);
  --shadow-md: 0 12px 30px rgba(16, 35, 63, .10);
  --shadow-lg: 0 22px 50px rgba(16, 35, 63, .14);
  --shadow-accent: 0 14px 30px rgba(16, 35, 63, .28);

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

  /* --- Layout --- */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--clr-body);
  background: var(--clr-bg);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
  /* no horizontal scroll on mobile */
  -webkit-font-smoothing: antialiased;
}

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

p {
  margin: 0 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .25s var(--ease);
}

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

.txt-accent {
  color: var(--clr-accent);
}

/* ============================================================
   SHARED SECTION HELPERS
   ============================================================ */
.section {
  padding: 84px 0;
  position: relative;
}

.section-alt {
  background: var(--clr-bg-alt);
}

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

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin: .3rem 0 .6rem;
}

.section-intro {
  color: var(--clr-muted);
  font-size: 1.05rem;
}

/* Eyebrow label above headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-primary-soft);
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
}

.eyebrow-center {
  margin: 0 auto;
}

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

/* ============================================================
   BUTTONS  (varied styles)
   ============================================================ */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: .7rem 1.5rem;
  border: none;
  transition: all .3s var(--ease);
}

.btn i {
  margin-right: .35rem;
}

/* Primary orange CTA — lifts + shadow on hover */
.btn-cta {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-cta:hover {
  background: var(--clr-primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(16, 35, 63, .32);
}

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

.btn-ghost:hover {
  background: #fff;
  color: var(--clr-navy);
  border-color: #fff;
}

/* Inline WhatsApp button */
.btn-whatsapp-inline {
  background: #25d366;
  color: #fff;
}

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

/* ============================================================
   1. TOP BAR
   ============================================================ */
.topbar {
  background: var(--clr-navy);
  color: rgba(255, 255, 255, .82);
  font-size: .84rem;
  padding: .5rem 0;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .82);
}

.topbar-link i {
  color: var(--clr-accent);
}

.topbar-link:hover {
  color: #fff;
}

.topbar-hours {
  color: rgba(255, 255, 255, .7);
}

.topbar-hours i {
  color: var(--clr-accent);
  margin-right: .3rem;
}

.topbar-socials a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .8rem;
  transition: all .25s var(--ease);
}

.topbar-socials a:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
}

/* ============================================================
   2. STICKY HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--clr-line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

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

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-primary-dark));
  color: #fff;
  font-size: 1.25rem;
  box-shadow: var(--shadow-accent);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--clr-navy);
  letter-spacing: -.02em;
}

.brand-accent {
  color: var(--clr-accent);
}

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

/* Animated underline hover */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .35rem;
  height: 2px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.navbar-nav .nav-link:hover {
  color: var(--clr-accent);
}

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

.navbar-nav .nav-link.active {
  color: var(--clr-accent);
}

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

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

.toggler-bar {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--clr-navy);
  border-radius: 2px;
  margin: 5px 0;
  transition: all .3s var(--ease);
}

.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
   ============================================================ */
.hero {
  position: relative;
}

.hero .carousel-item {
  height: min(88vh, 720px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--clr-navy);
  /* fallback if image missing */
  background-image: linear-gradient(135deg, #16305a, #0c1c34);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.938) 0%, rgba(0, 0, 0, 0.384) 45%, rgba(0, 0, 0, 0.123) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(69, 118, 188, .92);
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}

.hero-title {
  color: #fff;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero-sub {
  color: rgba(255, 255, 255, .86);
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Carousel arrows */
.hero-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 1.3rem;
  backdrop-filter: blur(4px);
  transition: all .3s var(--ease);
}

.hero-arrow:hover {
  background: var(--clr-accent);
  transform: scale(1.08);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 1;
  padding: 0 1.4rem;
}

/* Indicators */
.hero-indicators {
  margin-bottom: 1.6rem;
}

.hero-indicators [data-bs-target] {
  width: 34px;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .45);
  border: none;
  transition: all .3s var(--ease);
}

.hero-indicators .active {
  background: var(--clr-accent);
  width: 46px;
}

/* Floating chips */
.hero-floaters {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.floater {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--clr-navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  padding: .6rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}

.floater i {
  color: var(--clr-accent);
}

.floater-1 {
  top: 22%;
  right: 6%;
  animation: floatY 4s ease-in-out infinite;
}

.floater-2 {
  bottom: 20%;
  right: 12%;
  animation: floatY 5s ease-in-out infinite .8s;
}

@keyframes floatY {

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

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

/* ============================================================
   4. MARQUEE  (JS rAF driven — .marquee-track transform set by JS)
   ============================================================ */
.marquee {
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-primary-dark));
  overflow: hidden;
  white-space: nowrap;
  padding: .95rem 0;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 0 2.4rem;
  position: relative;
}

.marquee-item i {
  font-size: 1.15rem;
}

.marquee-item::after {
  content: "•";
  position: absolute;
  right: 0;
  color: rgba(255, 255, 255, .55);
}

/* ============================================================
   5. ABOUT
   ============================================================ */
.about-media {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.2;
}

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

.about-img-sm {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow-md);
}

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

.about-badge {
  position: absolute;
  top: 1.2rem;
  left: -1.1rem;
  background: var(--clr-navy);
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.1;
}

.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--clr-accent);
}

.about-badge-txt {
  font-size: .8rem;
  color: rgba(255, 255, 255, .85);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .7rem;
  color: var(--clr-ink);
  font-weight: 500;
}

.about-list i {
  color: var(--clr-accent);
  margin-top: .25rem;
}

/* ============================================================
   6. SERVICES — ZIGZAG
   ============================================================ */
.zigzag {
  margin-bottom: 3.2rem;
}

.zigzag:last-of-type {
  margin-bottom: 0;
}

.zig-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  position: relative;
}

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

.zig-img:hover img {
  transform: scale(1.06);
}

/* zoom hover */

.zig-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-bottom: 1rem;
  color: var(--clr-accent);
  background: var(--clr-primary-soft);
}

.zig-title {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: .8rem;
}

.zig-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.zig-points li {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--clr-ink);
  font-weight: 500;
  margin-bottom: .5rem;
}

.zig-points i {
  color: var(--clr-accent);
  font-size: 1.4rem;
}

/* Supporting mini-cards */
.mini-card {
  background: #fff;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  height: 100%;
  transition: all .35s var(--ease);
}

.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.mini-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-navy);
  color: var(--clr-accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all .35s var(--ease);
}

.mini-card:hover .mini-ico {
  background: var(--clr-accent);
  color: #fff;
  transform: rotate(-6deg);
}

.mini-card h4 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.mini-card p {
  color: var(--clr-muted);
  font-size: .95rem;
  margin: 0;
}

/* ============================================================
   7. WHY CHOOSE US — SIGNATURE "SIGNAL PULSE"
   The orange glow travels card 0 → 1 → 2 → 3 and loops,
   using per-card --i for the stagger. Not dependent on CSS
   reduced-motion? It is decorative, so we DO respect it below.
   ============================================================ */
.why-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  overflow: hidden;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

/* top accent bar that lights up in sequence */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--clr-line);
}

.why-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  animation: pulseBar 4s var(--ease) infinite;
  animation-delay: calc(var(--i) * .5s);
}

@keyframes pulseBar {

  0%,
  100% {
    transform: scaleX(0);
    opacity: .2;
  }

  12% {
    transform: scaleX(1);
    opacity: 1;
  }

  30% {
    transform: scaleX(1);
    opacity: 1;
  }

  45% {
    transform: scaleX(0);
    transform-origin: right;
    opacity: .2;
  }
}

/* whole card gets a soft glow while its turn is active */
.why-card {
  animation: cardGlow 4s var(--ease) infinite;
  animation-delay: calc(var(--i) * .5s);
}

@keyframes cardGlow {

  0%,
  100% {
    box-shadow: var(--shadow-sm);
  }

  18% {
    box-shadow: var(--shadow-accent);
    transform: translateY(-4px);
  }

  40% {
    box-shadow: var(--shadow-sm);
    transform: translateY(0);
  }
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-ico {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-primary-soft);
  color: var(--clr-accent);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  transition: all .35s var(--ease);
}

.why-card:hover .why-ico {
  background: var(--clr-accent);
  color: #fff;
  transform: scale(1.08);
}

.why-title {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.why-card p {
  color: var(--clr-muted);
  font-size: .93rem;
  margin: 0;
}

/* ============================================================
   8. HOW IT WORKS — steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
}

/* connecting dotted line behind steps (desktop) */
.steps::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--clr-accent) 40%, transparent 40%);
  background-size: 16px 2px;
  opacity: .5;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  padding: 2.4rem 1.4rem 1.6rem;
  text-align: center;
  transition: all .35s var(--ease);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--clr-bg-alt);
}

.step-ico {
  display: inline-flex;
  font-size: 2rem;
  color: var(--clr-accent);
  margin: .4rem 0 .8rem;
}

.step-title {
  font-size: 1.12rem;
  margin-bottom: .5rem;
}

.step p {
  color: var(--clr-muted);
  font-size: .92rem;
  margin: 0;
}

/* ============================================================
   9. STATS
   ============================================================ */
.stats {
  background: var(--clr-navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(69, 118, 188, .20), transparent 45%);
}

.stat {
  position: relative;
}

.stat-num,
.stat-plus {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: #fff;
}

.stat-plus {
  color: var(--clr-accent);
}

.stat-label {
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
  margin: .3rem 0 0;
}

/* ============================================================
   10. GALLERY
   ============================================================ */
.gal-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}

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

.gal-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem .9rem .8rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  background: linear-gradient(to top, rgba(9, 20, 38, .88), transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: all .35s var(--ease);
}

.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--clr-accent);
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.gal-item:hover img {
  transform: scale(1.1);
}

.gal-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.gal-item:hover::after {
  opacity: 1;
}

/* ============================================================
   11. FAQ ACCORDION (custom)
   ============================================================ */
.faq-acc .accordion-item {
  border: 1px solid var(--clr-line);
  border-radius: var(--radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-acc .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--clr-ink);
  padding: 1.15rem 1.3rem;
  background: #fff;
}

.faq-acc .accordion-button:not(.collapsed) {
  color: var(--clr-accent);
  background: var(--clr-primary-soft);
  box-shadow: none;
}

.faq-acc .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-acc .accordion-button::after {
  background-image: none;
  content: "\002B";
  font-family: sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  width: auto;
  height: auto;
  transform: none;
  color: var(--clr-accent);
  transition: transform .3s var(--ease);
}

.faq-acc .accordion-button:not(.collapsed)::after {
  content: "\2212";
  transform: none;
}

.faq-acc .accordion-body {
  padding: 0 1.3rem 1.2rem;
  color: var(--clr-body);
}

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.testi-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  text-align: center;
  margin: 0 1rem;
}

.testi-quote {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-accent);
}

.testi-text {
  font-size: 1.12rem;
  color: var(--clr-ink);
  font-weight: 500;
  line-height: 1.7;
  margin: .6rem 0 1rem;
}

.testi-stars {
  color: #ffb400;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: .1em;
}

.testi-person {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}

.testi-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.testi-meta {
  text-align: left;
  line-height: 1.2;
}

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

.testi-meta small {
  color: var(--clr-muted);
}

.testi-ctrl {
  width: 46px;
  opacity: 1;
}

.testi-indicators {
  position: static;
  margin-top: 1.6rem;
}

.testi-indicators [data-bs-target] {
  width: 30px;
  height: 5px;
  border-radius: 5px;
  background: var(--clr-line);
  border: none;
}

.testi-indicators .active {
  background: var(--clr-accent);
}

/* ============================================================
   13. CONTACT
   ============================================================ */
.contact-info {
  background: var(--clr-navy);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.ci-row {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ci-row:last-of-type {
  border-bottom: none;
}

.ci-ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(69, 118, 188, .18);
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all .3s var(--ease);
}

.ci-row:hover .ci-ico {
  background: var(--clr-accent);
  color: #fff;
}

.ci-body strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: .98rem;
}

.ci-body span {
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
}

.contact-map {
  margin-top: 1.2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/8;
}

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

.contact-form {
  background: #fff;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--clr-ink);
  margin-bottom: .35rem;
}

.form-control,
.form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-line);
  padding: .7rem .9rem;
  font-size: .95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 .18rem rgba(69, 118, 188, .18);
}

.form-note {
  margin: 0;
  font-weight: 600;
  font-family: var(--font-display);
}

.form-note.ok {
  color: #1a9c4e;
}

.form-note.err {
  color: #d63b3b;
}

/* ============================================================
   14. FLOATING BUTTONS
   ============================================================ */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease);
}

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

.float-whatsapp {
  left: 22px;
  background: #25d366;
}

.float-call {
  right: 22px;
  background: var(--clr-accent);
}

/* pulse rings */
.float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  animation: ringPulse 2s ease-out infinite;
}

.float-whatsapp::before {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
}

.float-call::before {
  box-shadow: 0 0 0 0 rgba(69, 118, 188, .6);
}

@keyframes ringPulse {
  to {
    box-shadow: 0 0 0 18px rgba(0, 0, 0, 0);
  }
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-navy);
  color: rgba(255, 255, 255, .72);
  padding: 64px 0 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

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

.footer-about {
  font-size: .93rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s var(--ease);
}

.footer-socials a:hover {
  background: var(--clr-accent);
  transform: translateY(-3px);
}

.footer-head {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: .6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .72);
  font-size: .93rem;
}

.footer-links a:hover {
  color: var(--clr-accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: .6rem;
  margin-bottom: .8rem;
  font-size: .9rem;
}

.footer-contact i {
  color: var(--clr-accent);
  margin-top: .2rem;
}

.footer-contact a:hover {
  color: var(--clr-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  font-size: .86rem;
}

.footer-credit {
  color: var(--clr-accent);
  margin: 0;
}

.footer-bottom p {
  margin: 0;
}

/* ============================================================
   IMAGE PLACEHOLDER FALLBACK
   (shows a branded tile if a real image is not yet added)
   ============================================================ */
.img-ph {
  background: linear-gradient(135deg, #eef2f8, #dbe3ef);
  position: relative;
}

.img-ph::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa8bd;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-align: center;
  padding: .5rem;
}

.img-ph img {
  position: relative;
  z-index: 1;
}

/* if JS flags a broken image, hide the <img> so the label shows */
.img-ph.no-img img {
  opacity: 0;
}

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

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section {
    padding: 64px 0;
	overflow-x: hidden
  }

  /* Mobile nav panel — solid bg, no backdrop-filter containing-block trap */
  .navbar-collapse {
    background: #fff;
    margin-top: .8rem;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-line);
  }

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

  .navbar-nav .btn-cta {
    margin-top: .6rem;
    display: inline-block;
  }

  .hero .carousel-item {
    height: auto;
    min-height: 78vh;
  }

  .hero-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .floater {
    display: none;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.2rem;
  }

  .steps::before {
    display: none;
  }

  .about-media {
    padding-right: 0;
  }

  .about-badge {
    left: 0;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: .78rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

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

  .float-whatsapp {
    left: 14px;
  }

  .float-call {
    right: 14px;
  }

  .testi-card {
    margin: 0;
    padding: 2.4rem 1.4rem 1.8rem;
  }
}

/* Gallery: 2 per row on mobile is handled by col-6; 4 per row desktop by col-lg-3 */

/* ============================================================
   REDUCED MOTION — respect user preference for decorative anims
   (marquee is JS-driven and intentionally continues; these are
   purely decorative loops so we calm them here)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  .why-card,
  .why-card::after,
  .floater,
  .float-btn::before {
    animation: none !important;
  }

  .why-card::after {
    transform: scaleX(1);
    opacity: 1;
  }

  [data-reveal] {
    transition: none;
  }
}

/* ============================================================
   BRANDS WE REPAIR — auto-scrolling logo carousel
   (rAF-driven in script.js, same technique as the marquee)
   ============================================================ */
.brands {
  padding-bottom: 84px;
}

.brand-marquee {
  overflow: hidden;
  padding: .6rem 0;
  /* soft fade on both edges */
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

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

.brand-logo.img-ph {
  flex: 0 0 auto;
  width: 172px;
  height: 96px;
  margin: 0 12px;
  background: #fff;
  /* override the .img-ph tint for logo cards */
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.brand-logo.img-ph::before {
  color: #9aa8bd00;
}

/* fallback label colour */
.brand-logo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-accent);
}

.brand-logo img {
  max-width: 76%;
  max-height: 58%;
  object-fit: contain;
  transition: filter .35s var(--ease), opacity .35s var(--ease);
}

.brand-logo:hover img {
  filter: none;
  opacity: 1;
}
.cu-lg-wdth{
	width:290px;
}
@media (max-width: 575.98px) {
  .brand-logo.img-ph {
    width: 132px;
    height: 80px;
    margin: 0 8px;
  }
}
@media(max-width:400px)
{
	.cu-fn-12{
		font-size:12px!important
	}
}
@media(max-width:374px)
{
	.cu-fn-12{
		font-size:10px!important
	}
	.cu-lg-wdth{
	width:240px;
}
}