/* ==========================================
   VYANKATESH ENGINEERING WORKS
   PREMIUM INDUSTRIAL THEME
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0b1628;
  --navy-mid: #132240;
  --navy-soft: #1e3a5f;
  --blue: #1d6fe8;
  --blue-light: #60a5fa;
  --blue-pale: #eff6ff;
  --steel: #7b90ab;
  --steel-light: #b8c9de;
  --white: #ffffff;
  --surface: #f7f9fc;
  --surface-2: #eef2f7;
  --text: #0f172a;
  --text-mid: #374151;
  --muted: #64748b;
  --border: rgba(11, 22, 40, 0.10);
  --border-light: rgba(11, 22, 40, 0.06);
  --shadow-sm: 0 4px 12px rgba(11,22,40,.06);
  --shadow-md: 0 12px 30px rgba(11,22,40,.09);
  --shadow-lg: 0 24px 70px rgba(11,22,40,.16);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1200px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 84px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: 0; background: transparent; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section,
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }

.tag,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--blue-pale);
  border: 1px solid rgba(29,111,232,.18);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.tag::before,
.section-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}
.section-header.center {
  align-items: center;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.035em;
  color: var(--navy);
}
.section-sub,
.section-desc {
  max-width: 620px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}
.section-header.center .section-sub,
.section-header.center .section-desc { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}
.btn-primary:hover {
  background: #1558c8;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(29,111,232,.28);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.58);
}
.btn-outline-dark {
  border: 1px solid var(--border);
  color: var(--navy);
}
.btn-outline-dark:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

/* ==========================
   PREMIUM NAVBAR
========================== */
.premium-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  background: rgba(11, 19, 36, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.premium-navbar {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text span { color: #fff; font-size: 18px; font-weight: 800; }
.brand-text small {
  margin-top: 4px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-menu a {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.nav-menu a:hover { color: var(--blue-light); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 38px;
  left: 0;
  min-width: 260px;
  padding: 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text);
}
.dropdown-menu a:hover {
  background: var(--surface);
  color: var(--blue);
}
.nav-quote-btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}
.mobile-toggle {
  display: none;
  color: #fff;
  font-size: 30px;
}
.mobile-menu {
  display: none;
  padding: 14px 0 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a {
  display: block;
  padding: 12px 4px;
  color: rgba(255,255,255,.82);
}
.mobile-menu.active { display: block; }

/* ==========================
   HERO / HOME
========================== */
.hero {
  position: relative;
  min-height: 720px;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg,
.hero-grid {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background:
    radial-gradient(circle at 75% 45%, rgba(29,111,232,.22), transparent 42%),
    linear-gradient(135deg, #0b1628, #132240 55%, #0b1628);
}
.hero-grid {
  background-image:
    linear-gradient(rgba(59,130,246,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 82px 24px 58px;
  display: grid;
  grid-template-columns: 54% 46%;
  gap: 50px;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-light);
}
.hero-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--blue-light);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.05em;
  color: #fff;
}
.hero-title span { color: var(--blue-light); }
.hero-desc {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255,255,255,.64);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 540px;
  gap: 12px;
  margin-top: 6px;
}
.hero-stats div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
}
.hero-stats strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  color: #fff;
}
.hero-stats span {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,.55);
}
.hero-right { display: flex; justify-content: center; }
.machine-card {
  width: 390px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(59,130,246,.30);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.machine-tag {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(29,111,232,.18);
  border: 1px solid rgba(59,130,246,.35);
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.machine-card h3 {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.62);
  font-weight: 500;
}
.machine-visual {
  height: 220px;
  margin: 18px 0;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.machine-visual img {
  max-height: 190px;
  width: auto;
  object-fit: contain;
}
.machine-visual svg {
  width: 190px;
  height: 190px;
}
.machine-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.machine-specs div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}
.machine-specs small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.machine-specs b {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 18px;
}

/* ==========================
   ABOUT PREVIEW
========================== */
.about-section { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-body {
  color: var(--text-mid);
  line-height: 1.85;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
}
.pillar:hover {
  border-color: rgba(29,111,232,.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pillar-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.pillar-icon svg { width: 18px; height: 18px; color: var(--blue); }
.pillar-title { font-size: 14px; font-weight: 700; color: var(--navy); }
.pillar-desc { margin-top: 4px; font-size: 13px; color: var(--muted); line-height: 1.55; }
.about-image-block { position: relative; }
.about-img-frame {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: var(--radius-xl);
  padding: 42px;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-frame img,
.about-img-frame svg { position: relative; z-index: 1; max-height: 390px; object-fit: contain; }
.about-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-icon svg { width: 22px; height: 22px; fill: white; }
.badge-num { display: block; font-size: 20px; font-weight: 800; color: var(--navy); line-height: 1; }
.badge-label { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); }

/* ==========================
   PRODUCTS
========================== */
.products-section { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(29,111,232,.30);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card-img,
.product-image {
  height: 220px;
  padding: 32px;
  background: linear-gradient(135deg, var(--surface), #e8eff8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-img img,
.product-image img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  transition: transform .35s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-card-body,
.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-card-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.product-card-name,
.product-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}
.product-card-desc,
.product-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
}
.product-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0;
}
.product-spec-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}
.product-spec-row::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.product-card-footer,
.product-actions {
  padding: 0 24px 24px;
  margin-top: auto;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  transition: var(--transition);
}
.product-link:hover { gap: 10px; }
.product-link svg { width: 16px; height: 16px; }

/* ==========================
   WHY / INDUSTRIES / STATS
========================== */
.why-section { background: var(--navy); }
.why-section .section-title { color: #fff; }
.why-section .section-sub { color: rgba(255,255,255,.55); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  background: transparent;
  overflow: visible;
}

.why-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 36px 30px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}
.why-item:hover { background: var(--navy-mid); }
.why-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(29,111,232,.30);
  background: rgba(29,111,232,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 24px; height: 24px; color: var(--blue-light); }
.why-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--blue-light);
  text-transform: uppercase;
}
.why-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.why-desc {
  font-size: 14px;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
}
.industries-section { background: var(--surface); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.industry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.industry-card:hover {
  border-color: rgba(29,111,232,.35);
  background: var(--blue-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-icon svg { width: 26px; height: 26px; color: var(--steel); }
.industry-card:hover .industry-icon svg { color: var(--blue); }
.industry-name { font-size: 13px; font-weight: 700; color: var(--text-mid); }

.stats-section { background: #fff; }
.stats-inner {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}
.stat-item:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-suffix { color: var(--blue-light); }
.stat-label { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.52); }

/* ==========================
   TESTIMONIALS / CTA / FORMS
========================== */
.testimonials-section { background: var(--surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars span { color: #f59e0b; font-size: 15px; }
.testimonial-quote { font-size: 15px; color: var(--text-mid); line-height: 1.75; font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
}
.author-name { font-size: 14px; font-weight: 800; color: var(--navy); }
.author-role { font-size: 12px; color: var(--muted); }

.cta-section { background: #fff; }
.cta-inner,
.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid) 60%, var(--navy-soft));
  border-radius: var(--radius-xl);
  padding: 70px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-title,
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.15;
      color: #0c1425;
}
.cta-desc,
.cta-box p {
  margin-top: 14px;
    color: #0c1425;  line-height: 1.75;
}
.cta-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.cta-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.68); font-size: 14px; }
.cta-form-block {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 34px;
  backdrop-filter: blur(8px);
}
.form-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65); }
.form-input,
.form-select,
.form-textarea,
.form-field {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: var(--transition);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,.35); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.form-field:focus {
  border-color: rgba(29,111,232,.65);
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 0 3px rgba(29,111,232,.12);
}
.form-select option { background: var(--navy); color: #fff; }
.form-textarea { min-height: 90px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ==========================
   PREMIUM FOOTER
========================== */
.premium-footer {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 50px;
}
.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 22px;
}
.footer-brand p,
.footer-col p {
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  font-size: 15px;
}
.footer-contact { margin-top: 24px; }
.footer-contact strong {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.footer-contact a {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.footer-col h4 {
  font-size: 15px;
  margin-bottom: 22px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
  font-size: 15px;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--blue-light);
  transform: translateX(4px);
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: 14px; }

/* ==========================
   PRODUCT DETAIL SHARED
========================== */
.product-hero {
  padding: 120px 0 90px;
  background: #0B1324;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(29,111,232,.15), transparent 70%);
  right: -200px;
  top: -200px;
}
.product-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: auto;
}
.hero-tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-hero h1 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(42px,6vw,72px);
  line-height: 1.05;
  font-weight: 800;
}
.product-hero p {
  margin-top: 20px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.8;
}
.hero-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.spec-card {
  padding: 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.spec-card h3 { font-size: 34px; color: var(--blue); }
.spec-card p { margin-top: 8px; color: var(--muted); }
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
}
table { width: 100%; border-collapse: collapse; }
th {
  background: var(--navy);
  color: #fff;
  padding: 16px;
  text-align: left;
  white-space: nowrap;
}
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
tr:nth-child(even) { background: var(--surface); }

/* ==========================
   REVEAL ANIMATION
========================== */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}
.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}
.reveal-d1 { transition-delay: .10s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .26s; }
.reveal-d4 { transition-delay: .34s; }
.reveal-d5 { transition-delay: .42s; }
.reveal-d6 { transition-delay: .50s; }

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 1024px) {
  .hero-content,
  .about-grid,
  .cta-inner,
  .cta-box { grid-template-columns: 1fr; }
  .hero-right,
  .about-image-block { display: none; }
  .products-grid,
  .why-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat-item:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .nav-menu,
  .nav-quote-btn { display: none; }
  .mobile-toggle { display: block; }
  .brand img { height: 48px; }
  .brand-text span { font-size: 16px; }
}

@media (max-width: 768px) {
  body { padding-top: 78px; }
  .section,
  .section-pad { padding: 66px 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 74px 20px 48px; }
  .hero-title { font-size: 44px; }
  .hero-stats,
  .about-pillars,
  .products-grid,
  .why-grid,
  .testimonials-grid,
  .spec-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 48px 28px; }
  .cta-inner,
  .cta-box { padding: 46px 28px; }
  .cta-form-block { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions .btn,
  .hero-buttons .btn { width: 100%; }
}

@media (max-width: 600px) {
  .premium-footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-stats { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
  .stat-item:last-child { border-bottom: 0; }
}

/* FORCE WHY SECTION COLORS */

.why-section .why-item {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
}

.why-section .why-num {
  color: #60A5FA !important;
}

.why-section .why-title {
  color: #FFFFFF !important;
  font-size: 22px !important;
  font-weight: 800 !important;
}

.why-section .why-desc {
  color: rgba(255,255,255,.75) !important;
  font-size: 15px !important;
}

.why-section svg {
  color: #60A5FA !important;
  fill: #60A5FA !important;
}

/* FINAL WHY SECTION FIX */
.why-section {
  background: #0b1628 !important;
}

.why-section .why-grid {
  gap: 18px !important;
  background: transparent !important;
}

.why-section .why-item {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 22px !important;
}

.why-section .why-item h3,
.why-section .why-title {
  color: #ffffff !important;
}

.why-section .why-item p,
.why-section .why-desc {
  color: rgba(255,255,255,.75) !important;
}

.why-section .why-item span,
.why-section .why-num {
  color: #60a5fa !important;
}
/* =========================
   ABOUT PAGE
========================= */

.page-hero {
  padding: 140px 0 90px;
  background:
    linear-gradient(
      135deg,
      #07111f 0%,
      #0d1d36 100%
    );
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  margin: 20px 0;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content h4 {
  margin-top: 20px;
  margin-bottom: 6px;
  font-size: 22px;
}

.designation {
  color: var(--blue-light);
  font-weight: 600;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 50px;
}

.product-grid .product-card {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 700;
  text-align: center;
  transition: .3s;
}

.product-grid .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.cta-box {
  padding: 70px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--primary),
    #0f5bd7
  );
  color: #fff;
}

.cta-box h2 {
  font-size: 40px;
  margin-bottom: 16px;
}



@media(max-width:992px){

  .about-grid{
    grid-template-columns:1fr;
  }

  .product-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .page-hero{
    padding:120px 0 70px;
  }

  .product-grid{
    grid-template-columns:1fr;
  }

  .cta-box{
    padding:40px 24px;
  }

}

/* =========================
   CONTACT PAGE
========================= */

.contact-section {
  background: var(--surface);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-card a,
.contact-card p {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.contact-card a:hover {
  color: var(--blue);
}

.contact-form-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 30px;
  align-items: stretch;
}

.contact-form-box,
.working-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

.contact-form-box h2,
.working-card h2 {
  margin: 16px 0 28px;
  font-size: 36px;
  line-height: 1.15;
  color: var(--navy);
}

.form-group-light {
  margin-bottom: 18px;
}

.form-group-light label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.form-group-light input,
.form-group-light textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  outline: none;
}

.form-group-light textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group-light input:focus,
.form-group-light textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29,111,232,.10);
}

.working-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
}

.working-card h2 {
  color: #fff;
}

.working-card .section-tag {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: var(--blue-light);
}

.time-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.time-row span {
  display: block;
  color: rgba(255,255,255,.6);
  margin-bottom: 5px;
}

.time-row strong {
  color: #fff;
  font-size: 18px;
}

.quick-contact {
  margin-top: 28px;
}

.quick-contact h3 {
  color: #fff;
  margin-bottom: 16px;
}

.map-section iframe {
  display: block;
  filter: grayscale(10%);
}

@media(max-width: 992px) {
  .contact-card-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 600px) {
  .contact-form-box,
  .working-card {
    padding: 26px;
  }

  .contact-form-box h2,
  .working-card h2 {
    font-size: 30px;
  }
}

/* =========================
   PREMIUM MAP SECTION
========================= */

.map-section {
  padding: 96px 0;
  background: var(--surface);
}

.map-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.map-box {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  background: #fff;
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

@media (max-width: 768px) {

  .map-section {
    padding-bottom: 70px;
  }

  .map-box {
    border-radius: 22px;
  }

  .map-box iframe {
    height: 380px;
  }

}


/* ==================================
   PRODUCT PAGE CSS ONLY
================================== */

.product-hero {
  padding: 120px 0 80px;
  background:
  radial-gradient(circle at 80% 30%, rgba(29,111,232,.18), transparent 35%),
  linear-gradient(135deg,#0b1628,#132240);
  text-align: center;
  color: #fff;
}

.product-hero-content {
  max-width: 900px;
  margin: auto;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-hero h1 {
  margin-top: 20px;
  font-size: 62px;
  font-weight: 800;
  line-height: 1.1;
}

.product-hero p {
  margin-top: 20px;
  color: rgba(255,255,255,.75);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* PRODUCT OVERVIEW */

.product-overview {
  padding: 90px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 70px;
  align-items: center;
}

.product-image-box {
  background: #f7f9fc;
  border-radius: 30px;
  padding: 50px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.product-image-box img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.product-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.product-content p {
  color: #64748b;
  line-height: 1.9;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
  margin-top: 30px;
}

.feature-box {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
}

.feature-box strong {
  display: block;
  margin-bottom: 6px;
  color: #0b1628;
}

/* FEATURES SECTION */

.features-section {
  padding: 90px 0;
  background: #0b1628;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.feature-card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.feature-card span {
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
}

.feature-card h3 {
  color: #fff;
  margin-top: 15px;
  margin-bottom: 12px;
}

.feature-card p {
  color: rgba(255,255,255,.65);
}

/* MODELS */

.models-section {
  padding: 90px 0;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.model-card {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  transition: .3s;
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.model-card h3 {
  color: #1d6fe8;
  font-size: 34px;
}

.model-card p {
  margin-top: 8px;
  color: #64748b;
}

/* TABLE */

.specification-section {
  padding: 90px 0;
  background: #f7f9fc;
}

.table-wrapper {
  overflow-x: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,.08);
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1100px;
}

.product-table th {
  background: #0b1628;
  color: #fff;
  padding: 16px;
  text-align: left;
}

.product-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.product-table tr:nth-child(even) {
  background: #f8fafc;
}

/* APPLICATIONS */

.application-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 18px;
}

.application-card {
  padding: 24px;
  text-align: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
}

.application-card:hover {
  border-color: #1d6fe8;
}

/* DOWNLOAD */

.download-box {
  text-align: center;
  padding: 70px;
  background: linear-gradient(135deg,#0b1628,#132240);
  border-radius: 30px;
  color: #fff;
}

.download-box h2 {
  margin-bottom: 15px;
}

.download-box p {
  color: rgba(255,255,255,.65);
  margin-bottom: 25px;
}

/* MOBILE */

@media(max-width:992px){

.product-grid{
grid-template-columns:1fr;
}

.features-grid{
grid-template-columns:1fr 1fr;
}

.models-grid{
grid-template-columns:1fr 1fr;
}

.application-grid{
grid-template-columns:1fr 1fr 1fr;
}

}

@media(max-width:768px){

.product-hero h1{
font-size:42px;
}

.product-features{
grid-template-columns:1fr;
}

.features-grid,
.models-grid,
.application-grid{
grid-template-columns:1fr;
}

.product-image-box{
padding:25px;
}

}


/* Products dropdown text/arrow fix */
.nav-menu .dropdown > a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  line-height: 1 !important;
  padding: 14px 0 !important;
}

.nav-menu .dropdown > a span {
     display: inline-flex !important;
    align-items: center !important;
    font-size: 10px !important;
    line-height: 1 !important;
    margin-top: -6px !important;
}
