/* ══════════════════════════════════════════════
   SUDHANSHU ASSOCIATES — style.css
   Light Industrial Theme | Premium Design
   ══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --gold:       #C8922A;
  --gold-light: #E8B84B;
  --gold-pale:  #FBF0DC;
  --navy:       #0D1B2A;
  --navy-mid:   #1A2F44;
  --steel:      #3A5F7D;
  --steel-light:#5A8FA8;
  --white:      #FFFFFF;
  --off-white:  #F8F6F2;
  --light-gray: #F0EDE8;
  --mid-gray:   #9CA3AF;
  --dark-text:  #1A1A2E;
  --body-text:  #374151;
  --accent-red: #D4482A;

 --font-display: 'Oswald', sans-serif;
--font-body: 'Poppins', sans-serif;
  --font-serif:   'Playfair Display', serif;

  --shadow-sm:  0 2px 8px rgba(13,27,42,.08);
  --shadow-md:  0 8px 32px rgba(13,27,42,.12);
  --shadow-lg:  0 20px 60px rgba(13,27,42,.18);
  --shadow-xl:  0 32px 80px rgba(13,27,42,.24);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-xl: 60px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(.4,0,.2,1);
  --transition-slow: all 0.6s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
   font-family: 'Sora', sans-serif;
  background: var(--white);
  color: var(--body-text);
  overflow-x: hidden;
  line-height: 1.6;
}
body.splash-active { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hide-sm { display: initial; }
@media(max-width:768px){ .hide-sm { display: none; } }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;

  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}


#navbar.scrolled {
  height: 60px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,146,42,.12);
  box-shadow: 0 8px 32px rgba(13,27,42,.12);
}

/* Default transparent navbar text */
#navbar .nav-brand {
  color: var(--white);
  font-size: 1.1rem;/* 🔥 increase */
  font-weight: 700;
}

#navbar .nav-brand-sub {
  color: var(--gold-light);
   font-size: 0.9rem;   /* 🔥 increase */
  letter-spacing: 2px;
}

#navbar .nav-link {
  color: rgba(255,255,255,.9);
    font-size: 1.1rem;   /* 🔥 increase */
  font-weight: 500;
  padding: 12px 18px;
}

#navbar .hamburger span {
  background: var(--white);
}

#navbar .nav-cta {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}

#navbar .nav-link:hover,
#navbar .nav-link.active {
  color: var(--gold-light);
  background: rgba(255,255,255,.08);
}

/* Scrolled navbar text */
#navbar.scrolled .nav-brand {
  color: var(--navy);
}

#navbar.scrolled .nav-brand-sub {
  color: var(--gold);
}

#navbar.scrolled .nav-link {
  color: var(--body-text);
}

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
  color: var(--gold);
  background: var(--gold-pale);
}

#navbar.scrolled .hamburger span {
  background: var(--navy);
}

#navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  border: none;
  box-shadow: 0 4px 16px rgba(13,27,42,.25);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo-emblem {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg,var(--navy),var(--steel));
  color: var(--gold);    font-family: 'Sora', sans-serif;
 font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(13,27,42,.3);
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-emblem { transform: rotate(15deg) scale(1.1); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand {    font-family: 'Sora', sans-serif;
 font-size: 1.2rem; letter-spacing: 2px; color: var(--navy); }
.nav-brand-sub { font-size: .62rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); }

/* Links */
.nav-links { display: flex; gap: 4px; }
.nav-link {
  padding: 8px 16px; font-size: .88rem; font-weight: 500;
  color: var(--body-text); border-radius: var(--radius-full);
  transition: var(--transition); letter-spacing: .5px;
  position: relative;
}
.nav-link::after {
  content:''; position: absolute; bottom:4px; left:50%; right:50%;
  height:2px; background: var(--gold); border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: var(--gold-pale);
}
.nav-link:hover::after, .nav-link.active::after { left:16px; right:16px; }

/* CTA */
.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  border-radius: var(--radius-full);
  font-size: .88rem; font-weight: 600; letter-spacing: .5px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(13,27,42,.25);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,27,42,.35); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1){ transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: var(--white); padding: 20px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-120%); opacity: 0;
  transition: var(--transition);
  border-bottom: 2px solid var(--gold);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block; padding: 12px 20px;
  font-size: 1rem; font-weight: 500; color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--gold-pale); color: var(--gold); }

@media(max-width: 900px){
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar { padding: 0 20px; }
}

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.72),
    rgba(13, 27, 42, 0.45),
    rgba(26, 47, 68, 0.65)
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding: 120px 40px 80px;
  margin-left: max(40px, calc((100vw - 1200px)/2));
}
@media(max-width:768px){ .hero-content{ padding: 110px 24px 80px; margin: 0; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,146,42,.15);
  border: 1px solid rgba(200,146,42,.3);
  padding: 8px 18px; border-radius: var(--radius-full);
  color: var(--gold-light); font-size: .82rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeSlideUp .8s ease .1s both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-light);
  animation: pulseScale 2s ease infinite;
}

.hero-heading {
   font-family: 'Sora', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-line-1 { display: block; animation: slideInLeft .8s ease .2s both; }
.hero-line-2 {
  display: block; color: var(--gold);
  animation: slideInLeft .8s ease .35s both;
}
.hero-line-3 { display: block; animation: slideInLeft .8s ease .5s both; }

@keyframes slideInLeft {
  from { opacity:0; transform: translateX(-60px); }
  to   { opacity:1; transform: translateX(0); }
}

.hero-desc {
  color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 40px; max-width: 560px;
  animation: fadeSlideUp .8s ease .6s both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeSlideUp .8s ease .75s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: .95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 28px rgba(200,146,42,.4);
  transition: var(--transition);
}
.btn-primary svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(200,146,42,.55); }

.btn-outline {
  display: inline-flex; align-items: center;
  padding: 16px 32px;
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white); font-weight: 500; font-size: .95rem;
  border-radius: var(--radius-full); transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,146,42,.1); }


/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-size: .72rem; letter-spacing: 2px;
  text-transform: uppercase; z-index: 2;
}
.scroll-dot {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 14px; position: relative;
}
.scroll-dot::after {
  content:''; position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--gold-light);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100%{ top:8px; opacity:1; }
  50%{ top:22px; opacity:.4; }
}

/* ══════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(90deg, var(--navy), var(--navy-mid), var(--navy));
  padding: 16px 0; overflow: hidden; position: relative; z-index: 3;
}
.marquee-inner {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-size: .82rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.85);
}
.marquee-inner .sep { color: var(--gold); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.about-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at top right, rgba(200,146,42,.08), transparent 28%),
    linear-gradient(180deg, #f8f6f2 0%, #ffffff 100%);
  overflow: hidden;
}

.about-modern-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-modern-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

/* Left side */
.about-modern-left {
  position: relative;
}

.about-image-card {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(rgba(8,18,30,.58), rgba(8,18,30,.72)),
    url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  box-shadow: 0 30px 80px rgba(13,27,42,.18);
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: flex-end;
  padding: 34px;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(200,146,42,.10), transparent 40%),
    linear-gradient(to top, rgba(13,27,42,.55), transparent 45%);
  pointer-events: none;
}

.about-image-content {
  position: relative;
  z-index: 2;
  max-width: 380px;
}

.about-mini-title {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.about-image-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
}

.about-image-content p {
  color: rgba(255,255,255,.78);
  font-size: .98rem;
  line-height: 1.8;
}

.about-badge {
  position: absolute;
  z-index: 2;
  padding: 12px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(13,27,42,.14);
}

.about-badge-top {
  top: 22px;
  left: 22px;
}

.about-badge-bottom {
  right: 22px;
  bottom: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

/* Right side */
.about-modern-right .section-heading {
  margin-bottom: 22px;
}

.about-modern-right .about-body {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
  color: var(--body-text);
}

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

@media (max-width: 560px) {
  .about-highlight-grid {
    grid-template-columns: 1fr;
  }
}

.about-highlight-card {
  background: var(--white);
  border: 1px solid rgba(200,146,42,.14);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 12px 30px rgba(13,27,42,.06);
  transition: var(--transition);
}

.about-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(13,27,42,.10);
}

.ah-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.ah-label {
  display: block;
  color: var(--mid-gray);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
}

/* Bottom feature row */
.about-feature-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 992px) {
  .about-feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .about-feature-row {
    grid-template-columns: 1fr;
  }
}

.about-feature-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 22px;
  padding: 22px 20px;
  border: 1px solid rgba(200,146,42,.12);
  box-shadow: 0 10px 28px rgba(13,27,42,.05);
  transition: var(--transition);
}

.about-feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(13,27,42,.08);
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

.about-feature-box h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 700;
}

.about-feature-box p {
  font-size: .88rem;
  color: var(--mid-gray);
  line-height: 1.7;
}
/* ══════════════════════════════════════════════
   PRODUCTS SECTION — Zigzag
══════════════════════════════════════════════ */
.products-section {
  padding: 60px 0 80px;
    background: var(--white);
  overflow: visible;
}
/* =========================
   SECTION HEADER PREMIUM
========================= */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
   font-size: 2.5rem; 
}

/* Eyebrow */
.section-header .section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(200,146,42,.10);
  border: 1px solid rgba(200,146,42,.18);
  color: var(--gold);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  animation: headerFadeUp .8s ease both;
}

.section-header .section-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(200,146,42,.6);
}

.section-header .section-eyebrow::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  animation: eyebrowShine 3.2s linear infinite;
}

/* Heading */
.section-header .section-heading {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 18px;
  position: relative;
  animation: headerFadeUp .9s ease .12s both;
}

.section-header .section-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #f2c76a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

/* Animated underline */
.section-header .section-heading::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--steel-light));
  background-size: 200% 100%;
  animation: lineMove 3s linear infinite;
  box-shadow: 0 6px 18px rgba(200,146,42,.22);
}

/* Subtext */
.section-header .section-sub {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mid-gray);
  animation: headerFadeUp 1s ease .22s both;
}

/* Hover interactive color feel */
.section-header:hover .section-heading {
  color: #10253b;
}

.section-header:hover .section-sub {
  color: var(--body-text);
}

.section-header:hover .section-heading::after {
  width: 190px;
  transition: width .45s ease;
}

.section-header:hover .section-eyebrow {
  background: rgba(200,146,42,.14);
  border-color: rgba(200,146,42,.28);
  box-shadow: 0 10px 24px rgba(200,146,42,.10);
  transition: all .35s ease;
}

/* Optional glow behind header */
.section-header::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,.08), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Animations */
@keyframes headerFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes eyebrowShine {
  100% {
    transform: translateX(120%);
  }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes lineMove {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}



























/* IMAGE FULL COVER */
.psc-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  z-index: 1;
}

/* Hover zoom effect */
.product-stack-card:hover .psc-image {
  transform: scale(1.08);
}

/* Overlay for readability */
.psc-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(13,27,42,0.6),
    rgba(13,27,42,0.2),
    transparent
  );
}

/* Badge above image */
.psc-badge {
  z-index: 3;
}



















.products-shell {
  width: 100%;
  max-width: 100%;
  padding: 0 28px;
}
.products-shell {
  width: 100%;
  max-width: 100%;
  padding: 0 28px;
}
.stack-products {
  margin-top: 70px;
  position: relative;
}

/* FULL WIDTH CARD */
.product-stack-card {
  position: sticky;
  top: 110px;
  width: 100%;
  min-height: 500px;
  display: grid;
  grid-template-columns: 42% 58%;
  margin-bottom: 34px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(200,146,42,.12);
  box-shadow: 0 24px 70px rgba(13,27,42,.12);
}

/* FULL WIDTH CARD */
.product-stack-card {
  position: sticky;
  top: 110px;
  width: 100%;
  min-height: 500px;
  display: grid;
  grid-template-columns: 42% 58%;
  margin-bottom: 34px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(200,146,42,.12);
  box-shadow: 0 24px 70px rgba(13,27,42,.12);
}


/* Left media side */
.psc-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.psc-image {
  width: 80%;   /* size कमी */
  height: 80%;
  object-fit: contain; /* full crop नको */
  position: relative;
}

.psc-welding  { background: linear-gradient(135deg,#0D1B2A,#1A3A5C); }
.psc-ndt      { background: linear-gradient(135deg,#16251B,#294733); }
.psc-safety   { background: linear-gradient(135deg,#2B190B,#694114); }
.psc-abrasive { background: linear-gradient(135deg,#2A1020,#4F1D3C); }
.psc-tools    { background: linear-gradient(135deg,#0D1A2C,#213B67); }

.psc-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(200,146,42,.25), transparent 45%),
    linear-gradient(to bottom right, rgba(255,255,255,.04), transparent 55%);
}

.psc-media::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 70%);
}

.psc-icon {
  position: relative;
  z-index: 2;
  font-size: clamp(4rem, 8vw, 6rem);
  filter: drop-shadow(0 0 28px rgba(200,146,42,.35));
}

.psc-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

/* Right content */
.psc-content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

@media (max-width: 950px) {
  .psc-content {
    padding: 34px 24px;
  }

 .psc-media {
  background: linear-gradient(135deg,#1a1a1a,#3a3a3a);
}
}

.psc-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.psc-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 18px;
}

.psc-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--body-text);
  margin-bottom: 24px;
  max-width: 95%;
}

.psc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.psc-tags li {
  padding: 8px 16px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 999px;
  border: 1px solid rgba(200,146,42,.18);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .4px;
  transition: var(--transition);
}

.psc-tags li:hover {
  background: var(--gold);
  color: var(--white);
}

/* section spacing on small screens */
@media (max-width: 768px) {
  .products-section {
    padding: 90px 0 110px;
  }

  .stack-products {
    margin-top: 50px;
  }

  .product-stack-card {
    margin-bottom: 22px;
    border-radius: 24px;
  }
}
/* ══════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════ */
.stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.stats-blob {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}
.stats-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,146,42,.08), transparent 70%);
  top: -200px; right: -100px;
}
.stats-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,95,125,.15), transparent 70%);
  bottom: -100px; left: 100px;
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; z-index:1;
}
@media(max-width:900px){ .stats-grid{ grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px){ .stats-grid{ grid-template-columns: 1fr 1fr; gap:16px; } }

.stat-card { text-align: center; }
.stat-circle {
  position: relative; width: 140px; height: 140px; margin: 0 auto 20px;
}
.stat-circle svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.sc-bg { fill:none; stroke: rgba(255,255,255,.08); stroke-width: 8; }
.sc-fill {
  fill:none; stroke: var(--gold); stroke-width: 8; stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: calc(314 * (1 - var(--pct)));
  transition: stroke-dashoffset 2s cubic-bezier(.4,0,.2,1);
}
.stat-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.stat-num {
     font-family: 'Sora', sans-serif;
font-size: 2rem; color: var(--white);
  line-height: 1;
}
.stat-plus {    font-family: 'Sora', sans-serif;
 font-size: 1.5rem; color: var(--gold); }
.stat-label {
  font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 500;
}

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why-section {
  padding: 100px 0;
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.why-curve-top {
  position: absolute; top:-1px; left:0; right:0; height:60px;
  background: var(--navy-mid);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.why-curve-bottom {
  position: absolute; bottom:-1px; left:0; right:0; height:60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
  margin-top: 56px;
}
@media(max-width:900px){ .why-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .why-grid{ grid-template-columns:1fr; } }

.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,.1);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content:''; position: absolute; inset:0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(200,146,42,.04), transparent);
  opacity: 0; transition: var(--transition);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(200,146,42,.3); }
.why-card:hover::before { opacity: 1; }

/* Circle icon */
.why-circle {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 24px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: var(--transition);
}
.why-card:hover .why-circle { background: var(--gold); }
.why-icon-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px dashed rgba(200,146,42,.3);
  animation: spinOval 12s linear infinite;
}
.why-card:hover .why-icon-ring { border-color: var(--gold); }
.why-icon { font-size: 2.2rem; position: relative; z-index:1; }

.why-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p  { font-size: .88rem; color: var(--mid-gray); line-height: 1.7; }

/* ══════════════════════════════════════════════
   BRANDS MARQUEE
══════════════════════════════════════════════ */
.brands-section { padding: 80px 0 0; background: var(--white); }
.brands-marquee { overflow: hidden; margin-top: 48px; padding: 20px 0; }
.brands-track {
  display: flex; gap: 20px; width: max-content;
  animation: marqueeScroll 20s linear infinite;
}
.brand-pill {
  padding: 14px 32px;
  background: var(--light-gray);
  border-radius: var(--radius-full);
  font-size: .9rem; font-weight: 700; letter-spacing: 1px;
  color: var(--navy); white-space: nowrap;
  border: 1px solid rgba(200,146,42,.1);
  transition: var(--transition);
}
.brand-pill:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ══════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--white);
  position: relative; overflow: hidden;
}
.contact-blob {
  position: absolute; border-radius: 50%; pointer-events:none;
}
.contact-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,146,42,.05), transparent 70%);
  top:-200px; right:-200px;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
@media(max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }

.contact-desc { color: var(--body-text); font-size:.95rem; line-height:1.7; margin-bottom:32px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--off-white); padding: 18px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.cc-icon { font-size: 1.4rem; flex-shrink:0; }
.contact-card strong { display:block; font-size:.82rem; color:var(--mid-gray); font-weight:500; text-transform:uppercase; letter-spacing:1px; }
.contact-card p { color:var(--navy); font-size:.9rem; margin-top:2px; }

/* Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(200,146,42,.1);
}
.contact-form-card h3 {
   font-family: 'Sora', sans-serif;
 font-size: 1.5rem; color: var(--navy);
  margin-bottom: 28px;
}
.form-group {
  position: relative; margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 16px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
    font-family: 'Sora', sans-serif;
font-size: .9rem; color: var(--dark-text);
  background: var(--off-white);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,146,42,.1);
}
.form-group label {
  position: absolute; top:-9px; left:14px;
  background: var(--white); padding: 0 6px;
  font-size: .75rem; font-weight: 600; color: var(--gold);
  letter-spacing: .5px; pointer-events: none;
  display: none;
}
.form-group input:focus + label,
.form-group textarea:focus + label { display: block; }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%; padding: 16px 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light); border: none; cursor: pointer;
  border-radius: var(--radius-full);
   font-family: 'Sora', sans-serif;
 font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(13,27,42,.3);
}
.btn-submit svg { width: 18px; height: 18px; stroke: var(--gold-light); fill: none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(13,27,42,.4); background: var(--gold); color: var(--navy); }
.btn-submit:hover svg { stroke: var(--navy); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
  position: relative; overflow: hidden;
}
.footer-wave {
  position: absolute; top:-2px; left:0; right:0; height:60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-top: 40px;
}
@media(max-width:1000px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .footer-grid{ grid-template-columns: 1fr; } }

.footer-logo {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.footer-logo-emblem {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg,var(--gold),var(--gold-light));
  color: var(--navy);    font-family: 'Sora', sans-serif;
 font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.footer-name { display:block;    font-family: 'Sora', sans-serif;
 font-size:1.2rem; letter-spacing:2px; color:var(--white); }
.footer-tagline { display:block; font-size:.72rem; color:var(--gold); letter-spacing:2px; text-transform:uppercase; }
.footer-about { font-size: .88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-links-col h4 {
  font-size: .82rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col li { font-size: .88rem; }
.footer-links-col a {
  color: rgba(255,255,255,.6); transition: var(--transition);
}
.footer-links-col a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  margin-top: 56px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 8px;
}

/* ══════════════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--navy); color: var(--white);
  padding: 16px 32px; border-radius: var(--radius-full);
  font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: 9999; transition: transform .4s cubic-bezier(.4,0,.2,1);
  border: 1px solid var(--gold);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════════
   AOS overrides
══════════════════════════════════════════════ */
[data-aos] { pointer-events: auto !important; }

/* ══════════════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════════════
   SELECTION
══════════════════════════════════════════════ */
::selection { background: var(--gold); color: var(--navy); }












.about-section.about-unique {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,146,42,.10), transparent 20%),
    radial-gradient(circle at 85% 80%, rgba(58,95,125,.10), transparent 24%),
    linear-gradient(180deg, #f8f6f2 0%, #ffffff 100%);
  overflow: hidden;
}

.about-unique-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 76px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-unique-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* LEFT PANEL */
.about-ux-panel {
  position: relative;
  min-height: 560px;
  border-radius: 38px;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(145deg, #0d1b2a 0%, #13293d 55%, #1a2f44 100%);
  box-shadow: 0 30px 80px rgba(13,27,42,.20);
  border: 1px solid rgba(255,255,255,.08);
}

.about-ux-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(200,146,42,.18), transparent 22%),
    radial-gradient(circle at 80% 75%, rgba(200,146,42,.12), transparent 18%),
    linear-gradient(135deg, transparent 0%, rgba(255,255,255,.03) 100%);
  pointer-events: none;
}

.about-ux-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -90px;
  right: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,.22), transparent 65%);
  filter: blur(8px);
}

.about-ux-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,143,168,.18), transparent 68%);
}

.about-ux-top,
.about-ux-main,
.about-ux-bottom,
.floating-note {
  position: relative;
  z-index: 2;
}

.about-ux-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.about-kicker-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.about-mini-line {
  width: 90px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(200,146,42,.9), transparent);
}

/* main inner layout */
.about-ux-main {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 560px) {
  .about-ux-main {
    grid-template-columns: 1fr;
  }
}

.about-big-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.abs-label {
  display: inline-block;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-big-stat h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(4rem, 8vw, 6.4rem);
  line-height: .9;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -3px;
}

.about-big-stat h2 span {
  color: var(--gold);
}

.about-big-stat p {
  max-width: 260px;
  color: rgba(255,255,255,.72);
  font-size: .96rem;
  line-height: 1.8;
}

.about-side-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stack-card {
  flex: 1;
  border-radius: 28px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  transition: var(--transition);
}

.stack-card:hover {
  transform: translateY(-4px);
}

.stack-card span {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.stack-card p {
  font-size: .9rem;
  line-height: 1.6;
  font-weight: 500;
}

.stack-card-dark {
  background: linear-gradient(135deg, rgba(200,146,42,.96), rgba(232,184,75,.96));
  color: #0d1b2a;
  box-shadow: 0 18px 40px rgba(200,146,42,.18);
}

.stack-card-light {
  background: rgba(255,255,255,.92);
  color: var(--navy);
}

/* bottom chips */
.about-ux-bottom {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bottom-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
}

/* floating notes */
.floating-note {
  position: absolute;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 40px rgba(13,27,42,.15);
  min-width: 170px;
}

.floating-note strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
  margin-bottom: 4px;
}

.floating-note span {
  display: block;
  color: var(--mid-gray);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.note-one {
  top: 26px;
  right: 24px;
  animation: floatCard 4s ease-in-out infinite;
}

.note-two {
  bottom: 28px;
  right: 30px;
  animation: floatCard 4.6s ease-in-out infinite;
}

/* RIGHT CONTENT */
.about-unique-content .section-heading {
  margin-bottom: 24px;
}

.about-unique-content .about-body {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
  color: var(--body-text);
}

.about-rail {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(13,27,42,.08);
}

.rail-item:last-child {
  border-bottom: none;
}

.rail-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: .86rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(200,146,42,.18);
}

.rail-item h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 700;
}

.rail-item p {
  font-size: .92rem;
  color: var(--mid-gray);
  line-height: 1.75;
}


.contact-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,146,42,.16), transparent 22%),
    radial-gradient(circle at 85% 30%, rgba(58,95,125,.14), transparent 22%),
    radial-gradient(circle at 60% 80%, rgba(200,146,42,.08), transparent 24%);
  pointer-events: none;
}

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

.contact-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(200,146,42,.10);
  border: 1px solid rgba(200,146,42,.18);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.contact-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(200,146,42,.5);
}

.contact-hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-hero-content h1 span {
  color: var(--gold);
}

.contact-hero-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--body-text);
  max-width: 650px;
  margin-bottom: 30px;
}

.contact-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dark-outline {
  color: var(--navy);
  border-color: rgba(13,27,42,.18);
}

.dark-outline:hover {
  background: rgba(13,27,42,.04);
  border-color: var(--gold);
  color: var(--gold);
}