/* ==========================================================================
   NIYAT NEXUS - MASTER DESIGN SYSTEM
   Palette inspired by Orenme (Mineral Stone, Crisp White & Deep Forest Teal)
   Strictly High Contrast, Modern, Professional, and Responsive
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-base: #F6F9F8;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-subtle: #EDF3F1;
  --bg-mint-glow: #E0EFEA;
  
  --dark-hero: #052621;
  --dark-surface: #0A352F;
  --dark-card: #0F433C;
  --dark-border: rgba(255, 255, 255, 0.12);

  --text-primary: #102420;
  --text-secondary: #364F4A;
  --text-muted: #5C7570;
  --text-light: #FFFFFF;
  --text-light-sub: #D0E4E0;

  --accent-teal: #0D796B;
  --accent-teal-hover: #095C51;
  --accent-mint: #20B29A;
  --accent-copper: #D97736;
  --accent-copper-hover: #BF6225;
  --accent-gold: #E5A93C;

  --border-light: rgba(13, 121, 107, 0.12);
  --border-strong: rgba(13, 121, 107, 0.22);
  --border-subtle: rgba(0, 0, 0, 0.07);

  --shadow-sm: 0 2px 8px rgba(10, 45, 40, 0.04);
  --shadow-md: 0 10px 25px -4px rgba(10, 45, 40, 0.07), 0 4px 10px -2px rgba(10, 45, 40, 0.03);
  --shadow-lg: 0 20px 40px -8px rgba(10, 45, 40, 0.10), 0 8px 16px -4px rgba(10, 45, 40, 0.04);
  --shadow-hover: 0 24px 48px -10px rgba(13, 121, 107, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Typography */
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'DM Mono', monospace;

  --container-max: 1240px;
  --header-height: 80px;
  --scroll-progress: 0;
}

/* Base Reset & Smooth Scroll */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-base);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow-x: clip;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: transparent;
  z-index: 1000;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: calc(var(--scroll-progress) * 100%);
  background: linear-gradient(90deg, var(--accent-mint), var(--accent-teal), var(--accent-copper));
  transition: width 0.08s linear;
}

/* Site Container */
.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main, section, footer {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.section-pad {
  padding-top: 96px;
  padding-bottom: 96px;
}

@media (max-width: 768px) {
  .section-pad {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ==========================================================================
   NAVIGATION BAR (Floating Pill / Glassmorphism)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(var(--container-max) + 40px);
  margin: 0 auto;
  padding: 10px 18px 10px 24px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(13, 121, 107, 0.16);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(10, 45, 40, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

@media (max-width: 1320px) {
  .site-header {
    margin: 0 20px;
  }
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--dark-hero), var(--accent-teal));
  padding: 7px;
  box-shadow: 0 4px 12px rgba(13, 121, 107, 0.25);
  fill: #FFFFFF;
  flex-shrink: 0;
}

.brand span {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 1.15rem;
}
.brand span b {
  font-weight: 800;
  color: var(--dark-hero);
  letter-spacing: 1px;
}
.brand span em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-teal);
  letter-spacing: 0.5px;
}

.site-header .brand::after {
  content: 'Vadodara, Gujarat, India';
  margin-left: 4px;
  padding-left: 14px;
  border-left: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 1140px) {
  .site-header .brand::after {
    display: none;
  }
}

/* Nav Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 9px 18px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.main-nav a:hover {
  color: var(--dark-hero);
  background: var(--bg-subtle);
}

.main-nav a.active {
  color: var(--dark-hero);
  background: var(--bg-mint-glow);
  font-weight: 700;
}

.main-nav .nav-cta {
  background: var(--dark-hero);
  color: #FFFFFF !important;
  padding: 10px 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  box-shadow: 0 4px 14px rgba(5, 38, 33, 0.25);
}

.main-nav .nav-cta:hover {
  background: var(--accent-teal);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13, 121, 107, 0.35);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--dark-hero);
  border-radius: 2px;
  margin: 5px auto;
  transition: all 0.3s ease;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    gap: 12px;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 20px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
  }

  .main-nav .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    justify-content: center;
  }
}

/* ==========================================================================
   BUTTONS & TYPOGRAPHY STYLING
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.button-copper {
  background: linear-gradient(135deg, var(--accent-copper), #E08240);
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(217, 119, 54, 0.3);
}

.button-copper:hover {
  background: linear-gradient(135deg, var(--accent-copper-hover), var(--accent-copper));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 54, 0.4);
}

.button-teal {
  background: linear-gradient(135deg, var(--dark-hero), var(--accent-teal));
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(13, 121, 107, 0.25);
}

.button-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 121, 107, 0.35);
}

.button-outline {
  background: transparent;
  color: var(--dark-hero);
  border: 1.5px solid var(--border-strong);
}

.button-outline:hover {
  background: var(--bg-subtle);
  border-color: var(--dark-hero);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--accent-teal);
  margin-bottom: 16px;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-teal);
  display: inline-block;
}

.eyebrow.light {
  color: var(--accent-mint);
}
.eyebrow.light i {
  background-color: var(--accent-mint);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-teal);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label span {
  padding: 4px 10px;
  background: var(--bg-mint-glow);
  color: var(--dark-hero);
  border-radius: var(--radius-sm);
}

.section-label.light {
  color: var(--accent-mint);
}
.section-label.light span {
  background: rgba(32, 178, 154, 0.2);
  color: #FFFFFF;
}

/* ==========================================================================
   HOMEPAGE HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  background: linear-gradient(175deg, #04211D 0%, #07352F 50%, #0D4E45 100%);
  color: #FFFFFF;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/niyat-nexus-logistics-hero.png');
  background-size: cover;
  background-position: center right;
  opacity: 0.32;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(32, 178, 154, 0.18), transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(217, 119, 54, 0.14), transparent 45%);
  pointer-events: none;
}

.hero-grid-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-copy {
  max-width: 660px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent-mint);
  margin-bottom: 24px;
}

.hero-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-mint);
  box-shadow: 0 0 10px var(--accent-mint);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: #92E8DB;
}

.hero-text {
  font-size: 1.16rem;
  line-height: 1.65;
  color: var(--text-light-sub);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 44px;
}

.hero-actions .text-link {
  color: #FFFFFF;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-actions .text-link:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item b {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-item b span {
  color: var(--accent-copper);
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text-light-sub);
  line-height: 1.35;
}

/* Hero Right Visual Card */
.hero-visual {
  position: relative;
}

.hero-card-frame {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-card-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hero-card-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 18px 22px;
  background: rgba(5, 38, 33, 0.90);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #FFFFFF;
}

.hero-card-overlay span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-mint);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-card-overlay h4 {
  font-size: 1.08rem;
  margin: 4px 0 2px;
  font-weight: 700;
}

.hero-card-overlay p {
  font-size: 0.84rem;
  color: var(--text-light-sub);
}

@media (max-width: 960px) {
  .hero-grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-card-img {
    height: 280px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   ABOUT / STORY PREVIEW SECTION (Clear positioning, high contrast)
   ========================================================================== */
.about-preview {
  background-color: var(--bg-base);
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.intro-statement h2 {
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
}

.intro-statement h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-teal);
}

.intro-copy .lead {
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--dark-hero);
  line-height: 1.55;
  margin-bottom: 16px;
}

.intro-copy p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.intro-copy .text-link {
  font-weight: 700;
  color: var(--accent-teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.intro-copy .text-link:hover {
  color: var(--dark-hero);
  transform: translateX(4px);
}

/* Principles Grid */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.principles article {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.principles article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-teal);
}

.principles article span {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-teal);
  display: inline-block;
  padding: 3px 10px;
  background: var(--bg-mint-glow);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.principles article h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.principles article p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 840px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .principles {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PRODUCTS SECTION (Pharma, Chemical, Thinner, Food Products)
   ========================================================================== */
.products-section {
  background: #FFFFFF;
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
}

.section-head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-teal);
}

.section-head p.head-subtitle {
  max-width: 480px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 4-Pillar Product Showcase Grid */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-teal);
}

.product-thumb-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--dark-hero);
}

.product-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-thumb-electric {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(32, 178, 154, 0.35), transparent 30%),
    linear-gradient(135deg, #052621, #0D796B);
}

.product-thumb-electric::before,
.product-thumb-electric::after {
  content: '';
  position: absolute;
  width: 180%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(-28deg);
}

.product-thumb-electric::after {
  transform: rotate(28deg);
}

.product-thumb-electric svg {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  fill: #92E8DB;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22));
}

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

.product-badge-index {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(5, 38, 33, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.product-content {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-teal);
  font-weight: 700;
  margin-bottom: 6px;
}

.product-content h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.product-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-options-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.product-options-list li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 9px;
  background: var(--bg-subtle);
  color: var(--dark-hero);
  border-radius: var(--radius-sm);
}

.product-inquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-subtle);
  color: var(--dark-hero);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.product-inquire-btn span {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.product-card:hover .product-inquire-btn {
  background: var(--dark-hero);
  color: #FFFFFF;
}

.product-card:hover .product-inquire-btn span {
  transform: translate(2px, -2px);
}

@media (max-width: 1080px) {
  .product-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SERVICES SECTION (7 Core Verticals)
   ========================================================================== */
.services-section {
  background-color: var(--bg-base);
  position: relative;
}

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

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-teal);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-teal);
  padding: 4px 10px;
  background: var(--bg-mint-glow);
  border-radius: var(--radius-sm);
  align-self: flex-start;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .services-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-list-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HOW WE WORK / PROCESS SECTION (Dark Pine Luxury Visual)
   ========================================================================== */
.process-section {
  background: linear-gradient(175deg, #052621 0%, #083730 60%, #0A433B 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/quality.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.process-steps-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.step-node {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.step-node:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-mint);
  transform: translateY(-4px);
}

.step-node-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-mint);
  margin-bottom: 12px;
}

.step-node h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 8px;
}

.step-node p {
  font-size: 0.82rem;
  color: var(--text-light-sub);
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .process-steps-track {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .process-steps-track {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CLIENT MARQUEE TICKER (COMPACT, FAST, SEAMLESS, GORGEOUS)
   ========================================================================== */
.clients-section {
  background: #FFFFFF;
  padding-top: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.clients-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.clients-header h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-teal);
}

.clients-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Marquee Container */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  padding: 10px 0;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
  gap: 20px;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

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

.client-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.client-badge:hover {
  background: var(--bg-mint-glow);
  border-color: var(--accent-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 121, 107, 0.12);
}

.client-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark-hero);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-mono);
}

.client-badge-text {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}

/* ==========================================================================
   CONTACT / RFQ SECTION & FORMS (WCAG AAA Contrast Guaranteed)
   ========================================================================== */
.contact-section {
  background-color: var(--bg-base);
  position: relative;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-page-stack {
  grid-template-columns: minmax(0, 1fr);
  max-width: 880px;
  margin: 0 auto;
  gap: 28px;
}

.contact-page-stack .contact-info-card {
  padding: 36px 40px;
}

.contact-page-stack .rfq-form-card {
  padding: 40px;
}

.contact-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 18px;
}

.contact-info-card h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-teal);
}

.contact-info-card p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.office-box {
  background: var(--bg-subtle);
  border-left: 4px solid var(--accent-teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.office-box b {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
  color: var(--accent-teal);
  margin-bottom: 6px;
}

.office-box strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.office-box address {
  font-style: normal;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.55;
}

.assurance-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-teal);
}

.assurance-pill span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-mint-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* RFQ Form (Crystal-Clear Contrast) */
.rfq-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  font-size: 0.95rem;
  color: var(--text-primary);
  background-color: var(--bg-base);
  border: 1.5px solid rgba(13, 121, 107, 0.2);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7D9490;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 4px rgba(13, 121, 107, 0.12);
}

.rfq-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.form-status-msg {
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  min-height: 24px;
}
.form-status-msg.success {
  color: #0A6B56;
}

/* Certificates and Gujarat sourcing consultancy */
.certification-section {
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.certificate-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.certificate-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-mint-glow);
  color: var(--accent-teal);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
}

.certificate-card h3 {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.35;
}

.certificate-card a {
  margin-top: auto;
  color: var(--accent-teal);
  font-size: 0.9rem;
  font-weight: 800;
}

.certificate-card a:hover {
  color: var(--dark-hero);
}

.gujarat-consulting {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: 32px;
  align-items: center;
  padding: 48px;
  margin-top: 80px;
  background: linear-gradient(135deg, var(--dark-hero), #0D5C54);
  border-radius: var(--radius-xl);
  color: #FFFFFF;
}

.gujarat-consulting::after {
  content: 'GJ';
  position: absolute;
  right: 30px;
  bottom: -54px;
  color: rgba(255, 255, 255, 0.07);
  font-family: var(--font-display);
  font-size: 13rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.gujarat-consulting h2 {
  position: relative;
  z-index: 1;
  margin: 10px 0 14px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.gujarat-consulting h2 em {
  color: #92E8DB;
  font-family: var(--font-display);
  font-weight: 500;
}

.gujarat-consulting p {
  position: relative;
  z-index: 1;
  color: var(--text-light-sub);
  font-size: 1.04rem;
  line-height: 1.65;
}

.gujarat-consulting .button {
  position: relative;
  z-index: 1;
  justify-self: start;
}

/* Persistent direct-enquiry shortcut */
.whatsapp-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px 13px 14px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(10, 45, 40, 0.24);
  font-size: 0.9rem;
  font-weight: 800;
}

.whatsapp-float:hover {
  background: #1DB954;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 860px) {
  .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .rfq-form-card, .contact-info-card {
    padding: 28px 20px;
  }
}

@media (max-width: 600px) {
  .contact-page-stack .contact-info-card,
  .contact-page-stack .rfq-form-card {
    padding: 28px 22px;
  }
}

@media (max-width: 1100px) {
  .certificate-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  html {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar {
    display: none;
  }

  .site-header {
    left: 20px;
    right: auto;
    width: calc(100% - 40px);
    max-width: none;
    margin: 0;
  }

  .container {
    min-width: 0;
  }

  .hero, .inner-page-hero, .products-section, .services-section, .contact-section {
    width: 100%;
    max-width: 100%;
  }

  .product-detail-row {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;
    margin-bottom: 56px !important;
    padding-bottom: 56px !important;
  }

  .product-detail-row > div {
    order: initial !important;
    min-width: 0;
  }

  .product-detail-row img {
    height: 280px !important;
  }

  .gujarat-consulting {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 28px;
    margin-top: 56px;
  }

  .certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .site-header {
    top: 14px;
    left: 14px;
    width: calc(100% - 28px);
    padding: 9px 12px 9px 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    padding: 6px;
  }

  .brand span {
    font-size: 1rem;
    gap: 4px;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 13px;
  }

  .whatsapp-float span {
    display: none;
  }
}

/* ==========================================================================
   GLOBAL FOOTER (Registered Address & Company Info on every page)
   ========================================================================== */
.site-footer {
  background: var(--dark-hero);
  color: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-brand p {
  color: var(--text-light-sub);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h5::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-mint);
  margin-top: 6px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-light-sub);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-address-block {
  color: var(--text-light-sub);
  font-size: 0.92rem;
  line-height: 1.6;
  font-style: normal;
}

.footer-address-block b {
  color: #FFFFFF;
  font-size: 1rem;
  display: block;
  margin-bottom: 6px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--text-light-sub);
}
.footer-bottom a:hover {
  color: #FFFFFF;
}

@media (max-width: 960px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 540px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   DEDICATED INNER PAGE HEROES & CALL TO ACTIONS
   ========================================================================== */
.inner-page-hero {
  position: relative;
  background: linear-gradient(175deg, #052621 0%, #083730 60%, #0D4E45 100%);
  color: #FFFFFF;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 70px;
  overflow: hidden;
}

.inner-page-hero .hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.inner-hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.inner-hero-content h1 {
  font-size: clamp(2.6rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.inner-hero-content h1 em {
  font-family: var(--font-display);
  font-style: italic;
  color: #92E8DB;
}

.inner-hero-content p.lead {
  font-size: 1.18rem;
  color: var(--text-light-sub);
  line-height: 1.6;
}

/* Pre-footer Call to Action */
.page-cta-banner {
  background: linear-gradient(135deg, var(--dark-hero), #0D5C54);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: -40px;
  z-index: 10;
}

.page-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 178, 154, 0.2), transparent 70%);
  pointer-events: none;
}

.page-cta-banner h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
}
.page-cta-banner h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: #92E8DB;
}

@media (max-width: 768px) {
  .page-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
    margin-bottom: -20px;
  }
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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