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

/* ── CSS Variables ── */
:root {
  --gold:        #6F8FAF;   /* silver-blue accent */
  --gold-light:  #9FB3C8;   /* light steel */
  --gold-pale:   #EEF3F8;   /* pale blue-gray */
  --navy:        #1E3A5F;   /* main logo blue */
  --navy-mid:    #2A4C74;   /* mid blue */
  --steel:       #5F748C;   /* steel gray */
  --steel-light: #AAB7C4;   /* soft silver */
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --light-gray:  #EDF2F7;
  --mid-gray:    #6B7280;
  --dark-text:   #142133;
  --body-text:   #425466;
  --accent-red:  #4B6B8A;

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

  --shadow-sm: 0 2px 8px rgba(30,58,95,.08);
  --shadow-md: 0 8px 32px rgba(30,58,95,.12);
  --shadow-lg: 0 20px 60px rgba(30,58,95,.18);
  --shadow-xl: 0 32px 80px rgba(30,58,95,.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; } }

/* ══════════════════════════════════════════════
   SPLASH / FLASH SCREEN
══════════════════════════════════════════════ */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#splash.hidden { opacity: 0; pointer-events: none; transform: scale(1.05); }
#splash-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.splash-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
}

/* Ring logo */
.splash-logo-ring {
  position: relative; width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.ring-svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(200,146,42,.2); stroke-width: 6; }
.ring-progress {
  fill: none; stroke: var(--gold); stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 534; stroke-dashoffset: 534;
  animation: ringFill 2.5s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes ringFill {
  0%   { stroke-dashoffset: 534; }
  100% { stroke-dashoffset: 0; }
}
.splash-initials {
   font-family: 'Sora', sans-serif;
 font-size: 3.5rem; letter-spacing: 2px;
  color: var(--gold); line-height: 1;
  animation: pulseScale 2s ease-in-out infinite;
}
@keyframes pulseScale {
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.06); }
}

.splash-title {
  font-family: var(--font-display); font-size: clamp(2.4rem,6vw,4rem);
  color: var(--white); letter-spacing: 6px; line-height: 1.1;
  animation: fadeSlideUp 0.8s ease 0.5s both;
}
.splash-title span { color: var(--gold); }

.splash-sub {
  font-size: .95rem; color: rgba(255,255,255,.55);
  letter-spacing: 3px; text-transform: uppercase;
  animation: fadeSlideUp 0.8s ease 0.7s both;
}

.splash-bar {
  width: 220px; height: 3px; background: rgba(255,255,255,.1);
  border-radius: var(--radius-full); overflow: hidden;
  animation: fadeSlideUp 0.8s ease 0.9s both;
}
.splash-bar-fill {
  height: 100%; background: linear-gradient(90deg,var(--gold),var(--gold-light));
  border-radius: var(--radius-full);
  animation: barFill 2.8s cubic-bezier(.4,0,.2,1) 0.2s forwards;
  width: 0%;
}
@keyframes barFill { to { width: 100%; } }

.splash-loading {
  font-size: .75rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  animation: blink 1.4s ease infinite 1s;
}
@keyframes blink { 50%{ opacity: .3; } }

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

/* ══════════════════════════════════════════════
   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 {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(31,58,95,.10);
  box-shadow: 0 8px 32px rgba(30,58,95,.10);
}

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

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

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

/* 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;
}

/* LOGO SIZE CONTROL */
.logo-img {
  height: 48px;   /* ← main size */
  width: auto;
  object-fit: contain;
}

/* TEXT STYLE */
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand {
  font-size: 20px;
  font-weight: 700;
  color: #0d1b2a;
}

.nav-brand-sub {
  font-size: 12px;
  color: #5a8fa8;
  letter-spacing: 2px;
}
/* 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 SECTION
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8% 80px;
  background: linear-gradient(135deg, #09121d, #13283d);
}

/* Video Background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5, 13, 22, 0.82), rgba(5, 13, 22, 0.45)),
    linear-gradient(to top, rgba(5, 13, 22, 0.75), rgba(5, 13, 22, 0.25));
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 100%;
  text-align: left;
  color: #fff;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #f3f6fb;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(231, 76, 60, 0.9);
 
}

/* Heading */
.hero-heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.hero-line-1,
.hero-line-2,
.hero-line-3 {
  display: block;
}

.hero-line-1 {
  font-size: clamp(52px, 8vw, 110px);
  color: #ffffff;
}

.hero-line-2 {
  font-size: clamp(58px, 9vw, 125px);
  color: #f59e0b;
  text-shadow: 0 6px 20px rgba(245, 158, 11, 0.22);
}

.hero-line-3 {
  font-size: clamp(52px, 8vw, 110px);
  color: #dbeafe;
}

/* Description */
.hero-desc {
  margin: 28px 0 0;
  max-width: 760px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}

/* Buttons */
.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.35s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.5);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(231, 76, 60, 0.08);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  position: relative;
}

.scroll-dot::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 5px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #fff;
  animation: scrollMove 1.6s infinite;
}

@keyframes scrollMove {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Utility */
.hide-sm {
  display: inline;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .hero {
    padding: 110px 7% 70px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-desc {
    max-width: 100%;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 100px 20px 70px;
    align-items: center;
      background: linear-gradient(135deg, #05070a, #121821);

  }

  .hero-content {
    text-align: center;
  }

  .hero-badge {
    font-size: 12px;
    padding: 9px 14px;
    margin-bottom: 20px;
  }

  .hero-heading {
    line-height: 1;
    letter-spacing: -1px;
  }

  .hero-line-1 {
  color: var(--text-light);
}

.hero-line-2 {
  color: var(--primary);   /* 🔥 main highlight */
  text-shadow: 0 6px 25px rgba(231, 76, 60, 0.35);
}

.hero-line-3 {
  color: #d1d5db;
}

  .hero-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 20px;
  }

  .hero-actions {
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 260px;
    padding: 14px 22px;
    font-size: 14px;
  }

  .hide-sm {
    display: none;
  }

  .scroll-indicator {
    bottom: 18px;
    font-size: 11px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .hero {
    padding: 90px 16px 60px;
  }

  .hero-badge {
    gap: 8px;
    font-size: 11px;
    padding: 8px 12px;
  }

  .hero-line-1 {
    font-size: 34px;
  }

  .hero-line-2 {
    font-size: 40px;
  }

  .hero-line-3 {
    font-size: 34px;
  }

  .hero-desc {
    font-size: 14px;
  }
}
/* ══════════════════════════════════════════════
   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(--navy), var(--steel), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.section-header .section-heading::after {
  background: linear-gradient(90deg, var(--navy), var(--steel), var(--gold-light));
}

/* 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);
}





.brands-marquee {
  overflow: hidden;
  padding: 40px 0;
  background: #f8f9fb;
}

.brands-track {
  display: flex;
  gap: 40px;
  animation: scrollBrands 25s linear infinite;
}

.brand-pill {
  background: #fff;
  padding: 20px 30px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.brand-pill img {
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}

.brand-pill:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.brand-pill:hover {
  transform: translateY(-5px);
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {









    transform: translateX(-50%);
  }
}















.brand-pill {
  background: #fff;
  padding: 25px 40px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;   /* 🔥 increase */
  height: 90px;       /* 🔥 increase */
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.brand-pill img {
  max-width: 150px;   /* 🔥 logo size increase */
  max-height: 60px;
  object-fit: contain;
  transition: 0.3s ease;
}





.brands-marquee {
  overflow: hidden;
  padding: 50px 0;
  background: #f8f9fb;
}

.brands-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: scrollBrands 20s linear infinite;
}

/* 🔥 PERFECT LOOP */
@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

















.services-section {
  padding: 110px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  color: #C8922A;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0D1B2A;
}

.section-heading em {
  color: #C8922A;
  font-style: normal;
}

.section-sub {
  margin-top: 12px;
  color: #6b7280;
  font-size: 1rem;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 30px 50px 30px 50px; /* 🔥 unique shape */
  box-shadow: 0 15px 40px rgba(13,27,42,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

/* subtle gradient glow */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(200,146,42,0.15), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover::after {
  opacity: 1;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13,27,42,0.12);
}

/* ICON */
.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

/* TEXT */
.service-card h3 {
  font-size: 1.2rem;
  color: #0D1B2A;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 2rem;
  }
}
.services-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  overflow: hidden;
  isolation: isolate;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

/* PARTICLES LAYER */
.services-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.services-particles .shape {
  position: absolute;
  display: block;
  opacity: 0.18;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* circle */
.shape-1 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8922a, #e8b84b);
  top: 10%;
  left: 6%;
  animation: floatY 9s infinite;
}

/* rounded square */
.shape-2 {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0d1b2a, #2b4b68);
  top: 20%;
  right: 10%;
  animation: floatRotate 12s infinite;
}

/* diamond */
.shape-3 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e8b84b, #f5d37b);
  top: 65%;
  left: 14%;
  transform: rotate(45deg);
  animation: drift 11s infinite;
}

/* ring */
.shape-4 {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 10px solid rgba(13, 27, 42, 0.14);
  top: 68%;
  right: 7%;
  animation: floatY 10s infinite;
}

/* triangle */
.shape-5 {
  width: 0;
  height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-bottom: 74px solid rgba(200, 146, 42, 0.22);
  top: 38%;
  left: 48%;
  animation: floatRotate 14s infinite;
}

/* soft blob */
.shape-6 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(200,146,42,0.28), rgba(232,184,75,0.18));
  border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  bottom: 6%;
  left: 42%;
  animation: blobMove 15s infinite;
}

/* small square */
.shape-7 {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(13, 27, 42, 0.15);
  top: 12%;
  left: 38%;
  animation: drift 8s infinite;
}

/* small circle */
.shape-8 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 146, 42, 0.28);
  bottom: 18%;
  right: 32%;
  animation: floatY 7s infinite;
}

/* ANIMATIONS */
@keyframes floatY {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-28px);
  }
}

@keyframes drift {
  0%, 100% {
    transform: translate(0, 0) rotate(45deg);
  }
  25% {
    transform: translate(18px, -16px) rotate(65deg);
  }
  50% {
    transform: translate(-12px, -28px) rotate(95deg);
  }
  75% {
    transform: translate(-20px, 8px) rotate(70deg);
  }
}

@keyframes floatRotate {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-24px) rotate(180deg);
  }
}

@keyframes blobMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  }
  50% {
    transform: translate(24px, -20px) scale(1.08);
    border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%;
  }
}










.services-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  overflow: hidden;
  isolation: isolate;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  color: #C8922A;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0D1B2A;
}

.section-heading em {
  color: #C8922A;
  font-style: normal;
}

.section-sub {
  margin-top: 12px;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.8;
}

/* PARTICLES */
.services-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.services-particles .shape {
  position: absolute;
  display: block;
  opacity: 0.18;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* circle */
.shape-1 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8922a, #e8b84b);
  top: 10%;
  left: 6%;
  animation: floatY 9s infinite;
}

/* rounded square */
.shape-2 {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0d1b2a, #2b4b68);
  top: 18%;
  right: 10%;
  animation: floatRotate 12s infinite;
}

/* diamond */
.shape-3 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e8b84b, #f5d37b);
  top: 66%;
  left: 14%;
  transform: rotate(45deg);
  animation: driftDiamond 11s infinite;
}

/* ring */
.shape-4 {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 10px solid rgba(13, 27, 42, 0.14);
  top: 68%;
  right: 7%;
  animation: floatY 10s infinite;
}

/* triangle */
.shape-5 {
  width: 0;
  height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-bottom: 74px solid rgba(200, 146, 42, 0.22);
  top: 38%;
  left: 48%;
  animation: floatTriangle 14s infinite;
}

/* blob */
.shape-6 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(200,146,42,0.28), rgba(232,184,75,0.18));
  border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  bottom: 6%;
  left: 42%;
  animation: blobMove 15s infinite;
}

/* small square */
.shape-7 {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(13, 27, 42, 0.15);
  top: 12%;
  left: 38%;
  animation: floatRotate 8s infinite;
}

/* small circle */
.shape-8 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 146, 42, 0.28);
  bottom: 18%;
  right: 32%;
  animation: floatY 7s infinite;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  padding: 38px 28px;
  border-radius: 30px 50px 30px 50px;
  box-shadow: 0 15px 40px rgba(13,27,42,0.08);
  border: 1px solid rgba(13,27,42,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #C8922A, #E8B84B);
  transition: 0.4s;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(200,146,42,0.15), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #0D1B2A;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.service-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* KEYFRAMES */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-28px); }
}

@keyframes floatRotate {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(180deg); }
}

@keyframes driftDiamond {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  25% { transform: translate(18px, -16px) rotate(65deg); }
  50% { transform: translate(-12px, -28px) rotate(95deg); }
  75% { transform: translate(-20px, 8px) rotate(70deg); }
}

@keyframes floatTriangle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

@keyframes blobMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  }
  50% {
    transform: translate(24px, -20px) scale(1.08);
    border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 80px 0;
  }

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

  .section-heading {
    font-size: 2rem;
  }

  .service-card {
    border-radius: 24px 38px 24px 38px;
    padding: 30px 22px;
  }
}





.customers-v2 {
  position: relative;
  padding: 110px 0;
  background: #f8fafc;
  overflow: hidden;
}

/* HEADER */
.customers-v2-header {
  text-align: center;
  margin-bottom: 60px;
}

.customers-v2-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
}

.customers-v2-header em {
  color: #C8922A;
  font-style: normal;
}

/* MAIN */
.customers-v2-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

/* IMAGE */
.customers-v2-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.customers-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #C8922A;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}

/* CONTENT */
.customers-v2-content p {
  color: #5f6b7a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.customers-v2-highlight {
  margin-top: 20px;
  font-weight: 600;
  color: #0D1B2A;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* CARDS */
.customers-v2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.customer-card-v2 {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.customer-card-v2:hover {
  transform: translateY(-8px);
}

.customer-card-v2 h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.customer-card-v2 p {
  color: #6b7280;
}

/* BACKGROUND SHAPES */
.customers-v2-bg span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.customers-v2-bg span:nth-child(1) {
  width: 200px;
  height: 200px;
  background: #C8922A;
  top: -50px;
  left: -50px;
}

.customers-v2-bg span:nth-child(2) {
  width: 150px;
  height: 150px;
  background: #0D1B2A;
  bottom: -40px;
  right: -40px;
}

/* RESPONSIVE */
@media(max-width: 991px){
  .customers-v2-main {
    grid-template-columns: 1fr;
  }

  .customers-v2-cards {
    grid-template-columns: 1fr;
  }
}


.offer-section {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  overflow: hidden;
}

.offer-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.offer-head {
  text-align: center;
  margin-bottom: 70px;
}

.offer-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(200,146,42,0.35);
  font-size: 13px;
  letter-spacing: 2px;
  color: #27466b;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.55);
}

.offer-head h2 {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  color: #17365d;
  margin-bottom: 14px;
  line-height: 1.05;
}

.offer-head p {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  position: relative;
}

.offer-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.08), transparent);
  transform: translateX(-50%);
}

.offer-col {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 110px;
  will-change: transform, opacity;
}

.offer-item img {
  width: 110px;
  height: 86px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(16, 34, 60, 0.08);
}

.offer-text h3 {
  font-size: 24px;
  margin: 0 0 8px;
  color: #17365d;
  line-height: 1.2;
}

.offer-text p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.offer-item:hover h3 {
  color: #c8922a;
}

.offer-bg-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bg-icon {
  position: absolute;
  color: rgba(19, 54, 93, 0.06);
  user-select: none;
  will-change: transform;
}

.nut-1 { top: 10%; left: 1.5%; font-size: 70px; }
.nut-2 { top: 8%; right: 3%; font-size: 72px; }
.tool-1 { top: 15%; left: 6%; font-size: 44px; color: rgba(200,146,42,0.10); }
.tool-2 { top: 24%; left: 16%; font-size: 42px; }
.tool-3 { top: 28%; left: 48%; font-size: 58px; color: rgba(200,146,42,0.12); }
.tool-4 { top: 22%; right: 18%; font-size: 52px; }
.tool-5 { top: 20%; right: 10%; font-size: 40px; }

@media (max-width: 991px) {
  .offer-list {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .offer-list::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .offer-section {
    padding: 80px 16px;
  }

  .offer-item {
    gap: 16px;
    min-height: auto;
  }

  .offer-item img {
    width: 88px;
    height: 72px;
    border-radius: 14px;
  }

  .offer-text h3 {
    font-size: 20px;
  }

  .offer-text p {
    font-size: 14px;
  }

  .bg-icon {
    opacity: 0.7;
  }
}