/* ==========================================================================
   AKV Electrical Engineering Pvt. Ltd. — Custom Stylesheet
   Design: Corporate Modern + Card UI + Glassmorphism (sparingly)
   ========================================================================== */

/* ==========================================================================
   PROCESS STEPS — simple grid, no slider, no timeline line
   ========================================================================== */
.process-step-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.75rem 1.5rem 1.5rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.process-step-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.process-step-num {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #3d6cf0;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}

.process-step-card .roadmap-step-name {
  font-size: 1.02rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.process-step-card .roadmap-text {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* ── CSS Custom Properties ──────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --akv-navy:        #0A1240;
  --akv-navy-light:  #101C5E;
  --akv-blue:        #1CA8E0;
  --akv-blue-light:  #5FCBF2;
  --akv-gold:        #F2C230;
  --akv-red:         #D62E3C;
  --akv-white:       #FFFFFF;
  --akv-off-white:   #F5F7FA;
  --akv-gray-700:    #4A5568;
  --akv-gray-100:    #EDF1F7;

  /* Transitions */
  --t-fast:  250ms ease;
  --t-std:   300ms ease;
  --t-slow:  350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Cards */
  --card-radius:      12px;
  --card-shadow:      0 4px 20px rgba(10, 18, 64, 0.08);
  --card-shadow-hover: 0 14px 30px rgba(10, 18, 64, 0.15);

  /* Layout */
  --section-pad: 80px;
}

/* ── Reset / Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--akv-gray-700);
  background: var(--akv-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--akv-navy);
  line-height: 1.25;
}

a {
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-logo{
    height:120px;
}
img { max-width: 100%; height: auto; display: block; }

/* ── Section Heading Pattern ────────────────────────────────────────────── */
/* Eyebrow: small gold uppercase label above the H2 */
.section-eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--akv-gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--akv-navy);
  margin-bottom: 0.5rem;
}

.section-title.on-dark { color: var(--akv-white); }

/* 40 × 3 px gold bar under heading */
.title-bar {
  width: 40px;
  height: 3px;
  background: var(--akv-gold);
  border-radius: 2px;
  margin-bottom: 1.75rem;
}
.title-bar.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-akv-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.5rem;
  background: var(--akv-blue);
  color: var(--akv-white) !important;
  border: 2px solid var(--akv-blue);
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--t-fast), border-color var(--t-fast),
              transform var(--t-fast), box-shadow var(--t-fast);
}

.btn-akv-primary:hover {
  background: var(--akv-blue-light);
  border-color: var(--akv-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 168, 224, 0.4);
}

/* Gold outline — "Download Brochure" style */
.btn-akv-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.5rem;
  background: transparent;
  color: var(--akv-gold) !important;
  border: 2px solid var(--akv-gold);
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast),
              transform var(--t-fast), box-shadow var(--t-fast);
}

.btn-akv-gold:hover {
  background: var(--akv-gold);
  color: var(--akv-navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 194, 48, 0.35);
}

/* WhatsApp green */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.35rem;
  background: #25D366;
  color: var(--akv-white) !important;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

/* ── Global Card Styles ──────────────────────────────────────────────────── */
.akv-card {
  position: relative;
  background: var(--akv-white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--t-std), box-shadow var(--t-std);
}

/* Top accent line expands on hover */
.akv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--akv-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-std);
}

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

.akv-card:hover::before {
  transform: scaleX(1);
}

/* ── Scroll-Reveal ──────────────────────────────────────────────────────── */
/* JS adds .visible when element enters viewport */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays — apply to child elements via nth-child or data attrs */
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 480ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Utility ────────────────────────────────────────────────────────────── */
.section-pad { padding: var(--section-pad) 0; }
.bg-navy     { background-color: var(--akv-navy); }
.bg-off-white { background-color: var(--akv-off-white); }
.text-gold   { color: var(--akv-gold); }
.text-blue   { color: var(--akv-blue); }

.highlight-card {
  border-radius: 12px;   /* rounds all 4 corners of the card */
  overflow: hidden;      /* clips the image so it doesn't poke past rounded corners */
  box-shadow: 0 4px 18px rgba(10, 18, 64, 0.12);
  background-color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.highlight-card .highlight-img {
  width: 100%;           /* full width, edge-to-edge, no side padding */
  height: 220px;
  object-fit: cover;
  display: block;        /* removes default inline-image gap under the image */
  margin: 0;
  padding: 0;
}

.highlight-body {
  padding: 1.25rem 1.25rem 1.5rem;  /* ONLY the text content gets padding */
}

.highlight-body .highlight-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.highlight-body .highlight-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

@media (max-width: 767.98px) {
  .highlight-card .highlight-img {
    height: 180px;
  }
}
/* ==========================================================================
   MACHINES — FLIP CARDS
   ========================================================================== */
.machine-flip {
  perspective: 1200px;
  height: 320px;
}

.machine-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.machine-flip:hover .machine-flip-inner {
  transform: rotateY(180deg);
}

.machine-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(10, 18, 64, 0.12);
}

/* Front: full-bleed image with title overlay */
.machine-front {
  background-color: #000000;
  padding: 0;
  position: relative;
}

.machine-front .machine-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machine-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 100%);
}

.machine-overlay .machine-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  text-align: left;
}

/* Back: navy panel with description */
.machine-back {
  background-color: #0a1240;
  color: #ffffff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
}

.machine-back .machine-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.machine-back .machine-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 767.98px) {
  .machine-flip {
    height: 280px;
  }
  .machine-flip:active .machine-flip-inner {
    transform: rotateY(180deg);
  }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
/* ==========================================================================
   NAVBAR — HARD-CODED WHITE, FULLY SCOPED TO #mainNav
   ========================================================================== */
#mainNav {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  background-color: #ffffff;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  z-index: 1050;
}
#mainNav .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0a1240 !important;
  padding: 0.4rem 0.65rem;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: #3d6cf0 !important;
}
#mainNav .navbar-toggler {
  border-color: rgba(10, 18, 64, 0.35);
  padding: 0.3rem 0.6rem;
}
#mainNav .navbar-toggler-icon {
  /* Dark bars for white bg */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10,18,64,0.88)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Logo sizing — header only */
#mainNav .navbar-brand img {
  height: 100px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
/* Scrolled: same white, just a shadow */
#mainNav.scrolled {
  background-color: #ffffff;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}
/* Mobile: white background */
@media (max-width: 991.98px) {
  #mainNav {
    background-color: #ffffff;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  #mainNav .navbar-collapse {
    padding: 0.75rem 0 0.5rem;
    border-top: 1px solid rgba(10, 18, 64, 0.1);
    margin-top: 0.5rem;
  }
  #mainNav .nav-link {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(10, 18, 64, 0.06);
  }
  #mainNav .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  #mainNav .btn-akv-primary {
    margin-top: 0.75rem;
  }
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--akv-navy);
  color: rgba(255, 255, 255, 0.65);
  padding-top: var(--section-pad);
}

/* ── Footer Brand ── */
.footer-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--akv-gold);
  margin-bottom: 0.4rem;
}

.footer-meta {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* ── Social Icons ── */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 0.95rem;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.footer-social a:hover {
  background: var(--akv-blue);
  color: var(--akv-white);
  transform: translateY(-2px);
}

/* ── Column Headings ── */
.footer-heading {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--akv-white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 28px;
  height: 2px;
  background: var(--akv-gold);
  border-radius: 2px;
}

/* ── Link Lists ── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--t-fast), transform var(--t-fast);
}

.footer-links a::before {
  content: "›";
  color: var(--akv-blue);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--akv-blue-light);
  transform: translateX(4px);
}

/* ── Contact List ── */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
  color: var(--akv-blue);
  font-size: 0.95rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t-fast);
}

.footer-contact a:hover {
  color: var(--akv-blue-light);
}

/* ── Bottom Bar ── */
.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit {
  display: inline-block;
  margin-left: 0.5rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--t-fast);
}

.footer-legal a:hover {
  color: var(--akv-blue-light);
}


/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--akv-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--akv-white);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* Pulse ring */
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.75; }
  65%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}


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

.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--akv-navy) 0%, var(--akv-navy-light) 55%, var(--akv-navy) 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Diagonal geometric grid overlay */
.hero-geo {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(28,168,224,.045) 0px, rgba(28,168,224,.045) 1px, transparent 1px, transparent 52px),
    repeating-linear-gradient(-45deg, rgba(28,168,224,.03) 0px, rgba(28,168,224,.03) 1px, transparent 1px, transparent 52px);
  z-index: 1;
  pointer-events: none;
}

/* Triangle — top right */
.hero-geo::before {
  content: "";
  position: absolute;
  top: -8%; right: -4%;
  width: 44vw; height: 44vw;
  background: linear-gradient(135deg, rgba(28,168,224,.07), transparent 70%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* Triangle — bottom left */
.hero-geo::after {
  content: "";
  position: absolute;
  bottom: -6%; left: -4%;
  width: 34vw; height: 34vw;
  background: linear-gradient(315deg, rgba(95,203,242,.05), transparent 70%);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

/* Lightning watermark */
.hero-lightning {
  position: absolute;
  right: 4%; bottom: 4%;
  font-size: min(52vh, 42vw);
  color: var(--akv-blue);
  opacity: .042;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* Carousel fills hero */
#heroCarousel,
#heroCarousel .carousel-inner { flex: 1; }

.hero-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 130px;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--akv-blue-light);
  padding-left: .8rem;
  border-left: 3px solid var(--akv-gold);
  margin-bottom: 1.1rem;
}

/* H1 */
.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  color: var(--akv-white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,.7);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Glass pill badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem 1rem;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50px;
  color: rgba(255,255,255,.9);
  font-family: "Poppins", sans-serif;
  font-size: .78rem;
  font-weight: 600;
}

.hero-badge i { color: var(--akv-gold); font-size: .82rem; }

/* CTAs row */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Indicators — short bars, left-aligned with container */
.hero-indicators {
  bottom: 80px !important;
  gap: 6px;
  z-index: 5 !important;   /* above hero-geo (1) and hero-lightning (2) */
  justify-content: flex-start;
  padding-left: max(12px, calc((100vw - 1320px) / 2 + 12px));
}

@media (max-width: 1399px) { .hero-indicators { padding-left: max(12px, calc((100vw - 1140px)/2 + 12px)); } }
@media (max-width: 1199px) { .hero-indicators { padding-left: max(12px, calc((100vw - 960px)/2 + 12px)); } }
@media (max-width: 575px)  { .hero-indicators { justify-content: center; padding-left: 0; } }

.hero-indicators [data-bs-target] {
  width: 28px !important;
  height: 3px !important;
  border-radius: 3px !important;
  background: rgba(255,255,255,.3) !important;
  /* Keep Bootstrap's transparent top/bottom borders — they are the click area */
  border-top: 10px solid transparent !important;
  border-bottom: 10px solid transparent !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: background var(--t-std), width var(--t-std);
}

.hero-indicators .active {
  background: var(--akv-gold) !important;
  width: 50px !important;
}

/* Prev/Next */
.hero-control {
  width: 60px !important;
  z-index: 5 !important;   /* above hero-geo (1) and hero-lightning (2) */
  opacity: 1;
}

.hero-control i {
  font-size: 1.3rem;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.hero-control:hover i {
  background: var(--akv-blue);
  color: var(--akv-white);
  border-color: var(--akv-blue);
}

/* Slide-in animation — pure CSS @keyframes, re-fires each time Bootstrap
   adds .active to a carousel item. No JS dependency. */
.hero-content > * {
  opacity: 0; /* hidden until the animation fills forwards */
}

.carousel-item.active .hero-content > * {
  animation: hero-fade-up 0.55s ease forwards;
}

/* Stagger by child order */
.carousel-item.active .hero-content > *:nth-child(1) { animation-delay:  80ms; }
.carousel-item.active .hero-content > *:nth-child(2) { animation-delay: 200ms; }
.carousel-item.active .hero-content > *:nth-child(3) { animation-delay: 320ms; }
.carousel-item.active .hero-content > *:nth-child(4) { animation-delay: 420ms; }
.carousel-item.active .hero-content > *:nth-child(5) { animation-delay: 520ms; }

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content > * { opacity: 1; }
  .carousel-item.active .hero-content > * { animation: none; }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hero-slide { padding-top: 88px; padding-bottom: 150px; text-align: center; }
  .hero-eyebrow { border-left: none; padding-left: 0; }
  .hero-subtitle { max-width: 100%; }
  .hero-badges, .hero-ctas { justify-content: center; }
  .hero-lightning { font-size: 80vw; right: -10%; opacity: .028; }
}


/* ==========================================================================
   HERO SECTION — image carousel (assets/img/banner/)
   Slides are pre-designed graphics; no HTML text overlay needed.
   ========================================================================== */
.hero-section-img {
  position: relative;
  background: var(--akv-navy);
}

.hero-section-img .carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Banner images are wide (2.4:1) pre-designed graphics with text baked into
   the left side. At full width they scale down to be illegible on phones,
   so below md we fix the slide height and crop toward the text instead. */
@media (max-width: 767.98px) {
  /* Mobile nav is always solid (never transparent-over-hero), so push the
     slide below it instead of letting it get covered. */
  .hero-section-img { padding-top: 134px; }

  .hero-section-img .carousel-item {
    position: relative;
    height: 85vw;
    max-height: 380px;
    overflow: hidden;
  }

  .hero-section-img .carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }
}

/* Indicators reuse .hero-indicators; anchor them to this section instead of min-height:100vh */
.hero-section-img .hero-indicators {
  bottom: 20px !important;
}

@media (max-width: 575px) {
  .hero-section-img .hero-indicators { bottom: 10px !important; }
}


/* ==========================================================================
   QUICK HIGHLIGHT STRIP
   ========================================================================== */

/* Navy wrapper — seamless continuation of hero */
.highlight-strip-wrapper {
  background: var(--akv-navy);
  padding-bottom: 64px;
}

/* Negative top margin pulls cards up into hero */
.highlight-strip {
  position: relative;
  z-index: 10;
  margin-top: -90px;
}

@media (max-width: 767.98px) {
  .highlight-strip { margin-top: 0; }
}

/* Glass cards */
.highlight-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--card-radius);
  /*padding: 2rem 1.75rem;*/
  text-align: center;
  height: 100%;
  transition: background var(--t-std), border-color var(--t-std), transform var(--t-std);
}

.highlight-card:hover {
  background: rgba(28,168,224,.1);
  border-color: rgba(28,168,224,.3);
  transform: translateY(-5px);
}

.highlight-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--akv-blue), var(--akv-blue-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--akv-white);
  box-shadow: 0 6px 20px rgba(28,168,224,.32);
  transition: transform var(--t-std), box-shadow var(--t-std);
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 28px rgba(28,168,224,.45);
}

.highlight-title {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--akv-white);
  margin-bottom: .65rem;
}

.highlight-text {
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  margin-bottom: 0;
}


/* ==========================================================================
   ABOUT COMPANY (01)
   ========================================================================== */

.about-image-wrap {
  position: relative;
}

.about-image {
  display: block;
  width: 100%;
  aspect-ratio: 1350 / 1165;
  object-fit: cover;
  object-position: center;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

/* Glass stat strip — navy bento panel within the light section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  padding: 1.5rem;
  background: rgba(10, 18, 64, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--card-radius);
}

@media (min-width: 768px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}

/* Individual bento tile */
.about-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: 1.75rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--t-std), box-shadow var(--t-std),
              background var(--t-std), border-color var(--t-std);
}

/* Top accent border — expands full-width on hover */
.about-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--akv-blue), var(--akv-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-std);
}

.about-stat:hover {
  transform: translateY(-6px);
  background: rgba(28,168,224,.09);
  border-color: rgba(28,168,224,.3);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}

.about-stat:hover::before { transform: scaleX(1); }

/* Large gradient stat value — the visual anchor of each tile */
.about-stat-value {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--akv-white) 0%, var(--akv-blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-stat-label {
  font-family: "Poppins", sans-serif;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

@media (max-width: 767.98px) {
  .about-stats { gap: .75rem; padding: 1.25rem; }
  .about-stat { padding: 1.5rem .75rem; }
}


/* ==========================================================================
   FOUNDER MESSAGE (02)
   ========================================================================== */
.founder-card {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--card-radius);
  padding: 3rem 2.5rem 2.5rem;
}

.founder-quote-icon {
    display: none;
  position: absolute;
  top: 1.5rem; left: 2rem;
  font-size: 2.5rem;
  color: var(--akv-gold);
  opacity: .7;
}

.founder-photo-wrap { display: flex; justify-content: center; }

.founder-photo {
  display: block;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1055 / 1491;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--card-radius);
  border: 4px solid var(--akv-blue);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.founder-message {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.25rem;
}

.founder-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--akv-white);
  margin-bottom: .1rem;
  margin-top: .5rem;
}

.founder-title {
  font-size: .85rem;
  color: var(--akv-blue-light);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .founder-photo { max-width: 220px; }
}


/* ==========================================================================
   VISION & MISSION (03)
   ========================================================================== */
.vm-card {
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
}

.vm-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--akv-blue), var(--akv-blue-light));
  color: var(--akv-white);
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(28,168,224,.32);
}

.vm-title {
  font-size: 1.2rem;
  margin-bottom: .75rem;
}

.vm-text {
  color: var(--akv-gray-700);
  margin-bottom: 0;
}


/* ==========================================================================
   HOW WE WORK (04) — 8-step process, parallax bg
   ========================================================================== */
.process-section { position: relative; overflow: hidden; }

.process-parallax-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(28,168,224,.05) 0px, rgba(28,168,224,.05) 1px, transparent 1px, transparent 46px),
    repeating-linear-gradient(-45deg, rgba(242,194,48,.035) 0px, rgba(242,194,48,.035) 1px, transparent 1px, transparent 46px);
  background-attachment: fixed;
  pointer-events: none;
}

.process-subtitle {
  font-size: .85rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  margin: 0 auto;
}

/* Outer wrap — hosts the prev/next nav buttons */
.process-timeline-outer {
  position: relative;
  padding: 0 3.5rem;
}

.timeline-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.timeline-nav-btn:hover {
  background: var(--akv-blue);
  border-color: var(--akv-blue);
  color: var(--akv-white);
}

.timeline-nav-prev { left: 0; }
.timeline-nav-next { right: 0; }

/* Horizontal scroll container — swipe/drag on any viewport */
.process-timeline-h-wrap {
  overflow-x: auto;
  padding: 2.5rem 0 2rem;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.process-timeline-h-wrap::-webkit-scrollbar { height: 6px; }
.process-timeline-h-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,.08); border-radius: 3px; }
.process-timeline-h-wrap::-webkit-scrollbar-thumb { background: var(--akv-blue); border-radius: 3px; }

.process-timeline-h {
  --tl-slot-h: 168px;
  position: relative;
  display: flex;
  width: max-content;
  min-width: 100%;
  padding: 0 1rem;
}

@media (max-width: 575.98px) {
  .process-timeline-outer { padding: 0 2.75rem; }
  .timeline-nav-btn { width: 40px; height: 40px; font-size: 1rem; }
}

/* Timeline track — static line behind the nodes */
.process-timeline-h::before {
  content: "";
  position: absolute;
  top: calc(var(--tl-slot-h) + 28px);
  left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.1);
}

/* Gradient progress line — draws in left-to-right on scroll-reveal */
.process-timeline-h::after {
  content: "";
  position: absolute;
  top: calc(var(--tl-slot-h) + 28px);
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--akv-blue), var(--akv-blue-light), var(--akv-gold));
  box-shadow: 0 0 14px rgba(28,168,224,.65);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s ease;
}

.process-timeline-h-wrap.visible .process-timeline-h::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .process-timeline-h::after { transform: scaleX(1); transition: none; }
}

.timeline-h-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 230px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}

.process-timeline-h-wrap.visible .process-timeline-h .timeline-h-item { opacity: 1; transform: translateY(0); }

.process-timeline-h-wrap.visible .process-timeline-h .timeline-h-item:nth-child(1) { transition-delay: 80ms; }
.process-timeline-h-wrap.visible .process-timeline-h .timeline-h-item:nth-child(2) { transition-delay: 180ms; }
.process-timeline-h-wrap.visible .process-timeline-h .timeline-h-item:nth-child(3) { transition-delay: 280ms; }
.process-timeline-h-wrap.visible .process-timeline-h .timeline-h-item:nth-child(4) { transition-delay: 380ms; }
.process-timeline-h-wrap.visible .process-timeline-h .timeline-h-item:nth-child(5) { transition-delay: 480ms; }
.process-timeline-h-wrap.visible .process-timeline-h .timeline-h-item:nth-child(6) { transition-delay: 580ms; }
.process-timeline-h-wrap.visible .process-timeline-h .timeline-h-item:nth-child(7) { transition-delay: 680ms; }
.process-timeline-h-wrap.visible .process-timeline-h .timeline-h-item:nth-child(8) { transition-delay: 780ms; }

@media (prefers-reduced-motion: reduce) {
  .timeline-h-item { transition: none; opacity: 1; transform: none; }
}

.timeline-h-slot {
  height: var(--tl-slot-h);
  width: 100%;
  display: flex;
  padding: 0 .6rem;
}

.timeline-h-slot-top { align-items: flex-end; }
.timeline-h-slot-bottom { align-items: flex-start; }

.timeline-h-card {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid transparent;
  border-radius: var(--card-radius);
  padding: 1rem 1.1rem;
  text-align: center;
  transition: background var(--t-std), border-color var(--t-std), transform var(--t-std);
}

.timeline-h-card:hover {
  transform: translateY(-4px);
  background: rgba(28,168,224,.08);
  border-color: rgba(28,168,224,.28);
}

.roadmap-number {
  position: relative;
  flex-shrink: 0;
  width: 56px; height: 56px;
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--akv-blue), var(--akv-blue-light));
  box-shadow: 0 0 0 6px var(--akv-navy), 0 6px 18px rgba(28,168,224,.45);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--akv-white);
  transition: transform var(--t-std), box-shadow var(--t-std);
}

.timeline-h-item:hover .roadmap-number {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px var(--akv-navy), 0 8px 24px rgba(28,168,224,.6);
}

.roadmap-arrow {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--akv-navy);
  background: var(--akv-gold);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.roadmap-step-name {
  font-size: 1rem;
  color: var(--akv-white);
  margin-bottom: .4rem;
}

.roadmap-text {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
  margin-bottom: 0;
}


/* ==========================================================================
   OUR SERVICES (05)
   ========================================================================== */
.services-section { position: relative; overflow: hidden; }

/* Soft background blobs */
.services-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.services-blob-1 {
  top: -120px; left: -160px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(28,168,224,.10), transparent 70%);
}

.services-blob-2 {
  bottom: -140px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(242,194,48,.09), transparent 70%);
}

.services-subtitle {
  font-size: .95rem;
  color: var(--akv-gray-700);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-subtitle strong { color: var(--akv-navy); }

.service-card {
  position: relative;
  z-index: 1;
  padding: 2.25rem 2rem;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Faint decorative technical texture, bottom-right of each card */
.service-card-deco {
  position: absolute;
  right: 0; bottom: 0;
  width: 220px; height: 180px;
  pointer-events: none;
  opacity: .5;
  z-index: 0;
}

.service-card-deco-1 {
  background-image: repeating-linear-gradient(0deg, rgba(28,168,224,.08) 0, rgba(28,168,224,.08) 1px, transparent 1px, transparent 18px),
                     repeating-linear-gradient(90deg, rgba(28,168,224,.08) 0, rgba(28,168,224,.08) 1px, transparent 1px, transparent 18px);
  mask-image: radial-gradient(circle at 100% 100%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 100% 100%, #000 0%, transparent 70%);
}

.service-card-deco-2 {
  background-image: repeating-radial-gradient(circle at 100% 100%, rgba(242,194,48,.1) 0, rgba(242,194,48,.1) 1px, transparent 1px, transparent 16px);
  mask-image: radial-gradient(circle at 100% 100%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 100% 100%, #000 0%, transparent 70%);
}

.service-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(28,168,224,.12), rgba(95,203,242,.12));
  color: var(--akv-blue);
  font-size: 1.4rem;
}

.service-header-text { flex: 1; }

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

.service-title-bar {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--akv-blue), var(--akv-blue-light));
}

.service-number {
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: rgba(28,168,224,.14);
  line-height: 1;
}

.service-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: var(--akv-gray-100);
  margin-bottom: 1.5rem;
}

.service-checklist {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: var(--akv-gray-700);
}

.service-checklist i { color: var(--akv-blue); font-size: 1.05rem; flex-shrink: 0; }

.service-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.5rem;
  background: rgba(28,168,224,.08);
  color: var(--akv-blue) !important;
  border: 1px solid rgba(28,168,224,.25);
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: .875rem;
  font-weight: 600;
  transition: background var(--t-fast), border-color var(--t-fast), gap var(--t-fast);
  width: 40%;
  justify-content: center;
}

.service-cta:hover {
  background: var(--akv-blue);
  color: var(--akv-white) !important;
  border-color: var(--akv-blue);
  gap: .7rem;
}

@media (max-width: 575.98px) {
  .service-card-header { flex-wrap: wrap; }
  .service-number { display: none; }
}


/* ==========================================================================
   OUR PRODUCTS (06)
   ========================================================================== */
.product-card { height: 100%; }

.product-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--akv-navy), var(--akv-navy-light));
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--t-std);
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.product-body { padding: 1.5rem 1.5rem 1.75rem; }

.product-title {
  font-size: 1.05rem;
  margin-bottom: .6rem;
}

.product-text {
  font-size: .875rem;
  color: var(--akv-gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: "Poppins", sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--akv-blue);
  transition: gap var(--t-fast), color var(--t-fast);
}

.product-link:hover {
  color: var(--akv-blue-light);
  gap: .55rem;
}


/* ==========================================================================
   MACHINES (11–12) — light theme, bento cards
   ========================================================================== */
.machines-section { position: relative; overflow: hidden; }

/* Corner triangle motif, echoes the hero's geometric accent */
.machines-deco {
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  pointer-events: none;
  opacity: .5;
  background-image: repeating-linear-gradient(45deg, rgba(28,168,224,.08) 0, rgba(28,168,224,.08) 1px, transparent 1px, transparent 20px),
                     repeating-linear-gradient(-45deg, rgba(242,194,48,.06) 0, rgba(242,194,48,.06) 1px, transparent 1px, transparent 20px);
  mask-image: radial-gradient(circle at 100% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 100% 0%, #000 0%, transparent 70%);
}

.machine-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .85rem;
  height: 100%;
  padding: 1.75rem 1.1rem;
  background: var(--akv-white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--t-std), box-shadow var(--t-std);
}

.machine-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--akv-blue), var(--akv-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-std);
}

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

.machine-card:hover::before { transform: scaleX(1); }

.machine-photo {
  width: 84px; height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(28,168,224,.1), rgba(242,194,48,.08));
  border: 1px solid var(--akv-gray-100);
  color: var(--akv-blue);
  font-size: 1.9rem;
  box-shadow: 0 8px 20px rgba(10,18,64,.1);
  transition: transform var(--t-std);
}

.machine-card:hover .machine-photo { transform: scale(1.08); }

.machine-name {
  font-size: .95rem;
  color: var(--akv-navy);
  margin-bottom: 0;
}

.machine-desc {
  font-size: .8rem;
  line-height: 1.6;
  color: var(--akv-gray-700);
  margin-bottom: 0;
}


/* ==========================================================================
   STATS COUNTER BAND
   ========================================================================== */
.stats-band {
  position: relative;
  padding: 4.5rem 0;
  background: var(--akv-navy);
  overflow: hidden;
}

.stats-parallax-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(28,168,224,.12), transparent 55%),
                    radial-gradient(circle at 80% 70%, rgba(242,194,48,.08), transparent 55%);
  background-attachment: fixed;
  pointer-events: none;
}

.stats-strip {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--card-radius);
  padding: 2.25rem 2rem;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 130px;
}

.stats-value {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--akv-gold);
  line-height: 1.2;
}

.stats-label {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  margin-top: .25rem;
}

.stats-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.14);
}

@media (max-width: 767.98px) {
  .stats-divider { display: none; }
}


/* ==========================================================================
   CERTIFICATIONS (13)
   ========================================================================== */
.cert-card {
  width: 100%;
  padding: 2.25rem 1.5rem;
  text-align: center;
  border: none;
  cursor: pointer;
}

.cert-thumb {
  width: 68px; height: 68px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--akv-off-white);
  color: var(--akv-blue);
  font-size: 1.7rem;
}

.cert-label {
  font-family: "Poppins", sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--akv-navy);
  margin-bottom: 0;
}

/* Lightbox modal */
.cert-modal .modal-content {
  background: var(--akv-navy);
  border: none;
  border-radius: var(--card-radius);
  padding: 3rem 2rem;
  text-align: center;
}

.cert-modal .modal-body i {
  font-size: 4rem;
  color: var(--akv-gold);
  margin-bottom: 1rem;
  display: block;
}

.cert-modal .modal-body p {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--akv-white);
  margin-bottom: 0;
}

.cert-modal .btn-close {
  position: absolute;
  top: 1rem; right: 1rem;
}


/* ==========================================================================
   OUR CLIENTS (14) — marquee
   ========================================================================== */
.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  width: max-content;
  animation: clients-scroll 90s linear infinite;
}

.clients-marquee:hover .clients-track { animation-play-state: paused; }

.client-logo-item {
  flex-shrink: 0;
  width: 168px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  background: var(--akv-white);
  border: 1px solid var(--akv-gray-100);
  border-radius: var(--card-radius);
  transition: transform var(--t-std), box-shadow var(--t-std), border-color var(--t-std);
}

/* Some client logos are white/near-white (e.g. reversed-out wordmarks) and
   disappear on the white card — give those a dark backdrop instead. */
.client-logo-item.client-logo-dark {
  background: var(--akv-navy);
  border-color: #fff;
}

.client-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: rgba(28,168,224,.25);
}

.client-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Text fallback — shown only if the logo image fails to load */
.client-logo-fallback {
  display: none;
  font-family: "Poppins", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: var(--akv-gray-700);
}

.client-logo-item.img-failed .client-logo-img { display: none; }
.client-logo-item.img-failed .client-logo-fallback { display: block; }
.client-logo-item.img-failed:hover .client-logo-fallback { color: var(--akv-blue); }

/* Text-only items — no logo image was found for these clients */
.client-logo-item.client-logo-text-only .client-logo-fallback { display: block; }
.client-logo-item.client-logo-text-only:hover .client-logo-fallback { color: var(--akv-blue); }

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}


/* ==========================================================================
   CONTACT (15)
   ========================================================================== */

/* ── Section background ── */
.contact-section-bg {
  background: var(--akv-off-white) url("https://web.keywordindia.in/akvelectrical/wp-content/uploads/2026/07/h-contact-bg.webp") no-repeat center / cover;
}

/* ── Hero banner ── */
.contact-hero-wrap {
  position: relative;
  padding: 1rem 0 3rem;
  margin-bottom: 1.5rem;
}

.contact-hero-content { position: relative; z-index: 1; max-width: 620px; }

.contact-hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--akv-navy);
  margin: 0 0 1rem;
}

.contact-hero-text {
  color: var(--akv-gray-700);
  font-size: .98rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.contact-hero-pin {
  position: absolute;
  top: 2.25rem;
  right: 6rem;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 50% 0;
  background: var(--akv-blue);
  color: var(--akv-white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  box-shadow: 0 10px 24px rgba(28,168,224,.35);
}

.contact-hero-pin i { transform: rotate(-45deg); }

@media (max-width: 991.98px) { .contact-hero-pin { display: none; } }

.contact-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.contact-hero-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.chb-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(28,168,224,.12);
  color: var(--akv-blue);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chb-text { display: flex; flex-direction: column; }
.chb-text strong { font-size: .88rem; font-weight: 700; color: var(--akv-navy); }
.chb-text small { font-size: .8rem; color: var(--akv-gray-700); }

/* ── Card title (used inside both cards) ── */
.contact-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 .5rem;
}

.contact-info-card .contact-card-title { color: var(--akv-white); }
.contact-form-card .contact-card-title { color: var(--akv-navy); }

.title-bar.title-bar-sm { margin-bottom: 1.1rem; }

/* ── Get In Touch card ── */
.contact-info-card {
  height: 100%;
  background: linear-gradient(135deg, var(--akv-navy) 0%, var(--akv-navy-light) 100%);
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
}

.contact-card-sub {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.contact-info-list li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(28,168,224,.18);
  color: var(--akv-blue-light);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-icon-wa { background: rgba(37,211,102,.18); color: #25D366; }

.ci-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}

.ci-text strong { color: var(--akv-white); font-size: .95rem; font-weight: 700; }

.ci-text a { color: rgba(255,255,255,.75); transition: color var(--t-fast); }
.ci-text a:hover { color: var(--akv-blue-light); }

.contact-whatsapp-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.contact-whatsapp-link:hover { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.4); }

.wa-ext { margin-left: auto; color: rgba(255,255,255,.5); font-size: .85rem; }

/* ── Send Us a Message card ── */
.contact-form-card {
  height: 100%;
  background: var(--akv-white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 2.5rem 2rem;
}

.contact-form-card .form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--akv-navy);
  margin-bottom: .4rem;
}

.contact-form-card .form-control {
  border: 1px solid var(--akv-gray-100);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: .9rem;
}

.contact-form-card .form-control:focus {
  border-color: var(--akv-blue);
  box-shadow: 0 0 0 3px rgba(28,168,224,.15);
}

.input-icon-group { position: relative; }

.input-icon-group i {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--akv-gray-700);
  font-size: .9rem;
  pointer-events: none;
}

.input-icon-group .form-control { padding-left: 2.4rem; }

.contact-form-strip {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  background: var(--akv-off-white);
  border-radius: 10px;
  padding: .9rem 1.25rem;
  margin: .25rem 0 .25rem;
}

.cfs-item { display: flex; align-items: center; gap: .6rem; }
.cfs-item i { color: var(--akv-blue); font-size: 1.1rem; flex-shrink: 0; }
.cfs-text { display: flex; flex-direction: column; }
.cfs-text strong { font-size: .84rem; font-weight: 700; color: var(--akv-navy); }
.cfs-text small { font-size: .76rem; color: var(--akv-gray-700); }

.cfs-divider { width: 1px; align-self: stretch; background: var(--akv-gray-100); }

@media (max-width: 575.98px) { .cfs-divider { display: none; } }

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .5rem;
}

.contact-privacy {
  display: none;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--akv-gray-700);
}

.contact-privacy i { color: var(--akv-blue); }





/* .contact-info-card {
  height: 100%;
  background: linear-gradient(135deg, var(--akv-navy) 0%, var(--akv-navy-light) 100%);
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}

.contact-info-list li strong { color: var(--akv-white); }

.contact-info-list i {
  color: var(--akv-blue-light);
  font-size: 1rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

.contact-info-list a {
  color: rgba(255,255,255,.75);
  transition: color var(--t-fast);
}

.contact-info-list a:hover { color: var(--akv-blue-light); }

.contact-form-card {
  height: 100%;
  background: var(--akv-white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 2.5rem 2rem;
}

.contact-form-card .form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--akv-navy);
  margin-bottom: .4rem;
}

.contact-form-card .form-control {
  border: 1px solid var(--akv-gray-100);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: .9rem;
}

.contact-form-card .form-control:focus {
  border-color: var(--akv-blue);
  box-shadow: 0 0 0 3px rgba(28,168,224,.15);
} */


/* =========================================================
   MAIN SECTION
========================================================= */

.akv-manufacturing-process {

    --akv-navy: #061638;
    --akv-navy-dark: #030d25;

    --akv-blue: #247bff;
    --akv-blue-dark: #0b4ea2;

    --akv-cyan: #00c8ff;

    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 90px 25px 80px;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif !important;

    background:

        radial-gradient(
            circle at 50% 35%,
            rgba(0,200,255,.09),
            transparent 42%
        ),

        radial-gradient(
            circle at 10% 85%,
            rgba(36,123,255,.08),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #061638 0%,
            #071d4d 48%,
            #040f2b 100%
        );
}


/* =========================================================
   TECH GRID
========================================================= */

.akv-manufacturing-process::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .55;

    background-image:

        linear-gradient(
            135deg,
            rgba(0,200,255,.045) 1px,
            transparent 1px
        ),

        linear-gradient(
            45deg,
            rgba(36,123,255,.035) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}


/* =========================================================
   BACKGROUND GLOWS
========================================================= */

.akv-bg-glow {

    position: absolute;

    pointer-events: none;

    border-radius: 50%;

    border: 1px solid rgba(0,200,255,.06);
}


.akv-bg-glow-one {

    width: 550px;

    height: 550px;

    top: -350px;

    right: -200px;

    box-shadow:

        0 0 0 80px rgba(0,200,255,.018),

        0 0 0 160px rgba(0,200,255,.012);
}


.akv-bg-glow-two {

    width: 500px;

    height: 500px;

    bottom: -350px;

    left: -250px;

    border-color: rgba(36,123,255,.07);

    box-shadow:

        0 0 0 80px rgba(36,123,255,.018),

        0 0 0 160px rgba(36,123,255,.01);
}


/* =========================================================
   CONTAINER
========================================================= */

.akv-process-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.akv-process-header {

    text-align: center;

    margin-bottom: 72px;
}


.akv-process-eyebrow {

    display: inline-block;

    margin-bottom: 15px;

    color: #00c8ff !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 12px !important;

    font-weight: 700 !important;

    letter-spacing: 5px;

    line-height: 1.2;
}


.akv-process-header h2 {

    margin: 0 !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif !important;

    font-size:
        clamp(36px, 4vw, 48px) !important;

    font-weight: 800 !important;

    line-height: 1.12 !important;

    letter-spacing: -1.5px !important;
}


.akv-process-header h2 span {

    color: #00c8ff !important;
}


.akv-title-line {

    width: 48px;

    height: 3px;

    margin: 22px auto 18px;

    border-radius: 20px;

    background: #00c8ff;

    box-shadow:
        0 0 12px rgba(0,200,255,.75);
}


.akv-process-header p {

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255,255,255,.65) !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 16px !important;

    font-weight: 400 !important;

    line-height: 1.6 !important;
}


/* =========================================================
   TIMELINE
========================================================= */

.akv-process-timeline {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    grid-template-rows:
        350px 350px;

    column-gap: 0;

    row-gap: 92px;

    width: 100%;
}


/* =========================================================
   COMPLETE ROUTE SVG
========================================================= */

.akv-route-line {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 792px;

    overflow: visible;

    pointer-events: none;

    z-index: 1;
}


/* Main glowing route */

.akv-route-path {

    fill: none;

    stroke: #00c8ff;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;

    filter:

        drop-shadow(
            0 0 5px rgba(0,200,255,.9)
        )

        drop-shadow(
            0 0 13px rgba(0,200,255,.35)
        );

    stroke-dasharray: 14 8;

    animation:
        akvRouteAnimation 3s linear infinite;
}


@keyframes akvRouteAnimation {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -44;
    }

}


/* Route dots */

.akv-route-dot {

    fill: #00c8ff;

    filter:

        drop-shadow(
            0 0 5px rgba(0,200,255,1)
        )

        drop-shadow(
            0 0 12px rgba(0,200,255,.6)
        );
}


/* =========================================================
   PROCESS ITEM
========================================================= */

.akv-process-item {

    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: center;

    min-width: 0;

    height: 350px;
}


/* =========================================================
   ICON
========================================================= */

.akv-process-icon {

    position: relative;

    width: 112px;

    height: 112px;

    flex: 0 0 112px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:

        radial-gradient(
            circle at center,
            #123b7a 0%,
            #08255a 55%,
            #061638 100%
        );

    border: 2px solid #00c8ff;

    box-shadow:

        0 0 0 6px rgba(0,200,255,.045),

        0 0 0 12px rgba(0,200,255,.025),

        0 0 28px rgba(0,200,255,.30);

    z-index: 5;
}


/* Outer dotted circle */

.akv-process-icon::before {

    content: "";

    position: absolute;

    inset: -10px;

    border-radius: 50%;

    border: 1px dashed rgba(0,200,255,.42);
}


/* Inner circle */

.akv-process-icon::after {

    content: "";

    position: absolute;

    inset: 7px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.07);

    pointer-events: none;
}


/* SVG */

.akv-process-icon svg {

    position: relative;

    z-index: 2;

    width: 45px;

    height: 45px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   STEP NUMBER
========================================================= */

.akv-step-number {

    position: absolute;

    top: -11px;

    right: -8px;

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #247bff;

    border: 3px solid #061638;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 11px !important;

    font-weight: 800 !important;

    line-height: 1;

    z-index: 10;

    box-shadow:
        0 0 12px rgba(36,123,255,.8);
}


/* =========================================================
   CARD
========================================================= */

.akv-process-card {

    position: relative;

    width: calc(100% - 24px);

    height: 220px;

    margin-top: 18px;

    padding: 26px 24px 22px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    border-radius: 12px;

    border: 1px solid rgba(0,200,255,.24);

    background:

        linear-gradient(
            145deg,
            rgba(12,53,112,1),
            rgba(5,25,62,1)
        );

    box-shadow:

        inset 0 1px 0 rgba(255,255,255,.035),

        0 12px 30px rgba(0,0,0,.15);

    transition:

        transform .3s ease,

        border-color .3s ease,

        box-shadow .3s ease;
}


/* Hover */

.akv-process-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(0,200,255,.65);

    box-shadow:

        0 15px 38px rgba(0,200,255,.10),

        inset 0 1px 0 rgba(255,255,255,.05);
}


/* =========================================================
   CARD TITLE
========================================================= */

.akv-process-card h3 {

    margin: 0 !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 18px !important;

    font-weight: 700 !important;

    line-height: 1.35 !important;

    letter-spacing: 0 !important;

    text-transform: none !important;
}


/* =========================================================
   CARD LINE
========================================================= */

.akv-card-line {

    display: block;

    width: 32px;

    height: 3px;

    flex-shrink: 0;

    margin: 12px auto 14px;

    border-radius: 20px;

    background: #00c8ff;

    box-shadow:
        0 0 10px rgba(0,200,255,.55);
}


/* =========================================================
   CARD TEXT
========================================================= */

.akv-process-card p {

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255,255,255,.68) !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 13.5px !important;

    font-weight: 400 !important;

    line-height: 1.65 !important;
}


/* =========================================================
   QUALITY PROMISE
========================================================= */

.akv-quality-promise {

    width: min(650px, 100%);

    margin: 58px auto 0;

    padding: 14px 25px;

    display: flex;

    align-items: center;

    gap: 17px;

    border-radius: 50px;

    border: 1px solid rgba(0,200,255,.38);

    background:

        linear-gradient(
            90deg,
            rgba(7,61,126,.55),
            rgba(5,38,82,.45)
        );

    box-shadow:
        0 0 30px rgba(0,200,255,.06);
}


/* Promise icon */

.akv-promise-icon {

    width: 46px;

    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:

        linear-gradient(
            145deg,
            #168dff,
            #0755b5
        );

    border: 2px solid #00c8ff;

    box-shadow:
        0 0 17px rgba(0,200,255,.42);
}


.akv-promise-icon svg {

    width: 23px;

    height: 23px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* Promise heading */

.akv-promise-content strong {

    display: block;

    margin: 0 0 3px;

    color: #ffffff !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 15px !important;

    font-weight: 700 !important;

    line-height: 1.35 !important;
}


/* Promise description */

.akv-promise-content span {

    display: block;

    color: rgba(255,255,255,.58) !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 12px !important;

    line-height: 1.45 !important;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .akv-manufacturing-process {

        padding:
            80px 25px
            70px;
    }


    .akv-process-header {

        margin-bottom: 60px;
    }


    .akv-process-timeline {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows:
            auto auto;

        row-gap: 70px;
    }


    /* Hide desktop route */

    .akv-route-line {

        display: none;
    }


    .akv-process-item {

        height: auto;

        min-height: 0;
    }


    .akv-process-card {

        width: calc(100% - 35px);

        height: 220px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .akv-manufacturing-process {

        padding:
            65px 16px
            55px;
    }


    /* Header */

    .akv-process-header {

        margin-bottom: 50px;
    }


    .akv-process-eyebrow {

        margin-bottom: 12px;

        font-size: 10px !important;

        letter-spacing: 3.5px;
    }


    .akv-process-header h2 {

        font-size: 32px !important;

        line-height: 1.15 !important;

        letter-spacing: -.8px !important;
    }


    .akv-title-line {

        width: 42px;

        margin:
            18px auto
            16px;
    }


    .akv-process-header p {

        padding: 0 8px !important;

        font-size: 14px !important;

        line-height: 1.6 !important;
    }


    /* Timeline */

    .akv-process-timeline {

        display: flex;

        flex-direction: column;

        gap: 34px;

        width: 100%;

        padding-left: 5px;
    }


    /* Hide desktop SVG */

    .akv-route-line {

        display: none;
    }


    /* Mobile vertical line */

    .akv-process-timeline::before {

        content: "";

        position: absolute;

        top: 35px;

        bottom: 35px;

        left: 43px;

        width: 2px;

        background:

            linear-gradient(
                to bottom,
                transparent 0%,
                #00c8ff 6%,
                #247bff 50%,
                #00c8ff 94%,
                transparent 100%
            );

        box-shadow:
            0 0 10px rgba(0,200,255,.45);

        z-index: 0;
    }


    /* Item */

    .akv-process-item {

        display: grid;

        grid-template-columns:
            70px minmax(0,1fr);

        gap: 17px;

        align-items: start;

        width: 100%;

        height: auto;

        min-height: 70px;
    }


    /* Icon */

    .akv-process-icon {

        width: 70px;

        height: 70px;

        flex: none;

        grid-column: 1;

        grid-row: 1;
    }


    .akv-process-icon svg {

        width: 29px;

        height: 29px;
    }


    .akv-process-icon::before {

        inset: -7px;
    }


    .akv-process-icon::after {

        inset: 5px;
    }


    /* Number */

    .akv-step-number {

        width: 27px;

        height: 27px;

        top: -7px;

        right: -7px;

        border-width: 2px;

        font-size: 9px !important;
    }


    /* Card */

    .akv-process-card {

        grid-column: 2;

        grid-row: 1;

        width: 100%;

        height: auto;

        min-height: 0;

        margin: 0;

        padding:
            20px 18px;

        align-items: flex-start;

        text-align: left;
    }


    .akv-process-card h3 {

        font-size: 16px !important;

        line-height: 1.35 !important;
    }


    .akv-card-line {

        margin-left: 0;

        margin-right: 0;

        margin-top: 10px;

        margin-bottom: 11px;
    }


    .akv-process-card p {

        font-size: 12.5px !important;

        line-height: 1.6 !important;
    }


    /* Promise */

    .akv-quality-promise {

        margin-top: 45px;

        padding:
            14px 16px;

        border-radius: 18px;

        gap: 12px;

        align-items: flex-start;
    }


    .akv-promise-icon {

        width: 41px;

        height: 41px;

        flex-basis: 41px;
    }


    .akv-promise-icon svg {

        width: 20px;

        height: 20px;
    }


    .akv-promise-content strong {

        font-size: 13px !important;

        line-height: 1.4 !important;
    }


    .akv-promise-content span {

        font-size: 10.5px !important;

        line-height: 1.5 !important;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .akv-manufacturing-process {

        padding:
            55px 13px
            50px;
    }


    .akv-process-header h2 {

        font-size: 28px !important;
    }


    .akv-process-header p {

        font-size: 13px !important;
    }


    .akv-process-timeline {

        padding-left: 3px;

        gap: 30px;
    }


    .akv-process-item {

        grid-template-columns:
            60px minmax(0,1fr);

        gap: 14px;
    }


    .akv-process-timeline::before {

        left: 35px;
    }


    .akv-process-icon {

        width: 60px;

        height: 60px;
    }


    .akv-process-icon svg {

        width: 26px;

        height: 26px;
    }


    .akv-process-card {

        padding:
            17px 15px;
    }


    .akv-process-card h3 {

        font-size: 15px !important;
    }


    .akv-process-card p {

        font-size: 12px !important;

        line-height: 1.55 !important;
    }


    .akv-quality-promise {

        padding: 13px;
    }

}

