﻿/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Liquid Glass — Bold Dynamic — UI/UX Pro Max */
  --primary:       #0EA5E9;
  --primary-dark:  #0284C7;
  --primary-light: #E0F7FF;
  --primary-mid:   #7DD3FC;
  --accent:        #06B6D4;
  --accent-light:  #ECFEFF;
  --electric:      #38BDF8;
  --neon:          #00D4FF;
  --navy:          #050D1A;
  --navy2:         #0A1628;
  --dark:          #060E1D;
  --text:          #1E293B;
  --text-light:    #64748B;
  --white:         #FFFFFF;
  --bg:            #F8FAFC;
  --bg-alt:        #F0F7FF;
  --border:        #E2E8F0;
  --gold:          #F59E0B;
  --security-green:#10B981;
  --glass-bg:      rgba(255,255,255,0.07);
  --glass-border:  rgba(255,255,255,0.12);
  --glow-blue:     0 0 40px rgba(14,165,233,0.4), 0 0 80px rgba(14,165,233,0.15);
  --glow-sm:       0 0 20px rgba(14,165,233,0.3);
  --shadow-sm:     0 2px 12px rgba(5,13,26,0.08);
  --shadow-md:     0 8px 32px rgba(5,13,26,0.12), 0 2px 8px rgba(5,13,26,0.06);
  --shadow-lg:     0 24px 64px rgba(5,13,26,0.18), 0 8px 24px rgba(5,13,26,0.10);
  --radius:        20px;
  --radius-sm:     10px;
  --transition:    all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Rubik', sans-serif; color: var(--text); line-height: 1.65; overflow-x: hidden; background: var(--bg); }

/* Global accessibility: focus ring & cursor */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
a, button, [role="button"], label[for], .btn, .nav-links a, .product-card, .cl-card, .why-card, .dl-card {
  cursor: pointer;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.highlight { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 50px; font-weight: 700;
  font-size: 15px; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  letter-spacing: 0.3px; font-family: 'Outfit', sans-serif;
  position: relative; overflow: hidden;
}
.btn:active { transform: translateY(0) scale(0.97) !important; }
.btn-primary {
  background: linear-gradient(135deg, #0284C7, #0EA5E9, #06B6D4);
  background-size: 200% auto;
  color: var(--white); border: none;
  box-shadow: 0 4px 20px rgba(14,165,233,0.4), 0 1px 4px rgba(14,165,233,0.2);
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(14,165,233,0.55), 0 2px 8px rgba(14,165,233,0.25);
}
.btn-ghost { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.45); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost-white:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.full-w { width: 100%; justify-content: center; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: 'Outfit', sans-serif; font-size: 3.4rem; font-weight: 800;
  color: var(--dark); margin-bottom: 16px; letter-spacing: -1px; line-height: 1.1;
  background: linear-gradient(135deg, #0F172A 0%, #0369A1 60%, #0EA5E9 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-header.light h2 {
  background: linear-gradient(135deg, #FFFFFF 0%, #7DD3FC 60%, #38BDF8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-header.light h2 { color: var(--white); }
.section-header p { color: var(--text-light); max-width: 580px; margin: 0 auto; font-size: 17px; line-height: 1.75; }
.section-header.light p { color: rgba(255,255,255,0.65); }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(6,182,212,0.08));
  color: var(--primary-dark);
  font-size: 12px; font-weight: 700; padding: 7px 20px; border-radius: 50px;
  margin-bottom: 18px; letter-spacing: 1.4px; text-transform: uppercase;
  border: 1px solid rgba(14,165,233,0.25);
  animation: tagShimmer 3s ease-in-out infinite;
  font-family: 'Outfit', sans-serif;
}
@keyframes tagShimmer {
  0%,100% { box-shadow: 0 0 0 0 rgba(21,101,192,0); }
  50% { box-shadow: 0 0 0 6px rgba(21,101,192,0.08); }
}
.section-tag.light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.95); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
  background: rgba(248,250,252,0.97); backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(226,232,240,0.9);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(13,71,161,0.13); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 14px; }
.logo-img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; box-shadow: 0 3px 14px rgba(13,71,161,0.25); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 900; letter-spacing: 2px; line-height: 1.1;
  background: linear-gradient(135deg, #0F172A, #0369A1, #0EA5E9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-sub { font-size: 13px; color: var(--text-light); letter-spacing: 0.5px; font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { color: var(--text); font-size: 16px; font-weight: 600; padding: 10px 18px; border-radius: 8px; transition: background 0.18s ease, color 0.18s ease; cursor: pointer; }
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.btn-nav { background: var(--primary) !important; color: var(--white) !important; border-radius: 50px !important; padding: 12px 28px !important; font-size: 16px !important; }
.btn-nav:hover { background: var(--primary-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 28px; height: 2.5px; background: var(--dark); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 108px; padding-bottom: 120px;
}

/* Background — deep dark gradient (photo is now in right column as img) */
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #050E1E 0%, #0A1628 40%, #0D2448 70%, #0A1F3E 100%);
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.10); } }

/* Overlay — keeps left content fully readable */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,14,30,0.60) 0%,
    rgba(5,14,30,0.30) 50%,
    rgba(5,14,30,0.0) 100%
  );
}

/* Right-side face image — fills right column, dissolves into background on all edges */
.hero-face-wrap {
  position: relative; width: 100%; height: 100%;
  min-height: calc(100vh - 100px);
  overflow: hidden;
}
.hero-face-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* CSS mask — true alpha dissolve on all 4 edges simultaneously */
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%,   black 35%,  black 100%),
    linear-gradient(to left,   transparent 0%,   black 15%,  black 100%),
    linear-gradient(to bottom, transparent 0%,   black 20%,  black 100%),
    linear-gradient(to top,    transparent 0%,   black 20%,  black 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right,  transparent 0%,   black 35%,  black 100%),
    linear-gradient(to left,   transparent 0%,   black 15%,  black 100%),
    linear-gradient(to bottom, transparent 0%,   black 20%,  black 100%),
    linear-gradient(to top,    transparent 0%,   black 20%,  black 100%);
  mask-composite: intersect;
}
/* fade div no longer needed */
.hero-face-fade { display: none; }

/* Safmar logo — branded on helmet like a manufacturer's mark */
.helmet-logo {
  position: absolute;
  top: 18%;
  left: 38%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;

  /* Slight perspective warp to follow the curved helmet surface */
  transform: rotate(-6deg) perspective(200px) rotateY(12deg) rotateX(6deg);

  /* Crisp, clean logo — no colour change, natural brand look */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.55)) brightness(1.05) contrast(1.1);

  /* Overlay blend — logo sits on top of helmet naturally */
  mix-blend-mode: normal;
  opacity: 0.95;

  /* Subtle border to separate from helmet surface */
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25), 0 4px 16px rgba(0,0,0,0.4);
}

/* Subtle dot grid on left half only */
.hero-grid-bg {
  position: absolute; top: 0; left: 0; width: 55%; bottom: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Main content — two-column: text left, face right */
.hero-main {
  position: relative; z-index: 1; padding: 4px 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px;
}
.hero-left { display: flex; flex-direction: column; }
.hero-right { /* empty column lets the photo face show through */ }

/* Cert pills */
.hero-eyebrow { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85); font-size: 11px; font-weight: 600;
  padding: 6px 16px; border-radius: 50px; letter-spacing: 0.4px;
  backdrop-filter: blur(10px);
}
.hero-pill i { color: #64B5F6; font-size: 10px; }

/* Headline */
.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.08; margin-bottom: 22px;
}
.h1-accent {
  color: #38BDF8;
  display: inline;
  background: linear-gradient(135deg, #38BDF8, #7DD3FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtext */
.hero-sub {
  color: rgba(255,255,255,0.72); font-size: 17px; line-height: 1.8;
  max-width: 580px; margin-bottom: 36px;
}

/* CTAs */
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-ghost-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 50px; font-weight: 700; font-size: 15px;
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  background: rgba(255,255,255,0.05); cursor: pointer;
  transition: var(--transition); font-family: 'Rubik', sans-serif;
}
.btn-ghost-outline:hover { background: rgba(255,255,255,0.13); border-color: var(--white); transform: translateY(-2px); }

/* Client types row */
.hero-clients {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hc-label { color: rgba(255,255,255,0.38); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-right: 4px; }
.hc-item {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.78); font-size: 13px; font-weight: 600;
}
.hc-item i { color: #64B5F6; font-size: 13px; }

/* Stats strip — pinned to bottom of hero */
.hero-stat-strip {
  position: absolute; bottom: 90px; left: 0; right: 0; z-index: 2;
  background: rgba(5,14,30,0.78); border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
}
.hero-stat-inner {
  display: flex; align-items: center; justify-content: center;
  padding: 22px 0; gap: 0;
}
.hss-item { display: flex; flex-direction: column; align-items: center; padding: 0 40px; }
.hss-item strong {
  font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #FFFFFF, #7DD3FC);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hss-item span { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 5px; font-family: 'Outfit', sans-serif; }
.hss-sep { width: 1px; height: 44px; background: rgba(14,165,233,0.2); }

/* Bottom diagonal cut */
.hero-bottom-cut {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 90px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  pointer-events: none;
}

/* ===== MARQUEE ===== */
.marquee-bar { background: linear-gradient(90deg, #082F49, #0C4A6E, #0369A1, #0EA5E9, #0369A1, #0C4A6E, #082F49); background-size: 200% auto; animation: gradientShift 6s linear infinite; padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 50px; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-track span { color: var(--white); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.marquee-track i { color: rgba(255,255,255,0.6); }
@keyframes marquee { from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ===== ABOUT ===== */
/* About section background — soft blue mesh */
#about.section {
  background: linear-gradient(135deg, #F5FAFF 0%, #EDF5FF 30%, #E3F2FD 55%, #EEF6FF 80%, #F5FAFF 100%);
  position: relative; overflow: hidden;
}
#about.section::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  border-radius: 50%; top: -200px; right: -200px; pointer-events: none;
  background: radial-gradient(circle, rgba(21,101,192,0.07) 0%, transparent 70%);
}
#about.section::after {
  content: ''; position: absolute; width: 400px; height: 400px;
  border-radius: 50%; bottom: -150px; left: -100px; pointer-events: none;
  background: radial-gradient(circle, rgba(2,136,209,0.06) 0%, transparent 70%);
}
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.about-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }

/* Real photo in about */
.about-img-real {
  width: 100%; border-radius: var(--radius); overflow: hidden;
  position: relative; box-shadow: var(--shadow-lg);
}
.about-photo { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.about-img-real:hover .about-photo { transform: scale(1.04); }
.about-logo-over {
  position: absolute; bottom: 16px; right: 16px;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  overflow: hidden; border: 2px solid rgba(255,255,255,0.9);
}
.about-logo-over img { width: 100%; height: 100%; object-fit: cover; }
.about-logo-big { width: 200px; height: 200px; border-radius: 50%; border: 6px solid var(--primary-light); box-shadow: 0 0 0 12px rgba(13,71,161,0.05), var(--shadow-lg); overflow: hidden; background: var(--white); }
.about-logo-big img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; }
.asc { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.asc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.asc strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.8rem; color: var(--primary); line-height: 1; }
.asc span { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.about-certbadges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.about-certbadges span { background: var(--primary-light); color: var(--primary); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 50px; }
.about-text .section-tag { margin-bottom: 10px; }
.about-text h2 { font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.about-quote { font-size: 14px; font-style: italic; font-weight: 600; color: var(--primary); border-left: 4px solid var(--primary); padding-left: 14px; margin-bottom: 20px; }
.about-text p { color: var(--text-light); font-size: 15px; margin-bottom: 14px; line-height: 1.75; }
.about-list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 500; }
.about-list i { color: var(--primary); font-size: 13px; margin-top: 3px; flex-shrink: 0; }

/* ===== PRODUCTS ===== */
.products-section {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #EDF5FF 0%, #F5FAFF 25%, #E8F4FD 50%, #EDF5FF 75%, #F0F7FF 100%);
}
.products-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #0D47A1, #42A5F5, #0288D1, #0D47A1); background-size: 200% 100%; animation: gradientShift 4s linear infinite; }
@keyframes gradientShift { 0%{ background-position: 0% 0%; } 100%{ background-position: 200% 0%; } }
/* Decorative blobs */
.products-section::after {
  content: ''; position: absolute; width: 700px; height: 700px;
  border-radius: 50%; top: 50%; right: -250px; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(21,101,192,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }

.product-card {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-sm);
}
.product-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(14,165,233,0.0), rgba(6,182,212,0.0));
  transition: opacity 0.3s ease; opacity: 0; pointer-events: none;
  border: 2px solid transparent;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(14,165,233,0.22), 0 4px 16px rgba(14,165,233,0.12), 0 0 0 1px rgba(14,165,233,0.3);
  border-color: var(--primary);
}
.product-card:hover::after { opacity: 1; }

/* Card header */
.pc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px 0;
}
.pc-toe { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; display: flex; align-items: center; gap: 5px; }
.pc-toe.steel { background: #E3F2FD; color: var(--primary); }
.pc-toe.composite { background: #E1F5FE; color: #0288D1; }
.pc-model-no { font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--text-light); font-weight: 600; letter-spacing: 0.5px; }

/* Product image area — NO background color, just the watermark */
.pc-img-wrap {
  position: relative; height: 360px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 12px 20px 8px;
  background: var(--white);
}
/* Watermark â€” faint logo behind shoe */
.pc-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}
.pc-watermark img {
  width: 82%; height: 82%; object-fit: contain;
  opacity: 0.07;
  filter: grayscale(100%);
}
/* Shadow under shoe */
.pc-img-wrap::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 65%; height: 18px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.1) 0%, transparent 70%);
  border-radius: 50%; z-index: 1;
}
.pc-shoe {
  position: relative; z-index: 2;
  max-height: 330px; width: 100%; object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.22));
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.product-card:hover .pc-shoe { transform: translateY(-14px) scale(1.07); }

/* Polished raw shoe — no background, enhanced finish */
.pc-shoe-raw {
  mix-blend-mode: normal;
  filter:
    drop-shadow(0 18px 36px rgba(0,0,0,0.35))
    drop-shadow(0 6px 14px rgba(0,0,0,0.22))
    brightness(1.06)
    contrast(1.08)
    saturate(1.12);
}

/* Card body */
.pc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pc-body h3 { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); letter-spacing: -0.2px; }
.pc-price { font-size: 13px; color: var(--text-light); }
.pc-price strong { font-size: 22px; font-weight: 800; color: var(--primary); margin-left: 3px; font-family: 'Outfit', sans-serif; }

/* ---- PC Innovation Block ---- */
.pc-innovation { display: flex; flex-direction: column; gap: 8px; padding: 10px 12px; background: linear-gradient(135deg, rgba(21,101,192,0.06) 0%, rgba(2,136,209,0.04) 100%); border: 1px solid rgba(21,101,192,0.12); border-radius: 10px; }
.pc-key-specs { display: flex; flex-wrap: wrap; gap: 5px; }
.pc-key-specs span { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 600; color: var(--primary); background: rgba(21,101,192,0.08); padding: 3px 8px; border-radius: 20px; letter-spacing: 0.2px; }
.pc-key-specs span i { font-size: 9px; }
.pc-protect-bar { display: flex; align-items: center; gap: 7px; }
.ppb-label-left { font-size: 10px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.ppb-track { flex: 1; height: 6px; background: rgba(14,165,233,0.12); border-radius: 10px; overflow: hidden; }
/* .ppb-fill base styles are defined in the ANIMATED PROTECTION BAR section below */
.ppb-val { font-size: 10px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.pc-ideal-for { font-size: 10.5px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.pc-ideal-for i { color: var(--accent); font-size: 9px; }

.pc-certs { display: flex; gap: 6px; flex-wrap: wrap; }
.pc-certs span { background: var(--primary-light); color: var(--primary); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 50px; display: flex; align-items: center; gap: 4px; }
.pc-certs i { font-size: 9px; }

.pc-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.pc-feats span { font-size: 11px; color: var(--text-light); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.pc-feats i { color: var(--primary); font-size: 10px; flex-shrink: 0; }

.pc-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary); color: var(--white); font-size: 13px; font-weight: 700;
  padding: 12px; border-radius: var(--radius-sm); transition: var(--transition); margin-top: auto;
}
.pc-btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,71,161,0.3); }

/* ===== CERT STRIP ===== */
.cert-strip { background: linear-gradient(135deg, #0A1628, #0D2448, #0D47A1); border-radius: var(--radius); padding: 36px 40px; }
.cert-strip-title { text-align: center; color: rgba(255,255,255,0.65); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
.cert-strip-items { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.cert-strip-items div { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 20px 12px; background: rgba(255,255,255,0.07); border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.cert-strip-items div:hover { background: rgba(255,255,255,0.13); transform: translateY(-3px); }
.cert-strip-items i { font-size: 26px; color: #64B5F6; }
.cert-strip-items strong { font-size: 13px; font-weight: 800; color: var(--white); }
.cert-strip-items span { font-size: 11px; color: rgba(255,255,255,0.55); }

/* ===== FEATURES DARK ===== */
.features-dark { background: linear-gradient(160deg, #0A1628 0%, #0D2448 50%, #0A1F3E 100%); }
.features8-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.f8 { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 26px 20px; text-align: center; transition: var(--transition); }
.f8:hover { background: rgba(2,136,209,0.1); transform: translateY(-5px); border-color: rgba(2,136,209,0.3); }
.f8-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(13,71,161,0.15); border: 1px solid rgba(2,136,209,0.25); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #64B5F6; margin: 0 auto 14px; }
.f8 h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.f8 p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ===== WHY GRID ===== */
/* Why section background */
.why-section {
  background: linear-gradient(145deg, #F0F7FF 0%, #EBF3FC 20%, #E3F2FD 45%, #EDF5FF 70%, #F5FAFF 100%);
  position: relative; overflow: hidden;
}
.why-section::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(2,136,209,0.07) 0%, transparent 70%);
}
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; z-index: 1; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  border: 1.5px solid var(--border); position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0284C7, #0EA5E9, #06B6D4, #38BDF8);
  background-size: 200% auto;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.why-card:hover::before { transform: scaleX(1); animation: gradientShift 2s linear infinite; }
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(14,165,233,0.18), 0 4px 16px rgba(14,165,233,0.10);
  border-color: var(--primary);
}
.why-num {
  position: absolute; top: 16px; right: 20px;
  font-family: 'Outfit', sans-serif; font-size: 3.5rem; font-weight: 900;
  background: linear-gradient(135deg, #E0F7FF, #BAE6FD); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #0284C7, #0EA5E9);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(14,165,233,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover .why-icon {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 8px 28px rgba(14,165,233,0.5);
}
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ===== WORKER STRIP ===== */
.worker-strip {
  position: relative; height: 120px; overflow: hidden;
  display: flex; align-items: center;
}
.worker-strip-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 35%;
}
.worker-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.95) 0%, rgba(13,71,161,0.88) 50%, rgba(10,22,40,0.95) 100%);
}
.worker-strip-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; width: 100%;
}
.ws-item {
  display: flex; align-items: center; gap: 12px; flex: 1; min-width: 160px;
}
.ws-item i { font-size: 22px; color: #90CAF9; flex-shrink: 0; }
.ws-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); }
.ws-item span { font-size: 11px; color: rgba(255,255,255,0.55); }

/* ===== INDUSTRIES ===== */
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ind-card {
  border-radius: var(--radius); overflow: hidden; position: relative;
  height: 200px; transition: var(--transition); box-shadow: var(--shadow-md);
  cursor: default;
}
.ind-img-bg {
  position: absolute; inset: 0;
  background-image: var(--ind-img);
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.ind-card:hover .ind-img-bg { transform: scale(1.08); }
.ind-content {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(13,71,161,0.6) 50%, rgba(13,36,72,0.2) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 18px; text-align: center; transition: var(--transition);
}
.ind-card:hover .ind-content { background: linear-gradient(to top, rgba(10,22,40,0.97) 0%, rgba(13,71,161,0.8) 60%, rgba(13,36,72,0.4) 100%); }
.ind-icon {
  width: 46px; height: 46px; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #90CAF9; margin-bottom: 8px;
  transition: var(--transition);
}
.ind-card:hover .ind-icon { background: var(--primary); border-color: var(--primary); color: var(--white); }
.ind-card h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.ind-card p { font-size: 11px; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, #0A1628 0%, #0D2448 40%, #1565C0 80%, #0288D1 100%); padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cs1 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(13,71,161,0.06); top: -200px; right: -150px; }
.cs2 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(13,71,161,0.06); bottom: -120px; left: -80px; }
.cta-inner { position: relative; z-index: 1; }
.cta-logo-img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,0.25); box-shadow: 0 8px 32px rgba(0,0,0,0.3); margin-bottom: 22px; }
.cta-section h2 { font-family: 'Outfit', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-logo-block { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.contact-logo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-md); }
.contact-logo-block h3 { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.contact-logo-block p { font-size: 13px; color: var(--text-light); }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.ci { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { width: 40px; height: 40px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 15px; flex-shrink: 0; }
.ci strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.ci p { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.ci a { color: var(--primary); font-weight: 600; }
.contact-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.contact-badges span { background: var(--primary-light); color: var(--primary); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: 'Rubik', sans-serif; color: var(--text);
  background: var(--bg); transition: border-color 0.18s ease, box-shadow 0.18s ease; outline: none;
  min-height: 48px; /* touch target */
}
.form-group input:hover, .form-group select:hover, .form-group textarea:hover {
  border-color: var(--primary-mid);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 3px rgba(3,105,161,0.10);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 70px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.4fr; gap: 48px; padding-bottom: 56px; }
.footer-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo-img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.15); }
.footer-brand-name { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.footer-brand-tag { font-size: 12px; color: rgba(255,255,255,0.45); font-style: italic; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 18px; }
.footer-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-tags span { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.footer-col h4 { font-size: 13px; font-weight: 800; color: var(--white); margin-bottom: 18px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 13px; color: rgba(255,255,255,0.45); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; transition: var(--transition); }
.footer-col a:hover { color: #64B5F6; }
.footer-col i { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); }

/* ===== WHATSAPP ===== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); z-index: 999; transition: var(--transition); animation: waPulse 2.5s ease-in-out infinite; }
.whatsapp-float:hover { animation: none; transform: scale(1.15); }
@keyframes waPulse { 0%,100%{ box-shadow: 0 6px 24px rgba(37,211,102,0.45); } 50%{ box-shadow: 0 6px 40px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); } }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.product-card:nth-child(1).reveal, .why-card:nth-child(1).reveal, .f8:nth-child(1).reveal, .ind-card:nth-child(1).reveal { transition-delay: 0.05s; }
.product-card:nth-child(2).reveal, .why-card:nth-child(2).reveal, .f8:nth-child(2).reveal, .ind-card:nth-child(2).reveal { transition-delay: 0.12s; }
.product-card:nth-child(3).reveal, .why-card:nth-child(3).reveal, .f8:nth-child(3).reveal, .ind-card:nth-child(3).reveal { transition-delay: 0.19s; }
.product-card:nth-child(4).reveal, .why-card:nth-child(4).reveal, .f8:nth-child(4).reveal, .ind-card:nth-child(4).reveal { transition-delay: 0.26s; }
.product-card:nth-child(5).reveal, .why-card:nth-child(5).reveal, .f8:nth-child(5).reveal, .ind-card:nth-child(5).reveal { transition-delay: 0.33s; }
.product-card:nth-child(6).reveal, .why-card:nth-child(6).reveal, .f8:nth-child(6).reveal, .ind-card:nth-child(6).reveal { transition-delay: 0.40s; }
.section-header { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.section-header.visible { opacity: 1; transform: translateY(0); }

/* ===== CLIENTS SECTION ===== */
.clients-section {
  background: linear-gradient(150deg, #ffffff 0%, #EDF5FF 30%, #E3F2FD 55%, #EEF6FF 80%, #ffffff 100%);
  position: relative; overflow: hidden;
}
.clients-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(21,101,192,0.04) 0%, transparent 100%);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.client-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 16px 22px; border-radius: var(--radius);
  background: rgba(255,255,255,0.85); border: 1px solid rgba(21,101,192,0.12);
  text-align: center; transition: var(--transition);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(21,101,192,0.06);
}
.client-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-md); border-color: var(--primary-mid);
  background: var(--white);
}
/* ===== CLIENT LOGO SYSTEM ===== */
.cl-logo-wrap {
  width: 100%; display: flex; align-items: center; justify-content: center;
  height: 72px; margin-bottom: 4px;
}

/* Real image logos (ONGC, HAL, IOCL) */
.cl-img-wrap { padding: 4px; }
.cl-real-img {
  max-width: 110px; max-height: 64px; width: auto; height: auto;
  object-fit: contain; transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
}
.client-card:hover .cl-real-img { transform: scale(1.06); filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }

/* Icon-based logo for orgs without images */
.cl-icon-logo {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--c1,#003087) 0%, var(--c2,#1565C0) 100%);
  border-radius: 12px; padding: 10px 14px;
  width: 140px; height: 64px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cl-icon-logo::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cl-icon-logo::after {
  content: ''; position: absolute; bottom: -15px; left: -10px;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.client-card:hover .cl-icon-logo { transform: scale(1.05); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.cl-icon-circle {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.cl-icon-circle i { font-size: 15px; color: #fff; }

.cl-icon-text { display: flex; flex-direction: column; position: relative; z-index: 1; }
.cl-abbr {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 900;
  color: #fff; line-height: 1; letter-spacing: 0.5px;
}
.cl-name {
  font-size: 7.5px; font-weight: 700; color: rgba(255,255,255,0.72);
  text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; line-height: 1.2;
}

/* Fallback icon (kept for compatibility) */
.cc-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; }
.cc-icon i { font-size: 20px; color: var(--primary); }
.client-card strong { font-size: 13px; font-weight: 800; color: var(--dark); letter-spacing: 0.2px; }
.client-card span { font-size: 10.5px; color: var(--text-light); }
.clients-note {
  text-align: center; font-size: 13px; font-weight: 600; color: var(--primary);
  padding: 16px; background: var(--primary-light); border-radius: 50px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.clients-note i { color: var(--primary); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars i { color: #F59E0B; font-size: 14px; }
.testi-card p { color: var(--text-light); font-size: 14px; line-height: 1.8; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-avatar i { font-size: 18px; color: var(--primary); }
.testi-author strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.testi-author span { font-size: 12px; color: var(--text-light); }

/* ===== DOWNLOADS ===== */
.downloads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dl-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
  transition: var(--transition);
}
.dl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-mid); }
.dl-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dl-icon i { font-size: 20px; color: var(--primary); }
.dl-body h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.dl-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.dl-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--primary);
  background: var(--primary-light); padding: 7px 14px; border-radius: 50px;
  transition: var(--transition);
}
.dl-btn:hover { background: var(--primary); color: var(--white); }

/* ===== MAKE IN INDIA STRIP ===== */
.mii-strip { background: linear-gradient(90deg, #0D47A1, #1565C0, #0288D1); padding: 36px 0; }
.mii-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.mii-item { display: flex; align-items: center; gap: 14px; color: var(--white); }
.mii-item i { font-size: 26px; color: rgba(255,255,255,0.8); }
.mii-item strong { display: block; font-size: 15px; font-weight: 700; }
.mii-item span { font-size: 12px; color: rgba(255,255,255,0.7); }

/* ===== FOOTER SOCIAL ===== */
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); }

/* ===== RESPONSIVE ADDITIONS ===== */
/* ============================================================
   FULLY RESPONSIVE — Android · iOS · Tablet · Desktop
   Breakpoints: 1200 · 1024 · 900 · 768 · 600 · 480 · 375
   ============================================================ */

/* ── 1200px: Large tablets landscape / small laptops ── */
@media (max-width: 1200px) {
  .container { max-width: 100%; padding: 0 32px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .features8-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
  .hero-main { gap: 28px; }
}

/* ── 1024px: iPad landscape / tablet ── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .section { padding: 80px 0; }
  .section-header h2 { font-size: 2.8rem; }

  /* Navbar */
  .logo-name { font-size: 24px; }
  .logo-img { width: 60px; height: 60px; }
  .nav-links a { font-size: 14px; padding: 8px 14px; }
  .btn-nav { padding: 10px 20px !important; font-size: 14px !important; }

  /* Hero */
  .hero-main { grid-template-columns: 1.1fr 0.9fr; gap: 20px; }
  .hero-h1 { font-size: clamp(2.2rem, 3.5vw, 3.6rem); }
  .hero-sub { font-size: 15px; }
  .hss-item { padding: 0 28px; }
  .hss-item strong { font-size: 1.8rem !important; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Features */
  .features8-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  /* Why */
  .why-grid { grid-template-columns: repeat(3, 1fr); }

  /* Clients */
  .clients-grid { grid-template-columns: repeat(3, 1fr); }

  /* Downloads */
  .downloads-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* About */
  .about-grid { gap: 40px; }

  /* Cert */
  .cert-strip-items { grid-template-columns: repeat(4, 1fr); }
}

/* ── 900px: Tablet portrait / large phone landscape ── */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .section-header h2 { font-size: 2.4rem; letter-spacing: -0.5px; }
  .section-header p { font-size: 16px; }

  /* Navbar */
  .navbar { padding: 12px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(248,250,252,0.98); backdrop-filter: blur(20px); padding: 16px; box-shadow: var(--shadow-md); border-top: 1px solid var(--border); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 16px; border-radius: 10px; font-size: 15px; }
  .btn-nav { text-align: center !important; width: 100% !important; }
  .hamburger { display: flex; }

  /* Hero — stack columns */
  .hero-main { grid-template-columns: 1fr !important; position: relative; padding-top: 20px; }
  .hero-right { display: block !important; position: absolute !important; inset: 0 !important; z-index: 0 !important; pointer-events: none; }
  .hero-face-wrap { min-height: 100%; height: 100%; }
  .hero-face-img {
    object-position: center top; opacity: 0.2;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60%, black 100%), linear-gradient(to left, transparent 0%, black 15%, black 100%), linear-gradient(to bottom, transparent 0%, black 20%, black 100%), linear-gradient(to top, transparent 0%, black 20%, black 100%);
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(to right, transparent 0%, black 60%, black 100%), linear-gradient(to left, transparent 0%, black 15%, black 100%), linear-gradient(to bottom, transparent 0%, black 20%, black 100%), linear-gradient(to top, transparent 0%, black 20%, black 100%);
    mask-composite: intersect;
  }
  .hero-left { position: relative; z-index: 1; text-align: left; }
  .hero-stat-strip { position: relative; z-index: 1; }
  .hero-h1 { font-size: clamp(2.4rem, 6vw, 3.2rem); }
  .hero-eyebrow { flex-wrap: wrap; gap: 6px; }
  .hero { padding-top: 90px; padding-bottom: 100px; }

  /* Stats strip */
  .hero-stat-inner { flex-wrap: wrap; padding: 16px 0; gap: 0; }
  .hss-item { padding: 10px 20px; flex: 1 1 40%; text-align: center; }
  .hss-sep { display: none; }

  /* Grids */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features8-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .downloads-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .cert-strip-items { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }

  /* Worker strip */
  .worker-strip { height: auto; padding: 20px 0; }
  .worker-strip-content { gap: 14px; }
}

/* ── 768px: iPad mini portrait / Android tablets ── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-header h2 { font-size: 2.2rem; }
  .section-tag { font-size: 11px; padding: 6px 16px; }

  /* Navbar */
  .logo-img { width: 52px; height: 52px; }
  .logo-ring-wrap { width: 52px; height: 52px; }
  .logo-ring-wrap .logo-img { width: 52px; height: 52px; }
  .logo-name { font-size: 22px; letter-spacing: 1.5px; }
  .logo-sub { font-size: 11px; }
  .navbar { padding: 10px 0; }

  /* Hero */
  .hero { padding-top: 80px; padding-bottom: 80px; min-height: 100svh; }
  .hero-h1 { font-size: clamp(2rem, 7vw, 2.8rem); line-height: 1.15; }
  .hero-sub { font-size: 14.5px; line-height: 1.75; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
  .hero-clients { flex-wrap: wrap; gap: 8px; }

  /* Stats strip */
  .hss-item { padding: 8px 16px; }
  .hss-item strong { font-size: 1.6rem !important; }
  .hss-item span { font-size: 9px !important; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pc-img-wrap { height: 280px; }
  .pc-shoe { max-height: 260px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .why-card { padding: 28px 24px; }

  /* Clients */
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .client-card { padding: 22px 12px 16px; }
  .cl-real-img { max-width: 88px; max-height: 54px; }

  /* Downloads */
  .downloads-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  /* Features */
  .features8-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .f8 { padding: 22px 16px; }

  /* About */
  .about-text h2 { font-size: 2rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-section h2 { font-size: 2.2rem; }
  .cta-section p { font-size: 16px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Contact form */
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer { padding: 56px 0 0; }

  /* Cert strip */
  .cert-strip { padding: 28px 20px; }
  .cert-strip-items { grid-template-columns: repeat(2, 1fr); }

  /* Marquee */
  .marquee-track span { font-size: 12px; }

  /* Disable heavy effects on tablet */
  .orb { filter: blur(40px); opacity: 0.7; }
  .cursor-glow { display: none; }
}

/* ── 600px: Large phones ── */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 2rem; }

  /* Hero */
  .hero-h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-eyebrow { gap: 6px; }
  .hero-pill { font-size: 11px !important; padding: 6px 12px !important; }

  /* Clients 2 cols */
  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why 1 col */
  .why-grid { grid-template-columns: 1fr; }

  /* Features 2 cols */
  .features8-grid { grid-template-columns: repeat(2, 1fr); }

  /* About stats */
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  /* CTA */
  .cta-section { padding: 72px 0; }
}

/* ── 480px: iPhones / Android phones ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 1.8rem; letter-spacing: -0.3px; }
  .section-header p { font-size: 14.5px; }

  /* Navbar */
  .logo-name { font-size: 19px; letter-spacing: 1px; }
  .logo-sub { display: none; }
  .logo-img, .logo-ring-wrap { width: 46px; height: 46px; }
  .logo-ring-wrap .logo-img { width: 46px; height: 46px; }

  /* Hero */
  .hero { padding-top: 74px; }
  .hero-h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero-sub { font-size: 14px; }
  .hero-actions .btn { padding: 13px 20px; font-size: 14px; }

  /* Stats strip */
  .hero-stat-inner { padding: 12px 0; }
  .hss-item { padding: 6px 14px; flex: 1 1 45%; }
  .hss-item strong { font-size: 1.4rem !important; }
  .hss-item span { font-size: 8.5px !important; letter-spacing: 1px !important; }

  /* Products — single column */
  .products-grid { max-width: 100%; }
  .pc-img-wrap { height: 240px; }

  /* Features */
  .features8-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .f8 { padding: 18px 12px; }
  .f8-icon { width: 46px; height: 46px; font-size: 18px; }
  .f8 h4 { font-size: 12.5px; }
  .f8 p { font-size: 11px; }

  /* Clients */
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .client-card { padding: 18px 10px 14px; border-radius: 14px; }
  .cl-real-img { max-width: 76px; max-height: 46px; }
  .client-card strong { font-size: 11.5px; }
  .client-card span { font-size: 10px; }

  /* Cert */
  .cert-strip { padding: 24px 16px; border-radius: 16px; }
  .cert-strip-items { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cert-strip-items div { padding: 16px 10px; }
  .cert-strip-items i { font-size: 22px; }
  .cert-strip-items strong { font-size: 12px; }

  /* Why card */
  .why-card { padding: 26px 20px; }
  .why-num { font-size: 2.8rem; }

  /* About */
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .asc { padding: 14px 12px; }

  /* Contact */
  .contact-form { padding: 24px 18px; border-radius: 18px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 14px; padding: 12px 14px; }

  /* CTA */
  .cta-section h2 { font-size: 1.9rem; }
  .cta-section p { font-size: 15px; }

  /* Downloads */
  .dl-card { padding: 18px 16px; gap: 14px; }
  .dl-icon { width: 44px; height: 44px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 48px 0 0; }
  .footer-brand-name { font-size: 17px !important; }

  /* Disable orbs on mobile for performance */
  .orb { display: none; }
  .logo-ring { display: none; }
}

/* ── 375px: iPhone SE / small Android phones ── */
@media (max-width: 375px) {
  .container { padding: 0 14px; }
  .hero-h1 { font-size: 1.7rem; }
  .section-header h2 { font-size: 1.65rem; }
  .logo-name { font-size: 17px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cert-strip-items { grid-template-columns: 1fr 1fr; }
  .features8-grid { grid-template-columns: repeat(2, 1fr); }
  .hss-item { flex: 1 1 45%; }
  .hero-actions .btn { font-size: 13px; padding: 12px 18px; }
  .contact-form { padding: 20px 14px; }
}

/* ── iOS Safe Area (notch / Dynamic Island) ── */
@supports (padding: env(safe-area-inset-top)) {
  .navbar {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .hero {
    padding-top: max(108px, calc(env(safe-area-inset-top) + 80px));
  }
  .footer-bottom {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
  /* WhatsApp button */
  .whatsapp-float {
    bottom: max(20px, calc(env(safe-area-inset-bottom) + 12px));
    right: max(18px, env(safe-area-inset-right));
  }
}

/* ── Landscape phones ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 70px; padding-bottom: 60px; }
  .hero-h1 { font-size: 1.9rem; }
  .hero-sub { display: none; }
  .hero-stat-strip { position: relative; bottom: auto; }
  .hero-bottom-cut { display: none; }
  .section { padding: 48px 0; }
}

/* ── Touch: remove hover effects that need mouse ── */
@media (hover: none) and (pointer: coarse) {
  .product-card:hover { transform: none; }
  .why-card:hover { transform: none; }
  .client-card:hover { transform: none; }
  .dl-card:hover { transform: none; }
  .btn-primary:hover { transform: none; }
  /* Tap feedback instead */
  .product-card:active { transform: scale(0.98); }
  .btn:active { transform: scale(0.96) !important; }
  .client-card:active { opacity: 0.85; }
  /* Disable cursor glow and 3D tilt on touch */
  .cursor-glow { display: none !important; }
}

/* ── mii-inner responsive ── */
@media (max-width: 768px) {
  .mii-inner { justify-content: center; }
  .testi-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-card { height: 180px; }
  .safety-img-row { grid-template-columns: 1fr 1fr; }
  .si-card { height: 200px; }
  .mfg-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mfg-img-tall { grid-row: span 1; }
  .about-stat-cards { grid-template-columns: 1fr 1fr; }
}

/* ===== MANUFACTURING GALLERY ===== */
.mfg-gallery-section { background: var(--bg-alt); }
.mfg-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
  margin-top: 48px;
}
.mfg-img { overflow: hidden; border-radius: var(--radius); position: relative; }
.mfg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; display: block; }
.mfg-img:hover img { transform: scale(1.06); }
.mfg-img-tall { grid-row: span 2; }

/* ===== SAFETY IN ACTION ===== */
.safety-action-section { padding: 80px 0; background: var(--white); }
.safety-img-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.si-card {
  height: 260px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.si-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.si-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.75) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
  transition: background 0.35s ease;
}
.si-card:hover .si-overlay { background: linear-gradient(to top, rgba(21,101,192,0.7) 0%, transparent 60%); }
.si-overlay span {
  color: var(--white); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}




/* ===== DOWNLOADS SECTION GRADIENT ===== */
.downloads-section {
  background: linear-gradient(140deg, #EDF5FF 0%, #F5FAFF 35%, #E3F2FD 60%, #EEF6FF 85%, #F5FAFF 100%);
  position: relative; overflow: hidden;
}
.downloads-section::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(21,101,192,0.06) 0%, transparent 70%);
}
.dl-card {
  background: rgba(255,255,255,0.9) !important;
  border-color: rgba(21,101,192,0.12) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(21,101,192,0.07) !important;
}

/* ===== SAFETY IN ACTION GRADIENT ===== */
.safety-action-section {
  background: linear-gradient(135deg, #F5FAFF 0%, #E8F4FD 30%, #EDF5FF 60%, #F5FAFF 100%) !important;
}

/* ===== CONTACT SECTION GRADIENT ===== */
.contact-section {
  background: linear-gradient(150deg, #F0F7FF 0%, #EDF5FF 30%, #E3F2FD 55%, #EEF6FF 80%, #F5FAFF 100%);
  position: relative; overflow: hidden;
}
.contact-section::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 450px; height: 450px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(21,101,192,0.06) 0%, transparent 70%);
}

/* ===== ANIMATED PROTECTION BAR ===== */
.ppb-fill {
  height: 100%;
  background: linear-gradient(90deg, #0284C7 0%, #0EA5E9 50%, #38BDF8 100%);
  border-radius: 10px;
  width: 0;  /* start at 0; JS sets --bar-w and adds .animated */
  transition: width 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ppb-fill.animated { width: var(--bar-w); }

/* ===== FLOAT ANIMATIONS ===== */
@keyframes floatUp {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes floatUpSlow {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes iconPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmerBtn {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Hero pills float in */
.hero-eyebrow { animation: fadeInUp 0.8s ease both; }
.hero-h1 { animation: fadeInLeft 0.9s 0.15s ease both; }
.hero-sub { animation: fadeInLeft 0.9s 0.28s ease both; }
.hero-actions { animation: fadeInUp 0.9s 0.40s ease both; }
.hero-clients { animation: fadeInUp 0.9s 0.52s ease both; }

/* Hero pill hover float */
.hero-pill { transition: transform 0.3s ease, background 0.3s ease; cursor: default; }
.hero-pill:hover { transform: translateY(-3px); background: rgba(255,255,255,0.16); }

/* Stat strip numbers */
.hss-item strong { animation: floatUpSlow 4s ease-in-out infinite; }
.hss-item:nth-child(3) strong { animation-delay: 0.5s; }
.hss-item:nth-child(5) strong { animation-delay: 1s; }
.hss-item:nth-child(7) strong { animation-delay: 1.5s; }
.hss-item:nth-child(9) strong { animation-delay: 2s; }

/* Product card shimmer on btn */
.pc-btn {
  background-size: 200% 100% !important;
  transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* Why icon pulse */
.why-icon { animation: iconPulse 3s ease-in-out infinite; }
.why-card:nth-child(2) .why-icon { animation-delay: 0.5s; }
.why-card:nth-child(3) .why-icon { animation-delay: 1s; }
.why-card:nth-child(4) .why-icon { animation-delay: 1.5s; }
.why-card:nth-child(5) .why-icon { animation-delay: 2s; }
.why-card:nth-child(6) .why-icon { animation-delay: 2.5s; }

/* Client cards staggered float on scroll */
.client-card:nth-child(1) { transition-delay: 0.05s; }
.client-card:nth-child(2) { transition-delay: 0.10s; }
.client-card:nth-child(3) { transition-delay: 0.15s; }
.client-card:nth-child(4) { transition-delay: 0.20s; }
.client-card:nth-child(5) { transition-delay: 0.25s; }
.client-card:nth-child(6) { transition-delay: 0.30s; }
.client-card:nth-child(7) { transition-delay: 0.35s; }
.client-card:nth-child(8) { transition-delay: 0.40s; }
.client-card:nth-child(9) { transition-delay: 0.45s; }
.client-card:nth-child(10) { transition-delay: 0.50s; }

/* Primary button shimmer */
.btn-primary {
  background: linear-gradient(90deg, var(--primary) 0%, #1976D2 40%, var(--primary) 80%, #0D47A1 100%);
  background-size: 300% 100%;
  animation: shimmerBtn 4s linear infinite;
}
.btn-primary:hover { animation-play-state: paused; }

/* About stat cards float */
.asc { animation: floatUp 5s ease-in-out infinite; }
.asc:nth-child(2) { animation-delay: 1s; }
.asc:nth-child(3) { animation-delay: 2s; }
.asc:nth-child(4) { animation-delay: 3s; }

/* Hero two-column responsive */
@media (max-width: 900px) {
  .hero-main {
    grid-template-columns: 1fr !important;
    position: relative;
  }

  /* Show image as a faded background behind the text on mobile */
  .hero-right {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: none;
  }

  .hero-face-wrap {
    min-height: 100%;
    height: 100%;
  }

  /* Stronger left-side fade so text stays readable over the image */
  .hero-face-img {
    object-position: center top;
    opacity: 0.22;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, black 60%, black 100%),
      linear-gradient(to left,  transparent 0%, black 15%, black 100%),
      linear-gradient(to bottom,transparent 0%, black 20%, black 100%),
      linear-gradient(to top,   transparent 0%, black 20%, black 100%);
    -webkit-mask-composite: destination-in;
    mask-image:
      linear-gradient(to right, transparent 0%, black 60%, black 100%),
      linear-gradient(to left,  transparent 0%, black 15%, black 100%),
      linear-gradient(to bottom,transparent 0%, black 20%, black 100%),
      linear-gradient(to top,   transparent 0%, black 20%, black 100%);
    mask-composite: intersect;
  }

  /* Keep text content above the background image */
  .hero-left { position: relative; z-index: 1; }
  .hero-stat-strip { position: relative; z-index: 1; }
}

/* ===== GEM OEM & TAGLINE HIGHLIGHTS ===== */
.hero-pill-gold {
  background: rgba(251,191,36,0.15) !important;
  border-color: rgba(251,191,36,0.5) !important;
  color: #FDE68A !important;
  font-weight: 700 !important;
}
.hero-pill-gold i { color: #FBBF24 !important; }

.acb-gold {
  background: linear-gradient(90deg, #B45309, #D97706) !important;
  color: #FEF3C7 !important;
  border-color: #D97706 !important;
  font-weight: 700 !important;
}

.cb-gold {
  background: linear-gradient(90deg, #92400E, #B45309) !important;
  color: #FEF3C7 !important;
  border: 1px solid #D97706 !important;
  font-weight: 700 !important;
}

.ft-gold {
  background: rgba(251,191,36,0.2) !important;
  color: #FDE68A !important;
  border: 1px solid rgba(251,191,36,0.4) !important;
  font-weight: 700 !important;
}

/* ===== UI/UX PRO MAX — GLOBAL POLISH ===== */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Smooth image rendering */
img { image-rendering: -webkit-optimize-contrast; }

/* Better text rendering */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

/* Selection colour */
::selection { background: var(--primary-light); color: var(--primary-dark); }

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-mid); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================================================
   CRAZY UNIQUE FEATURES — LEVEL UP
   ============================================================ */

/* 1. SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, #0284C7, #0EA5E9, #38BDF8, #06B6D4);
  background-size: 200% auto;
  animation: gradientShift 2s linear infinite;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(14,165,233,0.7), 0 0 20px rgba(14,165,233,0.4);
  transition: width 0.1s linear;
}

/* 2. CURSOR GLOW */
.cursor-glow {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.3s ease;
  opacity: 0;
}

/* 3. FLOATING ORBS in Hero */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.14) 0%, transparent 70%);
  bottom: 50px; right: 100px;
  animation: orbFloat2 15s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(56,189,248,0.10) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: orbFloat3 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(80px,60px) scale(1.1); }
  66%  { transform: translate(-40px,100px) scale(0.9); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%  { transform: translate(-70px,-50px) scale(1.15); }
  70%  { transform: translate(50px,-80px) scale(0.95); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0,0); }
  50%  { transform: translate(-60px,40px); }
}

/* 4. LOGO SPINNING RING */
.logo-ring-wrap {
  position: relative; width: 72px; height: 72px; flex-shrink: 0;
}
.logo-ring {
  position: absolute; inset: -3px; border-radius: 50%;
  background: conic-gradient(from 0deg, #0EA5E9, #38BDF8, #06B6D4, #0284C7, transparent 60%, transparent 80%, #0EA5E9);
  animation: spinRing 3s linear infinite;
  z-index: 0;
}
.logo-ring-wrap .logo-img {
  position: relative; z-index: 1;
  width: 72px; height: 72px;
}
@keyframes spinRing { to { transform: rotate(360deg); } }

/* 5. PRODUCT CARD — ANIMATED GLOW BORDER ON HOVER */
.product-card {
  --card-glow: 0deg;
}
.product-card::before {
  content: ''; position: absolute; inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(from var(--card-glow), #0EA5E9, #38BDF8, #06B6D4, #0284C7, transparent 50%);
  opacity: 0; z-index: -1;
  transition: opacity 0.4s ease;
}
.product-card:hover::before { opacity: 1; animation: rotateBorder 3s linear infinite; }
@keyframes rotateBorder {
  to { --card-glow: 360deg; }
}

/* 6. SECTION HEADING — SHIMMER SWEEP on hover */
.section-header:hover h2 {
  background: linear-gradient(90deg, #0F172A 0%, #0EA5E9 30%, #38BDF8 50%, #0EA5E9 70%, #0F172A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: textShimmer 1.8s linear infinite;
}
@keyframes textShimmer {
  to { background-position: -200% center; }
}

/* 7. WHY-CARD NUMBER — Large glowing background digit */
.why-card:hover .why-num {
  background: linear-gradient(135deg, #0EA5E9, #38BDF8);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(14,165,233,0.6));
}

/* 8. STAT STRIP ITEMS — Pulse glow on hover */
.hss-item:hover strong {
  filter: drop-shadow(0 0 14px rgba(56,189,248,0.9));
  transform: scale(1.08);
  display: inline-block;
}
.hss-item strong { transition: transform 0.2s ease, filter 0.2s ease; display: inline-block; }

/* 9. HERO HEADLINE GLOW */
.hero-h1 {
  text-shadow: 0 0 60px rgba(14,165,233,0.15);
}

/* 10. NAV LINK — Active indicator dot */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--primary);
  transition: transform 0.2s ease;
}
.nav-links a:hover::after { transform: translateX(-50%) scaleX(1); }

/* 11. MARQUEE ITEMS — glow on each item */
.marquee-track span {
  transition: text-shadow 0.3s ease;
}
.marquee-track span:hover {
  text-shadow: 0 0 12px rgba(56,189,248,0.9);
}

/* 12. PROTECTION BAR — glowing tip */
.ppb-fill::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(56,189,248,1), 0 0 12px rgba(14,165,233,0.8);
}
.ppb-fill { position: relative; }

/* 13. SECTION DIVIDER WAVE */
.section-wave {
  display: block; width: 100%; height: 60px; margin-bottom: -2px;
  fill: var(--bg);
}
.section-wave.dark { fill: var(--navy); }

/* 14. CLIENTS SECTION — card shine sweep */
.cl-card {
  overflow: hidden; position: relative;
}
.cl-card::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.cl-card:hover::before { left: 150%; }

/* 15. FOOTER — Top glow line */
.footer::before {
  content: ''; display: block; height: 2px;
  background: linear-gradient(90deg, transparent, #0EA5E9, #38BDF8, #0EA5E9, transparent);
  animation: gradientShift 3s linear infinite;
  background-size: 200% auto;
}

/* ============================================================
   SAFMAR LETTER ANIMATIONS
   ============================================================ */

/* Letter containers */
.sf-split { display: inline-flex; align-items: baseline; }
.sf-letter {
  display: inline-block;
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}
.sf-space { display: inline-block; width: 0.3em; }

/* ── Idle glow wave that runs continuously on hero accent ── */
.sf-wave-auto .sf-letter {
  animation: sfGlow 5s ease-in-out infinite;
  /* 3s initial pause so full text is visible, then stagger each letter by 0.55s */
  animation-delay: calc(3s + var(--i) * 0.55s);
}

/* ── Hover wave on logo ── */
.sf-wave-hover .sf-letter {
  animation: sfBounce 0.6s ease forwards;
  animation-delay: calc(var(--i) * 0.06s);
}

/* ── Individual letter hover (all SF-split elements) ── */
.sf-split:hover .sf-letter {
  animation: sfBounce 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards;
  animation-delay: calc(var(--i) * 0.055s);
}

/* Glow wave — travels across letters */
@keyframes sfGlow {
  0%, 100% {
    text-shadow: none;
    filter: none;
    transform: translateY(0);
  }
  40% {
    text-shadow: 0 0 12px rgba(56,189,248,1), 0 0 24px rgba(14,165,233,0.7);
    filter: brightness(1.5);
    transform: translateY(-3px);
  }
}

/* Bounce pop */
@keyframes sfBounce {
  0%   { transform: translateY(0) scale(1); }
  30%  { transform: translateY(-8px) scale(1.15); color: #38BDF8;
         text-shadow: 0 0 16px rgba(56,189,248,0.9), 0 0 32px rgba(14,165,233,0.5); }
  60%  { transform: translateY(-3px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

/* Blinking cursor after SAFMAR in hero */
.sf-cursor {
  display: inline-block;
  color: #38BDF8;
  font-weight: 300;
  margin-left: 2px;
  animation: blinkCursor 0.7s step-end infinite;
  font-size: 0.85em;
}
@keyframes blinkCursor {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ============================================================
   EXTRA UI/UX ANIMATIONS
   ============================================================ */

/* A) Section heading slide-in from bottom */
.heading-anim {
  opacity: 0;
  transform: translateY(32px) skewY(1.5deg);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.heading-anim.heading-revealed {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
  /* Keep the gradient text */
  background: linear-gradient(135deg, #0F172A 0%, #0369A1 60%, #0EA5E9 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-header.light .heading-anim.heading-revealed {
  background: linear-gradient(135deg, #FFFFFF 0%, #7DD3FC 60%, #38BDF8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* B) About paragraph slide-in */
.para-anim {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--pi) * 0.12s);
}
.para-anim.para-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* C) Why-card icon pop-in */
.icon-pre {
  opacity: 0;
  transform: scale(0.3) rotate(-20deg);
  transition: opacity 0.5s cubic-bezier(0.34,1.56,0.64,1),
              transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  transition-delay: calc(var(--wi) * 0.08s);
}
.icon-pre.icon-popped {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* D) Active nav link highlight */
.nav-links a.nav-active {
  color: var(--primary) !important;
  background: var(--primary-light);
}
.nav-links a.nav-active::after {
  transform: translateX(-50%) scaleX(1) !important;
}

/* E) Product card h3 shimmer on reveal */
.title-shimmer {
  background: linear-gradient(90deg, #0F172A 0%, #0EA5E9 40%, #38BDF8 50%, #0EA5E9 60%, #0F172A 100%);
  background-size: 250% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: textShimmer 1.5s ease forwards;
}

/* F) Floating label on form inputs */
.form-group { position: relative; }
.form-group input:not([type="hidden"]):focus + label,
.form-group input:not([type="hidden"]):not(:placeholder-shown) + label {
  transform: translateY(-22px) scale(0.8);
  color: var(--primary);
}

/* G) CTA section pulse ring behind button */
.btn-primary {
  position: relative;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(14,165,233,0.4), rgba(56,189,248,0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  animation: none;
}
.btn-primary:hover::before {
  opacity: 1;
  animation: pulseRing 1.2s ease-in-out infinite;
}
@keyframes pulseRing {
  0%,100% { transform: scale(1);   opacity: 0.6; }
  50%      { transform: scale(1.08); opacity: 0.2; }
}

/* H) Hero pills — glass pill effect */
.hero-pill {
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-pill:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 16px rgba(14,165,233,0.3);
}

/* I) Stat strip — glowing separator pulse */
.hss-sep {
  animation: sepPulse 2.5s ease-in-out infinite;
}
.hss-sep:nth-child(2) { animation-delay: 0.4s; }
.hss-sep:nth-child(4) { animation-delay: 0.8s; }
.hss-sep:nth-child(6) { animation-delay: 1.2s; }
@keyframes sepPulse {
  0%,100% { opacity: 0.25; height: 44px; }
  50%      { opacity: 1;    height: 52px; background: rgba(56,189,248,0.5); }
}

/* J) Why card h3 colour on hover */
.why-card:hover h3 {
  background: linear-gradient(90deg, #0284C7, #38BDF8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: all 0.3s ease;
}

/* ============================================================
   COMPREHENSIVE UI/UX UPGRADE — EVERY SECTION
   ============================================================ */

/* ── GLOBAL: Better section spacing & breathing ── */
.section { padding: 104px 0; }
.section-header { margin-bottom: 72px; }
.section-header p { font-size: 18px; line-height: 1.8; color: var(--text-light); }

/* ── GLOBAL: Ripple on all buttons ── */
.btn { overflow: hidden; }
.btn .ripple {
  position: absolute; border-radius: 50%;
  transform: scale(0); animation: rippleAnim 0.55s ease-out;
  background: rgba(255,255,255,0.3); pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ── ABOUT SECTION ── */
#about { position: relative; overflow: hidden; }
#about::before {
  content: ''; position: absolute; top: -80px; right: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid { gap: 64px; }
.about-text h2 {
  font-size: 2.6rem; letter-spacing: -0.5px;
  background: linear-gradient(135deg, #0F172A 0%, #0369A1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-text p { font-size: 16px; line-height: 1.85; color: var(--text); margin-bottom: 14px; }
/* About stat chips */
.asc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.asc:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 32px rgba(14,165,233,0.14);
  border-color: var(--primary);
}
.asc strong {
  background: linear-gradient(135deg, #0284C7, #38BDF8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── PRODUCTS: Better Enquire button ── */
.pc-btn {
  background: linear-gradient(135deg, #0284C7, #0EA5E9);
  border-radius: 12px; font-size: 14px; font-weight: 700;
  padding: 13px 16px; letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(14,165,233,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,165,233,0.45);
  background: linear-gradient(135deg, #0369A1, #0284C7);
}
/* Product spec chips */
.pc-chip {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid rgba(14,165,233,0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}
.pc-chip:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
/* Product ideal-for tag */
.pc-ideal-for { font-size: 11px; font-weight: 600; color: var(--text-light); }
/* Product card body padding */
.pc-body { padding: 18px 20px 20px; gap: 12px; }

/* ── FEATURES DARK (8 features grid) — improve cards ── */
.f8 {
  border-radius: 18px; padding: 28px 22px; text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  position: relative; overflow: hidden;
}
.f8::after {
  content: ''; position: absolute; inset: 0; border-radius: 18px;
  background: linear-gradient(135deg, rgba(14,165,233,0.0), rgba(56,189,248,0.0));
  transition: opacity 0.3s ease; opacity: 0;
}
.f8:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(14,165,233,0.18); border-color: rgba(14,165,233,0.4); }
.f8:hover .f8-icon {
  background: linear-gradient(135deg, #0284C7, #0EA5E9);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(14,165,233,0.4);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}
.f8-icon { transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease; }
.f8 h4 { font-size: 14px; font-family: 'Outfit', sans-serif; font-weight: 700; }

/* ── CERT STRIP — glowing badges ── */
.cert-strip {
  border-radius: 24px;
  background: linear-gradient(135deg, #060E1D 0%, #0A1F3E 50%, #082F49 100%);
  border: 1px solid rgba(14,165,233,0.15);
  box-shadow: 0 0 60px rgba(14,165,233,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}
.cert-strip-items div {
  border-radius: 14px; padding: 22px 14px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.cert-strip-items div:hover {
  background: rgba(14,165,233,0.12);
  border-color: rgba(14,165,233,0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(14,165,233,0.18);
}
.cert-strip-items i { color: #38BDF8; font-size: 28px; filter: drop-shadow(0 0 8px rgba(56,189,248,0.5)); }
.cert-strip-items strong { font-family: 'Outfit', sans-serif; font-size: 14px; letter-spacing: 0.2px; }

/* ── CLIENTS SECTION — premium logo cards ── */
.clients-grid { gap: 20px; }
.client-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 16px 20px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative; overflow: hidden;
  cursor: default;
}
.client-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #0284C7, #0EA5E9, #38BDF8);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.client-card:hover::after { transform: scaleX(1); }
.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(14,165,233,0.16), 0 4px 16px rgba(14,165,233,0.08);
  border-color: var(--primary);
}
.client-card strong {
  font-size: 13px; font-weight: 800; color: var(--dark);
  font-family: 'Outfit', sans-serif;
}
.client-card span { font-size: 11px; color: var(--text-light); }
.cl-real-img {
  max-width: 110px; max-height: 68px; object-fit: contain;
  transition: transform 0.28s ease, filter 0.28s ease;
  filter: grayscale(20%) contrast(1.05);
}
.client-card:hover .cl-real-img {
  transform: scale(1.1);
  filter: grayscale(0%) contrast(1.1) drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

/* ── WHY SECTION — improve cards ── */
.why-card {
  border-radius: 22px;
  padding: 34px 28px 28px;
}
.why-card h3 { font-size: 17px; font-family: 'Outfit', sans-serif; font-weight: 700; }
.why-card p { font-size: 14px; line-height: 1.7; }

/* ── DOWNLOADS — better cards ── */
.dl-card {
  border-radius: 18px;
  border: 1.5px solid var(--border);
  padding: 24px 22px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  gap: 20px;
}
.dl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(14,165,233,0.14);
  border-color: var(--primary);
}
.dl-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(56,189,248,0.08));
  border: 1px solid rgba(14,165,233,0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}
.dl-card:hover .dl-icon {
  transform: scale(1.12) rotate(-5deg);
  background: linear-gradient(135deg, #0284C7, #0EA5E9);
  border-color: transparent;
}
.dl-card:hover .dl-icon i { color: #fff !important; }
.dl-icon i { transition: color 0.25s ease; }
.dl-title { font-size: 15px; font-weight: 700; color: var(--dark); font-family: 'Outfit', sans-serif; margin-bottom: 4px; }
.dl-desc { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ── CONTACT SECTION — form improvements ── */
.contact-form {
  border-radius: 24px;
  border: 1.5px solid var(--border);
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(5,13,26,0.08);
  background: var(--white);
}
.form-group label {
  font-size: 13px; font-weight: 700; color: var(--text);
  letter-spacing: 0.3px; margin-bottom: 6px;
  display: flex; align-items: center; gap: 4px;
}
.form-group input, .form-group select, .form-group textarea {
  border-radius: 12px;
  font-size: 15px; padding: 14px 18px;
  border: 1.5px solid #E2E8F0;
  background: #F8FAFC;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.1);
}
.form-group input:hover:not(:focus), .form-group select:hover:not(:focus), .form-group textarea:hover:not(:focus) {
  border-color: var(--primary-mid);
}

/* Submit button — full-width gradient */
.contact-form .btn-primary.full-w {
  padding: 16px; font-size: 16px; font-weight: 800; letter-spacing: 0.5px;
  border-radius: 14px; margin-top: 8px;
  background: linear-gradient(135deg, #0284C7 0%, #0EA5E9 50%, #06B6D4 100%);
  box-shadow: 0 6px 24px rgba(14,165,233,0.4);
}
.contact-form .btn-primary.full-w:hover {
  box-shadow: 0 10px 36px rgba(14,165,233,0.55);
  transform: translateY(-2px);
}

/* Contact info left panel */
.contact-left {
  display: flex; flex-direction: column; gap: 20px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; border-radius: 16px;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.contact-item:hover {
  transform: translateX(6px);
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(14,165,233,0.12);
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #0284C7, #0EA5E9);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  box-shadow: 0 4px 12px rgba(14,165,233,0.3);
}

/* ── CTA SECTION — more dramatic ── */
.cta-section {
  background: linear-gradient(135deg, #020915 0%, #060E1D 30%, #0A1F3E 60%, #082F49 100%) !important;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
  pointer-events: none; animation: orbFloat1 10s ease-in-out infinite;
}
.cta-section h2 {
  font-size: 3rem; font-weight: 900; letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 0%, #7DD3FC 60%, #38BDF8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }

/* ── FOOTER — refined ── */
.footer { background: linear-gradient(180deg, #050D1A 0%, #030810 100%); }
.footer-inner { gap: 56px; }
.footer-logo-row { margin-bottom: 20px; }
.footer-brand-name {
  font-size: 20px !important; letter-spacing: 2px;
  background: linear-gradient(135deg, #fff, #7DD3FC);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 20px; }
.footer-heading { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(14,165,233,0.2); }
.footer-links a {
  color: rgba(255,255,255,0.5); font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block; padding: 3px 0;
}
.footer-links a:hover { color: #38BDF8; padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: 24px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ── MARQUEE — bigger, bolder ── */
.marquee-bar { padding: 16px 0; }
.marquee-track span { font-size: 13.5px; font-weight: 700; font-family: 'Outfit', sans-serif; letter-spacing: 0.3px; }

/* ── HERO PILLS — glass effect ── */
.hero-pill {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(16px);
  font-size: 12.5px !important; font-weight: 700 !important;
  padding: 8px 16px !important; border-radius: 50px !important;
  color: rgba(255,255,255,0.9) !important;
}

/* ── STAT STRIP — bigger numbers ── */
.hero-stat-strip {
  background: rgba(3,9,21,0.82);
  backdrop-filter: blur(24px) saturate(1.5);
  border-top: 1px solid rgba(14,165,233,0.12);
}
.hss-item { padding: 0 48px; }
.hss-item strong { font-size: 2.4rem !important; }
.hss-item span { font-size: 11px !important; letter-spacing: 1.5px !important; }

/* ── NAV: Active state bold ── */
.nav-links a.nav-active {
  color: var(--primary) !important; background: var(--primary-light);
  font-weight: 700 !important;
}

/* ── Smooth page-level scroll snap feel (optional, for hero only) ── */
.hero { scroll-snap-align: start; }

/* ── INDUSTRY SECTION if exists ── */
.ind-card { border-radius: 18px; overflow: hidden; transition: transform 0.28s ease, box-shadow 0.28s ease; }
.ind-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(5,13,26,0.2); }

/* ── SECTION GRADIENT BORDER TOP ── */
#about::after,
#products::after {
  content: none;
}
.products-section, .why-section, .clients-section, .downloads-section {
  position: relative;
}
.products-section::before, .clients-section::before, .downloads-section::before {
  content: ''; display: block;
  height: 2px; width: 80px; border-radius: 99px; margin: 0 auto;
  background: linear-gradient(90deg, #0284C7, #38BDF8);
  margin-bottom: -2px; opacity: 0.6;
}

/* ── SPEC CHIP hover ── */
.ppb-label-left { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 10.5px; }
.ppb-val { font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--primary); }
.pc-protect-bar { margin: 2px 0; }

/* ── PAGE LOAD FADE-IN ── */
body { animation: bodyFadeIn 0.6s ease forwards; }
@keyframes bodyFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   NEW UI/UX ADDITIONS v7
   Preloader · Back-to-top · Sticky CTA · Badges · Typewriter
   WhatsApp tooltip · Toast · Parallax · Micro-interactions
   ============================================================ */

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.pre-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  position: relative;
}
.pre-ring {
  position: absolute; width: 110px; height: 110px; border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #0EA5E9; border-right-color: #38BDF8;
  animation: preRingSpin 0.9s linear infinite;
  top: -18px; left: 50%; transform: translateX(-50%);
}
@keyframes preRingSpin { to { transform: translateX(-50%) rotate(360deg); } }
.pre-logo {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; border: 3px solid rgba(14,165,233,0.3);
  box-shadow: 0 0 30px rgba(14,165,233,0.4);
}
.pre-text {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 18px; letter-spacing: 5px; color: var(--white);
  background: linear-gradient(90deg, #7DD3FC, #fff, #38BDF8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pre-bar-wrap {
  width: 160px; height: 3px; background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
}
.pre-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #0284C7, #0EA5E9, #38BDF8);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(56,189,248,0.7);
  transition: width 0.1s linear;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 28px; right: 24px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #0284C7, #0EA5E9);
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 18px rgba(14,165,233,0.45);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.back-to-top.btt-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(14,165,233,0.6);
}

/* On mobile, nudge above sticky bar */
@media (max-width: 768px) {
  .back-to-top { bottom: 80px; right: 14px; width: 40px; height: 40px; font-size: 14px; }
}

/* ── MOBILE STICKY CTA BAR ── */
.sticky-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(5,13,26,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(14,165,233,0.2);
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.sticky-cta-bar.scta-visible {
  display: flex;
  transform: translateY(0);
}
.scta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 8px; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 12.5px; color: #fff; letter-spacing: 0.3px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.scta-btn:active { transform: scale(0.96); }
.scta-quote { background: linear-gradient(135deg, #0284C7, #0EA5E9); box-shadow: 0 2px 10px rgba(14,165,233,0.35); }
.scta-wa    { background: linear-gradient(135deg, #128C7E, #25D366); box-shadow: 0 2px 10px rgba(37,211,102,0.35); }
.scta-call  { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2); }
@media (max-width: 768px) {
  .sticky-cta-bar { display: flex; }
  /* push footer bottom padding so content isn't hidden behind bar */
  .footer-bottom { padding-bottom: calc(24px + 72px); }
}

/* ── TOAST NOTIFICATION ── */
.toast-container {
  position: fixed; top: 20px; right: 20px; z-index: 99998;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(5,13,26,0.18), 0 2px 8px rgba(5,13,26,0.08);
  font-size: 14px; font-weight: 500; color: var(--text);
  min-width: 260px; max-width: 340px;
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}
.toast.toast-show  { opacity: 1; transform: translateX(0); }
.toast.toast-hide  { opacity: 0; transform: translateX(30px); }
.toast.toast-success { border-left-color: #10B981; }
.toast.toast-error   { border-left-color: #EF4444; }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast-success .toast-icon { color: #10B981; }
.toast-error   .toast-icon { color: #EF4444; }
.toast-info    .toast-icon { color: var(--primary); }

/* ── PRODUCT CARD BADGES ── */
.product-card { position: relative; overflow: visible; }
.pc-badge {
  position: absolute; top: -12px; left: 20px; z-index: 10;
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 10.5px; letter-spacing: 0.5px;
  padding: 5px 12px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.pc-badge-popular {
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  color: #fff;
}
.pc-badge-govt {
  background: linear-gradient(135deg, #059669, #10B981);
  color: #fff;
}
.pc-badge-new {
  background: linear-gradient(135deg, #7C3AED, #8B5CF6);
  color: #fff;
}

/* ── TYPEWRITER ── */
.typewriter-wrap { display: inline; }
.typewriter { color: var(--primary); font-weight: 600; }
.tw-cursor {
  display: inline-block; color: var(--primary);
  animation: twBlink 0.85s step-end infinite;
  font-weight: 300;
}
@keyframes twBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ── WHATSAPP FLOAT — improved ── */
.whatsapp-float {
  position: fixed; bottom: 24px; left: 22px; z-index: 850;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-tooltip {
  position: absolute; left: 66px; top: 50%; transform: translateX(-10px) translateY(-50%);
  background: var(--dark); color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 12px;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.wa-tooltip::before {
  content: ''; position: absolute; right: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-right-color: var(--dark);
}
.wa-ping {
  position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPing 2s ease-in-out infinite;
}
@keyframes waPing {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
/* Push wa float up above mobile sticky bar */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 82px; left: 14px; width: 48px; height: 48px; font-size: 22px; }
  .wa-tooltip { display: none; }
}

/* ── INDUSTRY CARDS — parallax hover ── */
.ind-card { overflow: hidden; }
.ind-img-bg {
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.ind-card:hover .ind-img-bg {
  transform: scale(1.12);
}

/* ── CLIENT LOGO SHINE SWEEP ── */
.client-card {
  overflow: hidden;
}
.client-card::before {
  content: '';
  position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.client-card:hover::before { left: 120%; }

/* ── ABOUT SECTION — quote highlight ── */
.about-quote {
  position: relative; overflow: hidden;
}
.about-quote::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(14,165,233,0.06), transparent);
  animation: quoteShine 4s ease infinite;
}
@keyframes quoteShine {
  0%   { left: -100%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}

/* ── SECTION DIVIDER WAVES ── */
.wave-divider {
  display: block; width: 100%; overflow: hidden; line-height: 0;
  margin-bottom: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* ── HERO TYPEWRITER SECTION ── */
.hero-sub .typewriter-wrap {
  display: inline;
}

/* ── STATS STRIP COUNT-UP GLOW ── */
.hss-item strong {
  transition: text-shadow 0.3s ease;
}
.hss-item:hover strong {
  text-shadow: 0 0 20px rgba(56,189,248,0.8), 0 0 40px rgba(14,165,233,0.4);
}

/* ── F8 icon neon pulse on hover ── */
.f8:hover .f8-icon::after {
  content: '';
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(14,165,233,0.4);
  animation: iconPulse 1s ease-in-out infinite;
}
@keyframes iconPulse {
  0%,100% { transform: scale(1);   opacity: 0.6; }
  50%      { transform: scale(1.3); opacity: 0; }
}
.f8-icon { position: relative; }

/* ── WHY CARD — number gradient on hover ── */
.why-card:hover .why-num {
  background: linear-gradient(135deg, #0284C7, #38BDF8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: all 0.3s ease;
}

/* ── CONTACT FORM — input focus glow ── */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15), 0 2px 8px rgba(14,165,233,0.1);
  border-color: var(--primary);
  outline: none;
}

/* ── CTA SECTION — animated background mesh ── */
.cta-section { overflow: hidden; position: relative; }
.cta-bg-shapes .cs1,
.cta-bg-shapes .cs2 {
  animation: ctaFloat 8s ease-in-out infinite;
}
.cta-bg-shapes .cs2 { animation-delay: -4s; animation-direction: reverse; }
@keyframes ctaFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px, -20px) scale(1.05); }
}

/* ── FOOTER — glowing top border ── */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, #0EA5E9, #38BDF8, #0EA5E9, transparent);
  box-shadow: 0 0 20px rgba(14,165,233,0.4);
}

/* ── MARQUEE BAR — neon glow text ── */
.marquee-track span {
  transition: color 0.2s ease;
}
.marquee-track span:hover {
  color: #38BDF8;
  text-shadow: 0 0 12px rgba(56,189,248,0.6);
}

/* ── PRELOADER responsive ── */
@media (max-width: 480px) {
  .pre-text { font-size: 15px; letter-spacing: 3px; }
  .pre-logo { width: 60px; height: 60px; }
}


/* ===== CONTACT MAP ===== */
.contact-map iframe { display: block; box-shadow: var(--shadow-md); }

/* ===== FAQ FLOATING BUTTON + POPUP ===== */
.faq-float {
  position: fixed; bottom: 100px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, #0284C7, #0EA5E9);
  color: #FFFFFF; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(14,165,233,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.faq-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(14,165,233,0.6); }
.faq-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: #050D1A; color: #FFFFFF; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
  font-family: 'Outfit', sans-serif;
}
.faq-float:hover .faq-tooltip { opacity: 1; }

.faq-popup {
  position: fixed; bottom: 170px; right: 28px; z-index: 1001;
  width: 380px; max-width: calc(100vw - 32px);
  max-height: min(600px, calc(100vh - 200px));
  background: #FFFFFF; border-radius: 18px;
  box-shadow: 0 24px 64px rgba(5,13,26,0.28), 0 8px 24px rgba(5,13,26,0.15);
  border: 1px solid #E2E8F0;
  display: none; flex-direction: column; overflow: hidden;
}
.faq-popup.open { display: flex; animation: faqPopIn 0.28s cubic-bezier(0.34,1.4,0.64,1); }
@keyframes faqPopIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.faq-popup-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; flex-shrink: 0;
  background: linear-gradient(135deg, #0A1628, #0D2448, #0369A1);
}
.faq-popup-head strong { display: block; color: #FFFFFF; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800; }
.faq-popup-head span { font-size: 11px; color: rgba(255,255,255,0.6); }
.faq-popup-close {
  width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.12); color: #FFFFFF; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s ease;
}
.faq-popup-close:hover { background: rgba(255,255,255,0.25); }
.faq-popup-body { overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 10px; overflow: hidden; transition: border-color 0.25s ease; }
.faq-item.open { border-color: #0EA5E9; background: #FFFFFF; box-shadow: 0 4px 14px rgba(14,165,233,0.10); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 14px; background: none; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; color: #060E1D;
  text-align: left; line-height: 1.45;
}
.faq-q:hover { color: #0EA5E9; }
.faq-q i { color: #0EA5E9; font-size: 11px; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-popup .faq-a { display: none !important; max-height: none !important; height: auto !important; overflow: visible !important; }
.faq-popup .faq-item.open .faq-a { display: block !important; }
.faq-popup .faq-q { max-height: none !important; height: auto !important; overflow: visible !important; white-space: normal !important; }
.faq-a p {
  padding: 0 14px 14px; margin: 0;
  font-size: 12.5px; color: #64748B; line-height: 1.7;
  overflow-wrap: break-word;
}
.faq-popup-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px; padding: 12px; border-radius: 10px; flex-shrink: 0;
  background: #0EA5E9; color: #FFFFFF; font-size: 13px; font-weight: 700;
  transition: background 0.2s ease;
}
.faq-popup-cta:hover { background: #0284C7; }

@media (max-width: 480px) {
  .faq-float { bottom: 96px; right: 18px; width: 52px; height: 52px; font-size: 21px; }
  .faq-popup { bottom: 158px; right: 16px; }
  .faq-tooltip { display: none; }
}




/* ===== CONTACT LEFT — match enquiry form height ===== */
.contact-wrap { align-items: stretch; }
.contact-left { display: flex; flex-direction: column; }
.contact-map { flex: 1; display: flex; min-height: 240px; }
.contact-map iframe { flex: 1; height: 100% !important; min-height: 240px; }
