/* ==========================================================================
   Reliance Chemicals Ltd - Core Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  /* Colors */
  --navy: #060B16;
  --navy-mid: #0C1528;
  --blue: #1A6BF5;
  --blue-hover: #3D84FF;
  --blue-light: #4A8FFF;
  --blue-dark: #0F4FE8;
  --orange: #F05A22;
  --orange-light: #FF7540;
  --white: #FFFFFF;
  --grey-light: #0E1A33; /* Sleek dark navy card base */
  --grey-text: #E2E8F0; /* High contrast light grey */
  --grey-text-light: #CBD5E1; /* Muted light blue-grey */
  --border: #1E2D4A;
  --border-light: rgba(255, 255, 255, 0.08);
  --accent-cyan: #00D4F0;
  --accent-purple: #A064FF;

  /* Typography */
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-max: 1280px;
  --section-padding: 100px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.45s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--grey-text-light);
  background-color: var(--navy);
  line-height: 1.75;
  font-size: 1rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h1 { 
  font-size: clamp(3.2rem, 5.5vw, 4.8rem); 
  line-height: 1.05; 
  letter-spacing: -0.015em; 
  color: var(--white); 
  font-weight: 800;
}

h2 { 
  font-size: clamp(2.2rem, 3.5vw, 3rem); 
  line-height: 1.15;
  letter-spacing: -0.012em;
  font-weight: 800;
}

h3 { 
  font-size: 1.55rem; 
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.008em;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   Layout & Utility Classes
   ========================================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section-dark {
  background-color: var(--navy);
  color: var(--white);
}

.section-dark h2, .section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: var(--grey-text-light);
}

.section-light {
  --grey-light: #F1F5F9;
  background-color: #F8FAFC;
  color: var(--navy);
}
.section-light h2, .section-light h3, .section-light h4 {
  color: var(--navy);
}
.section-light p {
  color: #475569;
}

.section-white {
  --grey-light: #F1F5F9;
  background-color: var(--white);
  color: var(--navy);
}
.section-white h2, .section-white h3, .section-white h4 {
  color: var(--navy);
}
.section-white p {
  color: #475569;
}

/* Clean Light-Themed Card Overrides */
.section-light .card, .section-white .card {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  backdrop-filter: none;
}
.section-light .card::before, .section-white .card::before {
  display: none;
}
.section-light .card h3, .section-white .card h3 {
  color: var(--navy);
}
.section-light .card p, .section-white .card p {
  color: #475569;
}
.section-light .card ul li, .section-white .card ul li {
  color: #475569;
}
.section-light .card:hover, .section-white .card:hover {
  box-shadow: 0 20px 40px rgba(26, 107, 245, 0.08);
  border-color: rgba(26, 107, 245, 0.2);
}

/* Light Theme Icon Row Overrides */
.section-light .icon-row h4, .section-white .icon-row h4 {
  color: var(--navy);
}
.section-light .icon-row p, .section-white .icon-row p {
  color: #475569;
}

/* Light Theme Process Step Text Overrides */
.section-light .process-step h4, .section-white .process-step h4 {
  color: var(--navy);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* Labels */
.label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.label-orange { color: var(--orange); }
.label-blue { color: var(--blue); }

/* Separators */
.separator {
  height: 1px;
  background-color: var(--border-light);
  width: 100%;
}
.section-dark .separator {
  background-color: var(--border);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Shimmer Sweep Animation on Hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover::after {
  left: 150%;
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(26, 107, 245, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-blue:hover { 
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
  color: var(--white); 
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 107, 245, 0.45);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(240, 90, 34, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-orange:hover { 
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  color: var(--white); 
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(240, 90, 34, 0.45);
}

.btn-ghost-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.btn-ghost-blue {
  background-color: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  text-transform: capitalize;
}

.btn-ghost-blue:hover {
  background-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 107, 245, 0.3);
}

.link-blue {
  color: var(--blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
}

.link-blue:hover { 
  color: var(--blue-light); 
  gap: 14px;
  transform: translateX(2px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  background-color: transparent;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  border-radius: 0px;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .container {
  background: linear-gradient(180deg, rgba(6, 11, 22, 0.96) 0%, rgba(12, 21, 40, 0.94) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 16px;
  padding: 10px 24px;
  border: 1px solid rgba(26, 107, 245, 0.3);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(26, 107, 245, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navbar.scrolled .logo-img {
  height: 42px;
  filter: drop-shadow(0 2px 8px rgba(26, 107, 245, 0.35));
}

.navbar.scrolled .nav-links a {
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active {
  color: var(--blue-hover);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(26, 107, 245, 0.15));
}

.logo-img:hover {
  transform: translateY(-2px) scale(1.03);
}

/* Hero Prominent Logo Styles */
.hero-logo-container {
  margin-bottom: 2.2rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-logo-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(26, 107, 245, 0.22) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(25px);
}

.hero-logo-img {
  height: 115px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 15px rgba(26, 107, 245, 0.15));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-logo-img:hover {
  transform: scale(1.08) translateY(-3px);
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2.5rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--blue);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  color: var(--grey-text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Drawer Backdrop Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -110%;
  width: min(400px, 100vw);
  height: 100vh;
  height: 100dvh;
  background-color: var(--navy-mid);
  border-left: 1px solid rgba(26, 107, 245, 0.2);
  z-index: 2000;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.mobile-drawer.open { right: 0; }

/* Drawer Header */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.mobile-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: static;
}
.mobile-drawer-close:hover {
  background: rgba(26, 107, 245, 0.2);
  border-color: var(--blue);
  color: var(--blue);
}

/* Drawer Nav Links */
.mobile-drawer .nav-links {
  flex-direction: column;
  gap: 0;
  padding: 16px 0;
  flex: 1;
  display: flex;
}
.mobile-drawer .nav-links a {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  transition: all 0.25s ease;
}
.mobile-drawer .nav-links a::before {
  content: '';
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background-color: var(--blue);
  opacity: 0;
  transition: opacity 0.25s ease;
  flex-shrink: 0;
}
.mobile-drawer .nav-links a::after {
  display: none;
}
.mobile-drawer .nav-links a:hover,
.mobile-drawer .nav-links a.active {
  color: var(--white);
  background-color: rgba(26, 107, 245, 0.08);
  padding-left: 24px;
}
.mobile-drawer .nav-links a:hover::before,
.mobile-drawer .nav-links a.active::before {
  opacity: 1;
}

/* Drawer CTA Button */
.mobile-drawer-cta {
  padding: 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.mobile-drawer-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Hero particle canvas background */
#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

/* Pure CSS Fade-In-Up for Snappy Above-The-Fold Loading */
.hero-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Hero Sections
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(180deg, #0C101B 0%, #0A0E1A 50%, #0C0F1A 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

/* Ambient glow blobs styled for the premium dark theme */
.hero-glow-1 {
  position: absolute;
  top: 5%;
  left: 2%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 107, 245, 0.25) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(120px);
  animation: pulse-glow-1 14s infinite alternate ease-in-out;
}

.hero-glow-2 {
  position: absolute;
  bottom: 5%;
  right: 2%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 212, 240, 0.18) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(130px);
  animation: pulse-glow-2 18s infinite alternate-reverse ease-in-out;
}

@keyframes pulse-glow-1 {
  0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.15) translate(30px, -15px); opacity: 0.9; }
}

@keyframes pulse-glow-2 {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.2) translate(-25px, 25px); opacity: 0.8; }
}

.hero .container {
  position: relative;
  z-index: 4;
}

/* Two-column layout grid */
.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  width: 100%;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Location pill - redesign to match the clean design theme */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 1.8rem;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem) !important;
  line-height: 1.08 !important;
  font-weight: 800;
  margin-bottom: 1.8rem !important;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero-title-main {
  display: block;
  color: var(--white);
  font-weight: 800;
}

.hero-title-sub {
  display: block;
  color: var(--white);
  margin-top: 0.4rem;
  background: none;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  filter: none;
  font-weight: 800;
}

.hero-subline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.003em;
}

/* Buttons matching reference layout styling exactly */
.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
  width: 100%;
}

.hero-buttons .btn {
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}

/* White Solid Button */
.btn-hero-white {
  background-color: var(--white) !important;
  color: #0C101B !important;
  border: 1px solid var(--white) !important;
  font-weight: 700;
}

.btn-hero-white:hover {
  background-color: rgba(255, 255, 255, 0.93) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 107, 245, 0.35) !important;
}

/* Outlined White Button */
.btn-hero-outline {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-hero-outline:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--white) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15) !important;
}

/* Trust Badges - clean layout matching */
.hero-trust {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-trust span:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.08);
}

.hero-trust span i {
  color: var(--blue-light) !important;
  font-size: 1rem;
}

/* Right column image styles */
.hero-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-img-wrapper {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.hero-main-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(26, 107, 245, 0.2);
  border: 1px solid rgba(26, 107, 245, 0.2);
  transition: var(--transition-smooth);
  image-rendering: -webkit-optimize-contrast;
}

.hero-img-wrapper:hover .hero-main-img {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px rgba(26, 107, 245, 0.25), 0 0 50px rgba(26, 107, 245, 0.3);
  border-color: rgba(26, 107, 245, 0.4);
}

/* Floating/Bouncing Lab & Chemical Icons styling */
.hero-floating-icon {
  position: absolute;
  z-index: 2;
  font-size: clamp(2rem, 4vw, 3.2rem);
  pointer-events: none;
}

.icon-flask {
  top: 18%;
  left: 8%;
  color: rgba(0, 212, 240, 0.06); /* subtle cyan glow tint */
  animation: float-slow 8s infinite ease-in-out;
}

.icon-vial {
  bottom: 22%;
  left: 6%;
  color: rgba(240, 90, 34, 0.06); /* subtle orange tint */
  font-size: 2.2rem;
  animation: bounce-slow 10s infinite ease-in-out;
}

.icon-atom {
  top: 14%;
  right: 48%;
  color: rgba(160, 100, 255, 0.06); /* subtle purple tint */
  animation: float-slow-reverse 9s infinite ease-in-out;
}

.icon-dna {
  bottom: 12%;
  right: 50%;
  color: rgba(100, 220, 180, 0.06); /* subtle green tint */
  font-size: 2.5rem;
  animation: bounce-slow-reverse 11s infinite ease-in-out;
}

.icon-microscope {
  top: 25%;
  right: 8%;
  color: rgba(255, 255, 255, 0.04);
  font-size: 2.8rem;
  animation: float-slow 12s infinite ease-in-out;
}

.icon-droplet {
  bottom: 18%;
  right: 12%;
  color: rgba(26, 107, 245, 0.07);
  font-size: 2rem;
  animation: bounce-slow-reverse 7s infinite ease-in-out;
}

/* Bouncing and Floating Keyframes */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(8deg); }
}

@keyframes float-slow-reverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-10deg); }
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(0.96) rotate(4deg); }
}

@keyframes bounce-slow-reverse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(14px) scale(1.02) rotate(-6deg); }
}

/* Responsive collapse media query */
@media (max-width: 991px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 60px;
    min-height: auto;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }
  
  .hero-text-col {
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-subline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-img-wrapper {
    max-width: 380px;
  }
}


.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}

.page-hero-accent {
  width: 50px;
  height: 3px;
  background-color: var(--blue);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* ==========================================================================
   Cards & Grids
   ========================================================================== */
/* Vision / Mission / Values Redesign */
.principle-card {
  background: linear-gradient(135deg, var(--white) 0%, rgba(248, 250, 252, 0.8) 100%);
  border: 1px solid rgba(26, 107, 245, 0.08);
  border-radius: 18px;
  padding: 48px 36px;
  box-shadow: 0 12px 40px rgba(26, 107, 245, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.principle-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 50%, transparent 100%);
  opacity: 0.2;
  transition: all 0.4s ease;
}

.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(26, 107, 245, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(26, 107, 245, 0.25);
  background: linear-gradient(135deg, var(--white) 0%, rgba(241, 250, 255, 0.9) 100%);
}

.principle-card:hover::after {
  opacity: 1;
  width: 70%;
}

.principle-card-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 107, 245, 0.1) 0%, rgba(26, 107, 245, 0.05) 100%);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  border: 2px solid rgba(26, 107, 245, 0.15);
  flex-shrink: 0;
}

.principle-card:hover .principle-card-icon-wrapper {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 12px 32px rgba(26, 107, 245, 0.3);
  border-color: var(--blue);
}

.principle-card h3 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.principle-card p {
  font-size: 0.95rem;
  color: #64748B;
  margin: 0;
  line-height: 1.65;
  font-weight: 500;
}

/* Why Choose Us Redesign */
.why-card {
  background: linear-gradient(135deg, var(--white) 0%, rgba(248, 250, 252, 0.8) 100%);
  border: 1px solid rgba(26, 107, 245, 0.08);
  border-radius: 18px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-light) 100%);
  opacity: 0.2;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(26, 107, 245, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(26, 107, 245, 0.25);
  background: linear-gradient(135deg, var(--white) 0%, rgba(241, 250, 255, 0.9) 100%);
}

.why-card:hover::before {
  opacity: 1;
  width: 7px;
}

.why-card-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26, 107, 245, 0.1) 0%, rgba(26, 107, 245, 0.05) 100%);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.8rem;
  transition: var(--transition);
  border: 2px solid rgba(26, 107, 245, 0.15);
  flex-shrink: 0;
}

.why-card:hover .why-card-icon-wrapper {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(26, 107, 245, 0.3);
  border-color: var(--blue);
}

.why-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 0.95rem;
  color: #64748B;
  margin: 0;
  line-height: 1.55;
}

.card {
  background: linear-gradient(180deg, rgba(100, 150, 200, 0.15) 0%, rgba(60, 100, 160, 0.1) 50%, rgba(30, 60, 120, 0.08) 100%);
  border: 1.5px solid rgba(26, 107, 245, 0.2);
  border-radius: 20px;
  padding: 48px 40px;
  transition: var(--transition-smooth);
  border-top: 6px solid var(--blue);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 24px rgba(26, 107, 245, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(26,107,245,0.06) 0%, rgba(0,212,240,0.02) 50%, rgba(0,0,0,0) 100%);
  z-index: 0;
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-16px) scale(1.01);
  box-shadow: 0 32px 72px rgba(26,107,245,0.3), 0 0 40px rgba(26,107,245,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
  border-color: rgba(26,107,245,0.55);
  background: linear-gradient(180deg, rgba(120, 160, 220, 0.2) 0%, rgba(80, 120, 180, 0.12) 50%, rgba(50, 90, 150, 0.1) 100%);
}

.card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.card p {
  color: rgba(226, 232, 240, 0.95);
  line-height: 1.75;
  font-weight: 500;
}

.card-icon {
  font-size: 2rem;
  color: var(--blue-light);
  margin-bottom: 1.8rem;
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  color: #4A8FFF;
  transform: scale(1.1);
}

.card ul {
  margin: 1.8rem 0;
  flex-grow: 1;
}

.card ul li {
  color: #CBD5E1;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.card ul li:hover {
  color: var(--white);
  transform: translateX(3px);
}

.card ul li::before {
  content: '→';
  color: var(--blue-light);
  font-weight: bold;
  margin-right: 10px;
  flex-shrink: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Products grid - 3 top, 2 bottom */
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.products-grid > *:nth-child(1),
.products-grid > *:nth-child(2),
.products-grid > *:nth-child(3) { grid-column: span 2; }
.products-grid > *:nth-child(4),
.products-grid > *:nth-child(5) { grid-column: span 3; }

/* Sector Card Custom Elements */
.sector-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26, 107, 245, 0.18) 0%, rgba(26, 107, 245, 0.08) 100%);
  border: 2px solid rgba(26, 107, 245, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--blue-light);
  margin-bottom: 2rem;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(26, 107, 245, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card:hover .sector-icon-wrapper {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 16px 40px rgba(26, 107, 245, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: var(--blue-light);
}
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2rem 0;
  flex-grow: 1;
  align-items: flex-start;
  align-content: flex-start;
}

.sector-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.85) 100%);
  color: #334155;
  border: 1.5px solid rgba(26, 107, 245, 0.12);
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  letter-spacing: 0.01em;
}

.card:hover .sector-tag {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, var(--white) 100%);
  border-color: rgba(26, 107, 245, 0.2);
  box-shadow: 0 4px 12px rgba(26, 107, 245, 0.1);
}

.sector-tag:hover {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%) !important;
  color: var(--white) !important;
  border-color: var(--blue) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 107, 245, 0.3) !important;
}
.sector-btn {
  transition: var(--transition);
  font-weight: 700;
  border-radius: 8px;
  padding: 14px 32px;
  height: 54px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  background: linear-gradient(135deg, rgba(26, 107, 245, 0.1) 0%, rgba(26, 107, 245, 0.05) 100%);
  border: 2px solid rgba(26, 107, 245, 0.25) !important;
  color: var(--blue) !important;
  box-shadow: 0 4px 12px rgba(26, 107, 245, 0.08);
}

.sector-btn:hover {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%) !important;
  color: var(--white) !important;
  border-color: var(--blue) !important;
  box-shadow: 0 12px 32px rgba(26, 107, 245, 0.35) !important;
  transform: translateY(-3px) !important;
}

.card:hover .sector-btn {
  background: linear-gradient(135deg, rgba(26, 107, 245, 0.15) 0%, rgba(26, 107, 245, 0.08) 100%);
  border-color: rgba(26, 107, 245, 0.35);
  box-shadow: 0 6px 16px rgba(26, 107, 245, 0.15);
}

/* Industries Grid Redesign (Reference Design Match) */
.new-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 2.5rem 0;
}
.new-industry-card {
  position: relative;
  overflow: hidden;
  height: 420px;
  border-radius: 24px;
  border: 2px solid rgba(26, 107, 245, 0.08);
  background: #040811;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.new-industry-card-img-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.new-industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.new-industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 8, 17, 0.95) 0%, rgba(4, 8, 17, 0.4) 45%, rgba(4, 8, 17, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.new-industry-content {
  width: 100%;
}
.new-industry-card h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
}
.new-industry-card p {
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.45;
  opacity: 0.85;
  transition: all 0.4s ease;
}
/* Hover styles matching the reference design */
.new-industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(26, 107, 245, 0.45);
  box-shadow: 0 20px 40px rgba(26, 107, 245, 0.12), 0 0 15px rgba(26, 107, 245, 0.08);
}
.new-industry-card:hover img {
  transform: scale(1.08);
}
.new-industry-card:hover .new-industry-overlay {
  background: linear-gradient(to top, rgba(26, 107, 245, 0.9) 0%, rgba(4, 8, 17, 0.6) 55%, rgba(4, 8, 17, 0) 100%);
}
.new-industry-card:hover p {
  color: var(--white);
  opacity: 1;
}

@media (max-width: 1024px) {
  .new-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .new-industry-card {
    height: 380px;
  }
}
@media (max-width: 640px) {
  .new-industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .new-industry-card {
    height: 350px;
  }
}

/* ==========================================================================
   Specific Sections
   ========================================================================== */
/* Stats Bar */
.stats-bar {
  background: linear-gradient(180deg, #08152E 0%, #07112B 50%, #050E25 100%);
  border-top: 1px solid rgba(26, 107, 245, 0.3);
  border-bottom: 1px solid rgba(26, 107, 245, 0.15);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 107, 245, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 0;
  position: relative;
}

.stat-item {
  padding: 40px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(26, 107, 245, 0.4) 20%,
    rgba(26, 107, 245, 0.4) 80%,
    transparent 100%
  );
}

.stat-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26, 107, 245, 0.15) 0%, rgba(26, 107, 245, 0.08) 100%);
  border: 1.5px solid rgba(26, 107, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue-light);
  margin-bottom: 1.8rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.stat-item:hover .stat-icon-box,
.glass-stat-item:hover .stat-icon-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 16px 40px rgba(26, 107, 245, 0.4);
  border-color: var(--blue-light);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  filter: none;
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 32px rgba(26, 107, 245, 0.25);
}

.stat-label {
  font-size: 0.87rem;
  color: rgba(200, 220, 240, 0.9);
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
}

/* About Strip Redesign */
.about-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: center;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(26, 107, 245, 0.1) 0%, rgba(26, 107, 245, 0.05) 100%);
  color: var(--blue);
  border: 1px solid rgba(26, 107, 245, 0.2);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.about-feature-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.7) 0%, rgba(241, 250, 255, 0.5) 100%);
  border: 1px solid rgba(26, 107, 245, 0.08);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  cursor: pointer;
}
.about-feature-card:hover {
  transform: translateX(12px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  border-color: rgba(26, 107, 245, 0.25);
  box-shadow: 0 12px 32px rgba(26, 107, 245, 0.12);
}

.about-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 107, 245, 0.12) 0%, rgba(26, 107, 245, 0.06) 100%);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(26, 107, 245, 0.15);
}

.about-feature-card:hover .about-feature-icon {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 8px 20px rgba(26, 107, 245, 0.3);
  border-color: var(--blue);
}
.about-feature-text h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 2px 0;
}
.about-feature-text p {
  font-size: 0.9rem;
  color: #64748B;
  margin: 0;
}
.about-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.about-learn-more i {
  transition: transform 0.3s ease;
}
.about-learn-more:hover {
  color: var(--blue-hover);
}
.about-learn-more:hover i {
  transform: translateX(6px);
}

.about-image-container {
  position: relative;
  padding-bottom: 20px;
  padding-right: 20px;
}
.about-image-container img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.about-image-container:hover img {
  transform: scale(1.01) translateY(-3px);
}
.about-stats-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--navy-mid);
  color: var(--white);
  border: 1.5px solid rgba(26, 107, 245, 0.25);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(26, 107, 245, 0.12);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 260px;
  z-index: 10;
  transform: translate(10px, -10px);
  transition: all 0.4s ease;
}
.about-stats-badge:hover {
  transform: translate(10px, -14px) scale(1.02);
}
.about-stats-badge i {
  font-size: 1.6rem;
  color: #3D84FF;
}
.about-stats-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}
.about-stats-lbl {
  font-size: 0.75rem;
  color: var(--grey-text-light);
  line-height: 1.2;
}
.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
}
.icon-row i {
  color: #3D84FF;
  font-size: 1.3rem;
  margin-top: 4px;
  filter: drop-shadow(0 0 4px rgba(61, 132, 255, 0.25));
}
.icon-row h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--white);
}
.icon-row p { margin: 0; font-size: 0.9rem; color: #CBD5E1; }

/* Fragrances & French Perfume Section Redesign */
.perfume-section {
  position: relative;
  background-color: #040811 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.perfume-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(26, 107, 245, 0.04) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.perfume-badge {
  display: inline-block;
  background-color: rgba(240, 90, 34, 0.08);
  color: #F05A22;
  border: 1px solid rgba(240, 90, 34, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.french-perfume-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(226, 232, 240, 0.9);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.french-perfume-badge::before {
  content: '🇫🇷';
  font-size: 1rem;
}
.french-perfume-badge:hover {
  border-color: rgba(26, 107, 245, 0.25);
  background-color: rgba(26, 107, 245, 0.06);
  box-shadow: 0 4px 20px rgba(26, 107, 245, 0.12);
  color: var(--white);
}
.fragrance-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 960px;
  margin: 2rem auto;
}
.fragrance-chip {
  background-color: rgba(26, 107, 245, 0.07);
  color: rgba(226, 232, 240, 0.85);
  border: 1px solid rgba(26, 107, 245, 0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fragrance-chip:hover {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 107, 245, 0.25), 0 0 10px rgba(26, 107, 245, 0.15);
}

.cta-banner {
  background:
    linear-gradient(135deg, rgba(0, 20, 50, 0.98) 0%, rgba(5, 18, 45, 0.98) 50%, rgba(10, 5, 30, 0.98) 100%);
  color: var(--white);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 190, 220, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(160, 80, 255, 0.10) 0%, transparent 55%),
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
  animation: cta-bg-shift 12s infinite alternate ease-in-out;
}
@keyframes cta-bg-shift {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 240, 0.6), rgba(160, 100, 255, 0.6), transparent);
  border-radius: 2px;
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; }
.cta-banner p { color: rgba(200, 220, 240, 0.85); position: relative; z-index: 1; }
.cta-banner > .container { position: relative; z-index: 1; }

/* Forms */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-bottom-color: var(--blue);
}
.form-label {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--grey-text-light);
  transition: var(--transition);
  pointer-events: none;
}
.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: -12px;
  font-size: 0.75rem;
  color: var(--blue);
}
textarea.form-control { resize: vertical; min-height: 100px; }

/* Filter Table */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-tab {
  background-color: rgba(15, 30, 58, 0.6);
  color: var(--grey-text-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab.active, .filter-tab:hover {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.table-wrapper {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(12, 21, 40, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.product-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.product-table th, .product-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.product-table th {
  background-color: rgba(26, 107, 245, 0.08);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
}
.product-table tr:hover { background-color: rgba(26, 107, 245, 0.04); }
.product-table td { color: var(--grey-text-light); }
.product-table td:nth-child(2) { font-weight: 600; color: var(--white); }
.table-btn {
  padding: 6px 12px;
  font-size: 0.85rem;
}

/* Footer */
.footer {
  background-color: var(--navy);
  color: var(--white);
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer h4 { color: var(--white); margin-bottom: 1.5rem; }
.footer p, .footer a { color: var(--grey-text-light); }
.footer ul li { margin-bottom: 0.8rem; }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--grey-text-light);
}
.footer-credit {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(203, 213, 225, 0.5);
  padding-top: 20px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-credit a {
  color: var(--blue);
  font-weight: 600;
}
.footer-credit a:hover {
  color: var(--blue-hover);
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: var(--white);
}
.social-icon:hover { background-color: var(--blue); }

/* Global Components */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  animation: pulse-ring 2s infinite;
}
.whatsapp-btn:hover { color: white; transform: scale(1.05); }

.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background-color: var(--navy);
  color: var(--blue);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background-color: var(--blue); color: var(--white); }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes kenburns {
  0% { transform: scale(1) translateX(0); }
  50% { transform: scale(1.10) translateX(-1%); }
  100% { transform: scale(1.18) translateX(1%); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-15px) translateX(-50%); }
  60% { transform: translateY(-7px) translateX(-50%); }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   About Page - Story and Process Timeline Redesign
   ========================================================================== */
.about-image-showcase {
  position: relative;
  width: 100%;
}
.about-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.5s ease;
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-image-showcase:hover .about-img-frame img {
  transform: scale(1.03);
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 8, 17, 0.15) 0%, transparent 100%);
  pointer-events: none;
}
.about-stats-floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border: 1px solid rgba(26, 107, 245, 0.1);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 15px 35px rgba(26, 107, 245, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
  transition: all 0.4s ease;
}
.about-image-showcase:hover .about-stats-floating {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 107, 245, 0.15);
}
.about-stats-floating i {
  font-size: 1.8rem;
  color: var(--blue);
}
.about-stats-floating div {
  display: flex;
  flex-direction: column;
}
.about-stats-floating strong {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}
.about-stats-floating span {
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-stats-floating {
    bottom: -10px;
    right: 0;
    padding: 12px 18px;
  }
  .about-stats-floating strong {
    font-size: 1rem;
  }
}

/* Process Timeline Cards Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 3rem 0;
}
.process-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  padding: 35px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--blue);
  opacity: 0.15;
  transition: all 0.3s ease;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(26, 107, 245, 0.06);
  border-color: rgba(26, 107, 245, 0.15);
}
.process-card:hover::before {
  opacity: 1;
}
.process-step-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(26, 107, 245, 0.08);
  font-family: var(--font-heading);
  transition: all 0.4s ease;
}
.process-card:hover .process-step-num {
  color: rgba(26, 107, 245, 0.18);
  transform: scale(1.1);
}
.process-card-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(26, 107, 245, 0.07);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(26, 107, 245, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.process-card:hover .process-card-icon-wrapper {
  background-color: var(--blue);
  color: var(--white);
  transform: scale(1.08) rotate(6deg);
  box-shadow: 0 8px 18px rgba(26, 107, 245, 0.18);
}
.process-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.process-card p {
  font-size: 0.88rem;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Alternating Rows (Industries Page)
   ========================================================================== */
.alternating-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.alternating-row:nth-child(even) {
  direction: rtl;
}
.alternating-row:nth-child(even) > * {
  direction: ltr;
}
.alternating-row img {
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.alternating-row ul {
  margin-top: 1rem;
}
.alternating-row ul li {
  color: var(--grey-text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}
.alternating-row ul li::before {
  content: '·';
  color: var(--blue);
  font-weight: bold;
  margin-right: 8px;
}

/* Clean Light-Themed Responsive Component Overrides */
.section-light .alternating-row ul li, .section-white .alternating-row ul li {
  color: #475569;
}
.section-light .alternating-row img, .section-white .alternating-row img {
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.section-light .process-icon, .section-white .process-icon {
  background-color: var(--white);
  border-color: #E2E8F0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.section-light .table-wrapper, .section-white .table-wrapper {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  backdrop-filter: none;
}
.section-light .product-table th, .section-white .product-table th {
  background-color: #F1F5F9;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid #E2E8F0;
}
.section-light .product-table td, .section-white .product-table td {
  color: #334155;
  border-bottom: 1px solid #F1F5F9;
}
.section-light .product-table tr:hover, .section-white .product-table tr:hover {
  background-color: #F8FAFC;
}
.section-light .filter-tab, .section-white .filter-tab {
  background-color: #F1F5F9;
  color: #475569;
  border-color: #E2E8F0;
}
.section-light .filter-tab.active, .section-white .filter-tab.active,
.section-light .filter-tab:hover, .section-white .filter-tab:hover {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-3, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid > * { grid-column: span 1 !important; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: 1fr; gap: 50px; }
  .about-image-container { max-width: 600px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right .btn, .nav-phone { display: none; }
  .mobile-menu-btn { display: block; }
  .grid-2, .grid-3, .products-grid, .industries-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(26, 107, 245, 0.15); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:nth-child(2n)::after { display: none; }
  .stat-icon-box { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 10px; }
  h1 { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .process-strip { flex-direction: column; align-items: center; gap: 30px; }
  .process-strip::before { display: none; }
  .alternating-row { grid-template-columns: 1fr; gap: 30px; }
  .alternating-row:nth-child(even) { direction: ltr; }
}

/* Hero Breadcrumbs & Subtitle Override */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-family: var(--font-body);
}
.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.hero-breadcrumb a:hover {
  color: var(--blue);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 1.2rem 0 0 0;
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-body);
}

/* ==========================================================================
   Ultra-Premium About Page Overrides
   ========================================================================== */

/* Overlapping Image Layout */
.about-showcase-grid {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.about-img-main {
  width: 78%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-showcase-grid:hover .about-img-main img {
  transform: scale(1.05);
}
.about-img-sub {
  position: absolute;
  bottom: 10px;
  right: 5%;
  width: 42%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 5;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
}
.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-showcase-grid:hover .about-img-sub {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

/* Floating Stats Badge */
.about-floating-pill {
  position: absolute;
  top: 10px;
  right: 12%;
  background: var(--white);
  border: 1px solid rgba(26, 107, 245, 0.1);
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(26, 107, 245, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 6;
  animation: floatBadge 3s ease-in-out infinite alternate;
}
.about-floating-pill i {
  color: var(--blue);
  font-size: 1.2rem;
  background: rgba(26, 107, 245, 0.07);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-floating-pill div {
  display: flex;
  flex-direction: column;
}
.about-floating-pill strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.about-floating-pill span {
  font-size: 0.75rem;
  color: #64748B;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Stats Card — About Page */
.glass-stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #07112B;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(26, 107, 245, 0.2);
  border-radius: 24px;
  padding: 40px 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(26, 107, 245, 0.06);
  margin-top: -20px;
  position: relative;
  z-index: 10;
}
.glass-stat-item {
  position: relative;
  text-align: center;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.glass-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(26, 107, 245, 0.3) 28%,
    rgba(26, 107, 245, 0.3) 72%,
    transparent 100%
  );
}
.glass-stat-item h3 {
  font-size: 3.2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 24px rgba(26, 107, 245, 0.2);
  margin-bottom: 0.45rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.glass-stat-item p {
  font-size: 0.82rem;
  color: rgba(160, 185, 218, 0.85);
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* Responsive — About Stats Card */
@media (max-width: 1024px) {
  .glass-stats-container {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    padding: 32px 8px;
  }
  /* In 2-col: hide ::after on even items (right column) */
  .glass-stat-item:nth-child(2n)::after { display: none; }
  /* Add row separator between top and bottom rows */
  .glass-stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(26, 107, 245, 0.14); }
  .glass-stat-item .stat-icon-box { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 1rem; }
  .glass-stat-item h3 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
  .about-showcase-grid {
    height: 380px;
    margin-top: 30px;
  }
  .about-img-main {
    width: 100%;
    height: 320px;
  }
  .about-img-sub {
    width: 50%;
    height: 160px;
    right: 0;
  }
  .about-floating-pill {
    right: 5%;
  }
}
@media (max-width: 480px) {
  .glass-stats-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 4px;
  }
  .glass-stat-item::after { display: none; }
  .glass-stat-item:nth-child(2n)::after { display: none; }
  .glass-stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(26, 107, 245, 0.14); }
  .glass-stat-item .stat-icon-box { width: 36px; height: 36px; font-size: 0.95rem; margin-bottom: 0.75rem; border-radius: 10px; }
  .glass-stat-item h3 { font-size: 2rem; }
  .glass-stat-item p { font-size: 0.75rem; }
}

/* ==========================================================================
   Interactive Industries Sector Hub Styles
   ========================================================================== */
.sector-tabs-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 4px;
  margin-bottom: 2rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.sector-tabs-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.sector-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.sector-tab i {
  font-size: 1.1rem;
  color: var(--blue);
  transition: transform 0.4s ease;
}
.sector-tab:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 107, 245, 0.2);
  box-shadow: 0 8px 20px rgba(26, 107, 245, 0.08);
}
.sector-tab:hover i {
  transform: scale(1.18);
}
.sector-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(26, 107, 245, 0.25);
}
.sector-tab.active i {
  color: var(--white);
}

/* Sector Panels */
.sector-panel {
  display: none;
}
.sector-panel.active {
  display: block;
  animation: panelFadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sector-panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.sector-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.2rem 0 1.5rem 0;
  line-height: 1.25;
}
.sector-text p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.sector-products-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sector-prod-tag {
  background: rgba(26, 107, 245, 0.04);
  border: 1px solid rgba(26, 107, 245, 0.12);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.sector-prod-tag:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(26, 107, 245, 0.15);
}

/* Sector Image Showcase */
.sector-image-showcase {
  position: relative;
  width: 100%;
}
.sector-img-frame {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.sector-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sector-image-showcase:hover .sector-img-frame img {
  transform: scale(1.06);
}
.sector-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(15, 30, 58, 0.15));
}
.sector-floating-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--white);
  border: 1px solid rgba(26, 107, 245, 0.08);
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
  transition: transform 0.4s ease;
}
.sector-floating-badge i {
  color: var(--blue);
  font-size: 1rem;
}
.sector-floating-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.sector-image-showcase:hover .sector-floating-badge {
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .sector-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sector-image-showcase {
    order: -1;
  }
}
@media (max-width: 768px) {
  .sector-floating-badge {
    left: 10px;
    bottom: 10px;
  }
  .sector-img-frame {
    height: 280px;
  }
}

/* ==========================================================================
   Even Better Premium Overrides for Industries Served Page
   ========================================================================== */

/* Centering tab track on desktop */
@media (min-width: 1025px) {
  .sector-tabs-container {
    justify-content: flex-start;
    padding: 15px 10px;
    background: rgba(15, 30, 58, 0.02);
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 1100px;
    margin: 0 auto 3rem auto;
  }
}

/* Enclosing sector panels inside beautiful soft cards */
.sector-panel {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 15px 45px rgba(15, 30, 58, 0.02);
  transition: all 0.4s ease;
}
.sector-panel:hover {
  box-shadow: 0 25px 60px rgba(15, 30, 58, 0.05);
  border-color: rgba(26, 107, 245, 0.08);
}

/* Search Box Premium Focus State */
.search-box input:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 15px 35px rgba(26, 107, 245, 0.12) !important;
  background: var(--white);
}

/* Gilded interactive tags with indicator dots */
.sector-prod-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 30, 58, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.sector-prod-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10B981; /* Green stock dot */
  border-radius: 50%;
  display: inline-block;
}
.sector-prod-tag.highlight-match {
  background: rgba(26, 107, 245, 0.1);
  border-color: var(--blue);
  color: var(--blue);
  animation: matchPulse 1.5s infinite alternate;
}

@keyframes matchPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(26, 107, 245, 0); }
  100% { transform: scale(1.05); box-shadow: 0 0 10px rgba(26, 107, 245, 0.2); }
}

@media (max-width: 768px) {
  .sector-panel {
    padding: 30px 20px;
    border-radius: 20px;
  }
}

/* ==========================================================================
   Industries Card Grid Layout
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.industry-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 30, 58, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 30, 58, 0.1);
  border-color: rgba(26, 107, 245, 0.12);
}

.card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 107, 245, 0.05), rgba(240, 90, 34, 0.05));
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.industry-card:hover .card-image img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--blue);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(26, 107, 245, 0.25);
  transition: all 0.35s ease;
}

.industry-card:hover .card-badge {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 30px rgba(26, 107, 245, 0.35);
}

.card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.card-content p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.card-tag {
  display: inline-block;
  background: rgba(26, 107, 245, 0.06);
  border: 1px solid rgba(26, 107, 245, 0.15);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-tag:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.card-badge-text {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(26, 107, 245, 0.04);
  border: 1px solid rgba(26, 107, 245, 0.1);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  width: fit-content;
}

.card-badge-text i {
  font-size: 1rem;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-content {
    padding: 24px;
  }

  .card-image {
    height: 160px;
  }

  .industry-card:hover {
    transform: translateY(-5px);
  }
}

/* ==========================================================================
   Ultra-Premium Contact Page Overrides
   ========================================================================== */

/* Choice Chips Container - Structured Responsive Grid */
.contact-chip-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 1.5rem 0;
}
@media (max-width: 991px) {
  .contact-chip-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .contact-chip-group {
    grid-template-columns: 1fr;
  }
}
.contact-chip {
  padding: 12px 14px;
  background: rgba(15, 30, 58, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 107, 245, 0.2);
  background: rgba(26, 107, 245, 0.03);
}
.contact-chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(26, 107, 245, 0.2);
}

/* Rounded map dashboard card */
.map-wrapper {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(15, 30, 58, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 480px;
}

/* Premium Form Group overrides */
.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 28px;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(15, 30, 58, 0.02);
  border-top: 4px solid var(--blue);
  transition: all 0.4s ease;
}
.contact-form-card:hover {
  box-shadow: 0 25px 60px rgba(15, 30, 58, 0.05);
}

/* Contact info hover elevations */
.contact-info-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 30, 58, 0.05);
  border-color: rgba(26, 107, 245, 0.1);
}

/* Category Badges for Product Portfolio Table */
.category-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-soap {
  background-color: rgba(26, 107, 245, 0.08);
  color: var(--blue);
}
.badge-water {
  background-color: rgba(16, 185, 129, 0.08);
  color: #10B981;
}
.badge-food {
  background-color: rgba(245, 158, 11, 0.08);
  color: #F59E0B;
}
.badge-beauty {
  background-color: rgba(236, 72, 153, 0.08);
  color: #EC4899;
}
.badge-paint {
  background-color: rgba(139, 92, 246, 0.08);
  color: #8B5CF6;
}

/* Search Result Count Badge */
.search-result-count {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 15px;
  background: rgba(26, 107, 245, 0.05);
  border: 1px solid rgba(26, 107, 245, 0.12);
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}

/* Contact Chip validation error styles */
.contact-chip-group.error .contact-chip {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.03) !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15) !important;
}

/* ==========================================================================
   Skip Link (Accessibility)
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* ==========================================================================
   Mobile Responsiveness — Enhanced
   ========================================================================== */

/* Tablet (769px–1024px) touch-ups */
@media (max-width: 1024px) {
  .about-strip { gap: 48px; }
  .cta-banner { padding: 88px 0; }
}

/* Touch tap-state feedback (all mobile) */
@media (hover: none) and (pointer: coarse) {
  .btn:active { opacity: 0.82; transform: scale(0.97); }
  .sector-tab:active { opacity: 0.8; }
  .filter-tab:active { opacity: 0.8; }
  .fragrance-chip:active { background-color: var(--blue); color: var(--white); }
  .contact-chip:active { background-color: var(--blue); color: var(--white); border-color: var(--blue); }
  .new-industry-card:active .new-industry-overlay {
    background: linear-gradient(to top, rgba(26, 107, 245, 0.85) 0%, rgba(4, 8, 17, 0.55) 55%, rgba(4, 8, 17, 0) 100%);
  }
  /* Disable hover lift-transforms on touch to prevent stuck states */
  .card:hover,
  .why-card:hover,
  .principle-card:hover,
  .process-card:hover,
  .about-feature-card:hover { transform: none; }
  .stat-item:hover .stat-icon-box,
  .glass-stat-item:hover .stat-icon-box { transform: none; box-shadow: none; }
}

/* Mobile (≤768px) — primary breakpoint */
@media (max-width: 768px) {
  /* Reduce vertical rhythm site-wide */
  :root { --section-padding: 52px; }

  /* Override hardcoded inline grid-template-columns on form rows */
  .grid-2 { grid-template-columns: 1fr !important; }

  /* Headings */
  h2 { font-size: clamp(1.65rem, 5vw, 2.1rem); }
  .page-hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1.05rem; }

  /* Hero */
  .hero-title { font-size: clamp(1.95rem, 6.5vw, 2.6rem) !important; }
  .hero-subline { font-size: 1rem; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-trust span { width: 100%; }

  /* Stats bar */
  .stats-bar { padding: 36px 0; }
  .stat-number { font-size: 2.6rem; }

  /* CTA banner */
  .cta-banner { padding: 68px 0; }

  /* Cards */
  .why-card { padding: 26px 20px; }
  .principle-card { padding: 26px 20px; }

  /* About */
  .about-strip { gap: 36px; }
  .about-feature-card { padding: 14px 14px; }
  .about-stats-badge { max-width: 220px; padding: 12px 14px; }

  /* Contact form card */
  .contact-form-card { padding: 28px 20px; border-radius: 20px; }

  /* Map */
  .map-wrapper { height: 300px; border-radius: 20px; }

  /* Product table */
  .product-table th,
  .product-table td { padding: 12px 10px; font-size: 0.9rem; }

  /* Footer */
  .footer { padding: 56px 0 28px; }

  /* Floating buttons — tighter positioning */
  .whatsapp-btn { right: 14px; bottom: 16px; width: 50px; height: 50px; font-size: 24px; }
  .scroll-top  { right: 14px; bottom: 76px; }

  /* Navbar pill on mobile */
  .navbar.scrolled .container { max-width: calc(100% - 24px); margin: 0 auto; border-radius: 12px; padding: 8px 16px; }

  /* Sector panel */
  .sector-panel { padding: 28px 18px; border-radius: 18px; }

  /* Contact info cards on contact page — stack icon+text tighter */
  .contact-info-card { gap: 14px !important; }
}

/* Small phones (≤480px) — tightest breakpoint */
@media (max-width: 480px) {
  :root { --section-padding: 40px; }

  /* Tighten container edge padding */
  .container { padding: 0 16px; }

  /* Headings */
  h2 { font-size: 1.6rem; }
  .hero-title { font-size: 1.85rem !important; line-height: 1.2 !important; }
  .hero-subline { font-size: 0.95rem; }
  .page-hero h1 { font-size: 1.75rem; }
  .hero-subtitle { font-size: 0.95rem; }

  /* Hero */
  .hero { padding: 100px 0 52px; }

  /* Stats */
  .stats-bar { padding: 24px 0; }
  .stat-number { font-size: 2.1rem; }
  .stat-icon-box { width: 38px; height: 38px; font-size: 1rem; margin-bottom: 0.85rem; border-radius: 10px; }

  /* CTA */
  .cta-banner { padding: 52px 0; }

  /* Contact form */
  .contact-form-card { padding: 20px 14px; }

  /* Map */
  .map-wrapper { height: 250px; }

  /* Product table — hide the category badge column; filter tabs already convey it */
  .product-table th:nth-child(3),
  .product-table td:nth-child(3) { display: none; }
  .product-table th,
  .product-table td { padding: 10px 8px; font-size: 0.82rem; }
  .table-btn { padding: 5px 10px; font-size: 0.78rem; }

  /* Industries image cards */
  .new-industry-card { height: 260px; }

  /* Cards */
  .why-card,
  .principle-card { padding: 22px 16px; }

  /* About showcase — simplify layout for very small screens */
  .about-showcase-grid {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .about-img-main { width: 100%; height: 220px; position: static; border-radius: 16px; }
  .about-img-sub { display: none; }
  .about-floating-pill {
    position: static;
    margin: 0;
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    animation: none;
    transform: none;
  }

  /* Footer */
  .footer { padding: 44px 0 20px; }

  /* Sector panel */
  .sector-panel { padding: 22px 14px; }
}

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

  .hero-bg {
    animation: none;
  }
  .hero-glow-1,
  .hero-glow-2,
  .hero-glow-3 {
    animation: none;
  }
  .hero-molecule {
    animation: none;
  }
  .about-floating-pill {
    animation: none;
  }
  .whatsapp-btn {
    animation: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  .scroll-indicator {
    animation: none;
  }
}
