/* ============================================================
   IQInstrument Main Stylesheet (British Flag Theme)
   Royal Blue: #012169 | Red: #C8102E | White: #FFFFFF
   ============================================================ */

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #1e293b;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
}

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 0.55rem 0;
  box-shadow: 0 2px 20px rgba(1, 33, 105, 0.1);
}
.nav-logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #012169;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-logo .logo-badge {
  background: linear-gradient(135deg, #012169, #c8102e);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.nav-link-item {
  color: rgba(1, 33, 105, 0.7) !important;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  padding: 0.4rem 1rem !important;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
  text-decoration: none;
}
.nav-link-item:hover {
  color: #c8102e !important;
  background: rgba(200, 16, 46, 0.06);
}
.nav-link-item.active {
  color: #c8102e !important;
}
.btn-inquiry {
  background: linear-gradient(135deg, #c8102e, #e01f3d);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.5rem !important;
  border-radius: 50px !important;
  border: none;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.3px;
}
.btn-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.48);
  color: #fff !important;
}
.navbar-toggler {
  border-color: rgba(1, 33, 105, 0.2) !important;
}
.navbar-toggler-icon {
  filter: none;
}

/* ---------- Hero ---------- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #eef2ff 0%, #f8f9ff 50%, #fff5f7 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 33, 105, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 33, 105, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(1, 33, 105, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: glowPulse 4s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: 50px;
  left: -50px;
  animation: glowPulse 6s ease-in-out infinite reverse;
}
@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 33, 105, 0.07);
  border: 1px solid rgba(1, 33, 105, 0.18);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #012169;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: #c8102e;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #012169;
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #012169, #c8102e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(1, 33, 105, 0.62);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #012169, #1a3a9f);
  color: #ffffff;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 30px rgba(1, 33, 105, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(1, 33, 105, 0.45);
  color: #ffffff;
}
.btn-hero-outline {
  background: transparent;
  color: #012169;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(1, 33, 105, 0.25);
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.btn-hero-outline:hover {
  border-color: #c8102e;
  background: rgba(200, 16, 46, 0.05);
  color: #c8102e;
}

/* Hero visual cards */
.hero-visual {
  position: relative;
}
.instrument-card {
  background: #ffffff;
  border: 1px solid rgba(1, 33, 105, 0.1);
  box-shadow: 0 4px 24px rgba(1, 33, 105, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  color: #012169;
  transition: transform 0.3s;
}
.instrument-card:hover {
  transform: translateY(-4px);
}
.instrument-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.float-card {
  position: absolute;
  animation: floatY 4s ease-in-out infinite;
  z-index: 4;
}
.float-card:nth-child(2) {
  animation-delay: -2s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.about-float-brand {
  position: absolute;
  z-index: 4;
  animation: floatY 4s ease-in-out infinite;
}
.float-brand-card {
  background: #ffffff;
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 14px;
  padding: 0.65rem 0.9rem;
  box-shadow: 0 8px 28px rgba(1, 33, 105, 0.13);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}
.float-brand-card:hover {
  box-shadow: 0 12px 36px rgba(1, 33, 105, 0.2);
}
.float-brand-card img {
  height: 30px;
  max-width: 70px;
  object-fit: contain;
  flex-shrink: 0;
}
.float-brand-card-text {
  display: flex;
  flex-direction: column;
}
.float-brand-card-text strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
}
.float-brand-card-text span {
  font-size: 0.67rem;
  color: rgba(15, 23, 42, 0.45);
  margin-top: 1px;
}
.hero-main-visual {
  position: relative;
  padding: 20px;
}
/* Professional image frame */
.hero-img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 24px 70px rgba(1, 33, 105, 0.22),
    0 6px 24px rgba(1, 33, 105, 0.1),
    0 0 0 1px rgba(1, 33, 105, 0.1);
}
/* Top accent bar */
.hero-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #012169 0%, #c8102e 100%);
  z-index: 2;
}
/* Bottom vignette for depth */
.hero-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(1, 13, 40, 0.28), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.hero-img-wrap:hover .hero-img-main {
  transform: scale(1.03);
}
.visual-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(1, 33, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.visual-ring::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(1, 33, 105, 0.15);
  animation: spin 20s linear infinite;
}
.visual-ring::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px dashed rgba(200, 16, 46, 0.12);
  animation: spin 30s linear infinite reverse;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.ring-inner {
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(1, 33, 105, 0.12),
    rgba(200, 16, 46, 0.07)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #012169;
}

/* ---------- Stats Bar ---------- */
#stats {
  background: transparent;
  padding: 3rem 0 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.stat-item {
  background: #0a2d4d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  text-align: center;
  padding: 2rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.15);
}
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #ffffff;
  margin: 0 auto 1.1rem;
  transition: background 0.3s, transform 0.3s;
}
.stat-item:hover .stat-icon {
  background: rgba(200,16,46,0.25);
  color: #ffffff;
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-2px);
}
.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-number sup {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
  color: #C8102E;
}
.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  margin-top: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

/* ---------- Trust Bar ---------- */
#trust {
  padding: 3.5rem 0;
  background: #ffffff;
}
.trust-card {
  background: #f5f7ff;
  border: 1px solid rgba(1, 33, 105, 0.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.trust-card:hover {
  border-color: rgba(1, 33, 105, 0.25);
  background: rgba(1, 33, 105, 0.04);
  transform: translateY(-4px);
}
.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.trust-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #012169;
  margin-bottom: 0.3rem;
}
.trust-card p {
  font-size: 0.83rem;
  color: rgba(1, 33, 105, 0.55);
  margin: 0;
}

/* ---------- Section Shared ---------- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8102e;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #012169;
  line-height: 1.2;
}
.section-desc {
  color: rgba(1, 33, 105, 0.55);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 580px;
}
.teal-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #c8102e, transparent);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

/* ---------- About ---------- */
#about {
  padding: 6rem 0;
  background: #f5f7ff;
}
.about-img-wrap {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}
/* Decorative offset rectangle behind the photo */
.about-img-wrap::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 1.5rem;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(1, 33, 105, 0.07),
    rgba(200, 16, 46, 0.04)
  );
  border: 1.5px solid rgba(1, 33, 105, 0.12);
  z-index: 0;
}
.about-img-main {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(1, 33, 105, 0.16);
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 6s ease;
}
.about-img-main:hover img {
  transform: scale(1.03);
}
/* Blue accent bar on left edge */
.about-img-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #012169, #c8102e);
  z-index: 2;
}
/* Floating years badge */
.about-img-badge {
  position: absolute;
  bottom: 0;
  left: -0.5rem;
  background: #ffffff;
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 8px 32px rgba(1, 33, 105, 0.14);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
  min-width: 165px;
}
.about-img-badge .badge-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #012169, #c8102e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-img-badge .badge-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.4;
}
/* Authorised Distributor row below image */
.about-auth-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1.1rem;
  background: rgba(1, 33, 105, 0.04);
  border: 1px solid rgba(1, 33, 105, 0.12);
  border-radius: 12px;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(1, 33, 105, 0.05);
  border: 1px solid rgba(1, 33, 105, 0.12);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(1, 33, 105, 0.7);
  margin: 3px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.brand-chip:hover {
  border-color: #c8102e;
  color: #c8102e;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.about-feature .feat-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(1, 33, 105, 0.08);
  border: 1px solid rgba(1, 33, 105, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #012169;
  font-size: 1rem;
}
.about-feature h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #012169;
  margin-bottom: 0.2rem;
}
.about-feature p {
  font-size: 0.83rem;
  color: rgba(1, 33, 105, 0.55);
  margin: 0;
}

/* ---------- Categories ---------- */
#categories {
  padding: 6rem 0;
  background: #ffffff;
}
.cat-card {
  background: #ffffff;
  border: 1px solid rgba(1, 33, 105, 0.08);
  border-radius: 20px;
  padding: 1.75rem;
  height: 100%;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
/* Image background layer */
.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1.07);
  transition: transform 0.75s ease;
  border-radius: 20px;
  z-index: 0;
}
.cat-card:hover .cat-card-bg {
  transform: scale(1);
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(1, 33, 105, 0.2);
  box-shadow: 0 12px 40px rgba(1, 33, 105, 0.1);
}
/* Content above both bg layers */
.cat-card .cat-icon-wrap,
.cat-card h5,
.cat-card p,
.cat-card .cat-arrow {
  position: relative;
  z-index: 2;
}
.cat-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.cat-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #012169;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9);
}
.cat-card p {
  font-size: 0.82rem;
  color: rgba(1, 33, 105, 0.75);
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.85);
  max-width: 75%;
}
.cat-arrow {
  margin-top: 1rem;
  color: #012169;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition:
    color 0.2s,
    gap 0.2s;
}
.cat-card:hover .cat-arrow {
  color: #c8102e;
  gap: 8px;
}

/* ---------- Why Choose Us ---------- */
#why {
  padding: 6rem 0;
  background: #f5f7ff;
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 70% 50%,
    rgba(1, 33, 105, 0.04) 0%,
    transparent 60%
  );
}
.why-card {
  background: #ffffff;
  border: 1px solid rgba(1, 33, 105, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.why-card:hover {
  border-color: rgba(1, 33, 105, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(1, 33, 105, 0.07);
}
.why-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(1, 33, 105, 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.why-icon {
  font-size: 1.5rem;
  color: #012169;
  margin-bottom: 0.75rem;
}
.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #012169;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.83rem;
  color: rgba(1, 33, 105, 0.5);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Brands ---------- */
#brands {
  padding: 5rem 0;
  background: #ffffff;
}
.brands-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-card {
  background: #ffffff;
  border: 1px solid rgba(1, 33, 105, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.brand-logo-card:hover {
  border-color: rgba(1, 33, 105, 0.25);
  box-shadow: 0 4px 20px rgba(1, 33, 105, 0.1);
}
.brand-logo-card img {
  max-height: 48px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(25%) opacity(0.8);
  transition:
    filter 0.3s,
    transform 0.3s;
}
.brand-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

/* ---------- Industries ---------- */
#industries {
  padding: 5.5rem 0;
  background: #f5f7ff;
}
.industry-card {
  background: #ffffff;
  border: 1px solid rgba(1, 33, 105, 0.08);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(1, 33, 105, 0.25);
  box-shadow: 0 8px 32px rgba(1, 33, 105, 0.08);
}
.industry-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.industry-card h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #012169;
  margin-bottom: 0.3rem;
}
.industry-card p {
  font-size: 0.78rem;
  color: rgba(1, 33, 105, 0.5);
  margin: 0;
  line-height: 1.5;
}

/* ---------- CTA Banner ---------- */
#cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, #eef2ff 0%, #ffffff 50%, #fff0f3 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(1, 33, 105, 0.08);
  border-bottom: 1px solid rgba(1, 33, 105, 0.08);
}
#cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(1, 33, 105, 0.06) 0%,
    transparent 55%
  );
}
#cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 85% 50%,
    rgba(200, 16, 46, 0.05) 0%,
    transparent 50%
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.btn-cta-main {
  background: linear-gradient(135deg, #c8102e, #e01f3d);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 35px rgba(200, 16, 46, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-cta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgba(200, 16, 46, 0.55);
  color: #fff;
}
.btn-cta-ghost {
  background: transparent;
  color: #012169;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: 1.5px solid rgba(1, 33, 105, 0.25);
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.btn-cta-ghost:hover {
  border-color: #012169;
  background: rgba(1, 33, 105, 0.05);
  color: #012169;
}

/* ---------- Footer ---------- */
footer {
  background: #010f40;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
}
.footer-logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #fff;
}
.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 2rem 0 1.5rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.social-btn:hover {
  border-color: #c8102e;
  color: #fff;
  background: #c8102e;
}
.footer-bottom {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* ---------- Scroll-to-top ---------- */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #c8102e, #e01f3d);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.35);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#scrollTop:hover {
  transform: translateY(-2px);
}

/* ---------- Utilities ---------- */
.gradient-text {
  background: linear-gradient(135deg, #012169, #c8102e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.orange-text {
  color: #c8102e;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-visual {
    margin-top: 2rem;
  }
}
