:root {
  --forge: #E8510A;
  --ember: #FF7030;
  --forge-dim: #8C3108;
  --gold: #C8943A;
  --black: #090806;
  --dark: #0E0C09;
  --surface: #141109;
  --surface2: #1C1910;
  --steel: #8A8278;
  --mist: #C4BDB5;
  --white: #F4EFE9;
  --display: 'Bebas Neue', sans-serif;
  --cond: 'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;
  --card-bg: #141109;
  --orange: #E8510A;
  --orange-dim: #b03d07;
  --white: #ffffff;
  --body-text: #8A8278;
  --border: rgba(232, 81, 10, 0.18);
  --border-sub: rgba(255, 255, 255, 0.07);

}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--black)
}

::-webkit-scrollbar-thumb {
  background: var(--forge-dim)
}

/* ─── UTILS ─── */
.reveal {
  opacity: 0;
  transform: translateY(200px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.reveal.on {
  opacity: 1;
  transform: none
}

.stagger>* {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
}

.stagger.on>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: .05s
}

.stagger.on>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: .15s
}

.stagger.on>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: .25s
}

.stagger.on>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: .35s
}

.stagger.on>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: .45s
}

.stagger.on>*:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: .55s
}

.stagger.on>*:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: .65s
}

.stagger.on>*:nth-child(8) {
  opacity: 1;
  transform: none;
  transition-delay: .75s
}

.lbl {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--forge);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px
}

.lbl::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--forge)
}

.lbl::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--forge)
}

.sec-title {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 86px);
  line-height: .95;
  letter-spacing: 1px;
  color: var(--white)
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px
}

.sec-link {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 130, 120, .3);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color .2s, border-color .2s
}

.sec-link:hover {
  color: var(--forge);
  border-color: var(--forge)
}

.sec-link img {
  width: 220px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.sec-link img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--forge);
  color: var(--black);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .25s;
  text-decoration: none;
}

.btn-p::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ember);
  transform: translateX(-101%);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1)
}

.btn-p:hover::after {
  transform: translateX(0)
}

.btn-p span {
  position: relative;
  z-index: 1
}

.blg {
  width: auto;
}

/* .fl-rgt{
  float: right;
  margin-top: -70px;
} */

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: transparent;
  color: var(--mist);
  border: 1px solid rgba(138, 130, 120, .35);
  padding: 16px 36px;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}

.btn-o:hover {
  border-color: var(--forge);
  color: var(--forge)
}

.pad-09 {
  padding: 9px 16px;
}

section {
  padding: 50px 64px
}

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0;
  overflow: hidden
}

/* animated bg */
.hero-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 40%, rgba(232, 81, 10, .14) 0%, transparent 70%), linear-gradient(160deg, #090806 0%, #120E08 60%, #090806 100%);
  z-index: 0
}

.hero-ambient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(232, 81, 10, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 81, 10, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%)
}

.hero-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.hero-breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.hero-breadcrumb a {
  color: var(--body-text);
  text-decoration: none;
}

.hero-breadcrumb a:hover {
  color: var(--orange);
}

.hero-breadcrumb span {
  color: var(--orange);
}

.spk {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--forge);
  opacity: 0;
  animation: spk-float var(--d, 3s) var(--dl, 0s) linear infinite
}

@keyframes spk-float {
  0% {
    opacity: .9;
    transform: translateY(0) translateX(0) scale(1)
  }

  100% {
    opacity: 0;
    transform: translateY(var(--ty, -220px)) translateX(var(--tx, 20px)) scale(.3)
  }
}

/* hero cards */
.h-card {
  position: relative;
  z-index: 2;
  padding: 140px 35px 0px;
  border-right: 1px solid rgba(138, 130, 120, .08);
  cursor: pointer;
  transition: background .4s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.h-card:last-child {
  border-right: none
}

.h-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--forge);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1)
}

.h-card.active::before,
.h-card:hover::before {
  transform: scaleX(1)
}

.h-card.active {
  background: rgba(232, 81, 10, .04)
}

.h-card:hover {
  background: rgba(232, 81, 10, .02)
}

.h-card-num {
  font-family: var(--display);
  font-size: 120px;
  line-height: 1;
  color: rgba(232, 81, 10, .07);
  position: absolute;
  top: 60px;
  left: 40px;
  pointer-events: none;
  transition: color .4s
}

.h-card.active .h-card-num {
  color: rgba(232, 81, 10, .14)
}

.h-card-tag {
  font-family: var(--cond);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--forge);
  margin-bottom: 16px
}

.h-card-title {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.0;
  letter-spacing: .5px;
  color: var(--white);
  margin-bottom: 18px
}

nav .n-logo {
  display: flex;
  align-items: center;
}

/* .h-card-title{font-family:var(--display);font-size:clamp(28px,3.5vw,46px);
  line-height:1.0;letter-spacing:.5px;color:var(--white);margin-bottom:18px} */
.h-card-body {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}

.h-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cond);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forge);
  margin-top: 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s
}

.h-card:hover .h-card-arrow,
.h-card.active .h-card-arrow {
  opacity: 1;
  transform: translateY(0)
}

/* hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 64px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fade-in .6s 1.4s forwards;
  display: none !important;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--forge), transparent)
}

.hero-scroll-txt {
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--forge-dim)
}

/* hero progress dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  right: 64px;
  z-index: 3;
  display: flex;
  gap: 8px;
  opacity: 0;
  animation: fade-in .6s 1.6s forwards
}

.hero-dot {
  width: 24px;
  height: 2px;
  background: rgba(138, 130, 120, .3);
  cursor: pointer;
  transition: background .3s
}

.hero-dot.active {
  background: var(--forge)
}

.pos-inner-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6vw;
  align-items: center;
}

@keyframes fade-in {
  to {
    opacity: 1
  }
}

/* ─── TICKER ─── */
.ticker {
  background: var(--forge);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap
}

.t-inner {
  display: inline-flex;
  animation: tick 35s linear infinite
}

.t-item {
  font-family: var(--cond);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px
}

.t-item::after {
  content: '◆';
  font-size: 7px
}

@keyframes tick {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ─── LOGO STRIP ─── */
#trusted {
  padding: 40px 64px;
  background: var(--surface);
  border-bottom: 1px solid rgba(138, 130, 120, .08)
}

.logo-inner-2 {
  display: inline-flex;
}

.trust-label {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 24px;
  text-align: center
}

.logo-track {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}

.logo-track::before,
.logo-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2
}

.logo-track::before {
  left: 0;
  /* background: linear-gradient(to right, var(--surface), transparent) */
}

.logo-track::after {
  right: 0;
  /* background: linear-gradient(to left, var(--surface), transparent) */
}

.logo-inner-2 {
  display: inline-flex;
}

.duns {
  text-align: right;
    font-family: var(--cond);
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--forge);
    background: var(--surface2);
    padding: 0 64px;
}

.logo-inner {
  display: inline-flex;
  gap: 0;
  animation: logos 28s linear infinite
}

.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  border-right: 1px solid rgba(138, 130, 120, .1)
}

.logo-chip span img {
  width: 100px;
}

.logo-chip span {
  font-family: var(--cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
  transition: color .3s
}

.logo-chip:hover span {
  color: var(--white)
}

@keyframes logos {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ─── SNAPSHOT ─── */
#snapshot {
  background: url(../images/h7-img-2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  border-top: 1px solid rgba(232, 81, 10, .08);
  border-bottom: 1px solid rgba(232, 81, 10, .08);
}

/* #snapshot{background:var(--dark);border-top:1px solid rgba(232,81,10,.08);border-bottom:1px solid rgba(232,81,10,.08)} */
.snap-intro {
  max-width: 640px;
  margin-bottom: 72px
}

.snap-intro h2 {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  line-height: .95;
  margin-bottom: 20px
}

.snap-intro h2 em {
  font-style: normal;
  color: var(--forge)
}

.snap-intro p {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.8
}

.snap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 64px
}

.snap-stat {
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s
}

/* .snap-stat{background:var(--surface);padding:40px 32px;position:relative;overflow:hidden;transition:background .3s} */
.snap-stat:hover {
  background: var(--surface2)
}

.snap-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--forge), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s
}

.snap-stat:hover::after {
  transform: scaleX(1)
}

.snap-num {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--forge);
  letter-spacing: -1px
}

.snap-unit {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--forge-dim)
}

.snap-lbl {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 10px
}

.snap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.snap-tag {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  background: rgba(232, 81, 10, .08);
  border: 1px solid rgba(232, 81, 10, .18);
  color: var(--mist)
}

/* ─── CAPABILITY & INFRASTRUCTURE ─── */
#capability {
  background: var(--black);
  border-top: 2px solid rgba(182, 174, 162, 0.08);
}

.cap-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px
}

/* units */
.units-stack {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.unit-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  transition: background .3s;
  cursor: pointer;
}

.unit-row:hover {
  background: rgba(232, 81, 10, .03)
}

.unit-row-num {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 36px;
  color: rgba(232, 81, 10, .3);
  border-right: 1px solid rgba(232, 81, 10, .08);
  padding: 20px 0;
  transition: all .3s;
  height: 100%;
}

.unit-row:hover .unit-row-num {
  background: var(--forge);
  color: var(--black)
}

.unit-row-body {
  background: var(--surface);
  padding: 24px 28px;
  border-bottom: 1px solid rgba(138, 130, 120, .05);
}

.unit-row-icon {
  position: relative;
}

.unit-row-icon img {
  filter: grayscale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  height: 165px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ff2a0078;
}

.unit-row-icon img:hover {
  filter: grayscale(0);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}


.unit-row-title {
  font-family: var(--cond);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px
}

.unit-row-desc {
  font-size: 17px;
  color: var(--steel);
  line-height: 1.6
}

.unit-badge {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--cond);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(232, 81, 10, .1);
  color: var(--forge);
  border: 1px solid rgba(232, 81, 10, .2)
}

.unit-badge.upcoming {
  background: rgba(138, 130, 120, .1);
  color: var(--steel);
  border-color: rgba(138, 130, 120, .2)
}

/* assets panel */
.assets-panel {
  background: var(--surface);
  padding: 40px 36px
}

.assets-title {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 32px
}

.asset-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(138, 130, 120, .08)
}

.asset-row:last-child {
  border-bottom: none
}

.asset-name {
  font-family: var(--cond);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--mist)
}

.asset-val {
  font-family: var(--cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--forge)
}

/* ─── CERTIFICATIONS ─── */
#certs {
  background: var(--surface);
  border-top: 1px solid rgba(232, 81, 10, .1)
}

/* .cert-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
      margin-bottom: 40px
    } */

.cert-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}

.cert-tile {
  background: var(--dark);
  padding: 28px 20px;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: all .3s
}

.cert-tile:hover {
  background: var(--surface2);
  border-bottom-color: var(--forge)
}

.cert-ring {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 1px solid rgba(232, 81, 10, .25);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .5px;
  color: var(--forge);
  text-align: center;
  line-height: 1.2
}

.cert-name {
  font-family: var(--cond);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel)
}

.statutory-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(138, 130, 120, .1)
}

.stat-pill {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel);
  padding: 6px 16px;
  border: 1px solid rgba(138, 130, 120, .15)
}

.stat-pill strong {
  color: var(--mist);
  font-weight: 500
}

/* ─── INDUSTRIES ─── */
#industries {
  background: var(--black)
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px !important;
}

.ind-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 15px;
  margin: 0px;
}

.ind-card-bg {
  position: absolute;
  inset: 0;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
  /* filter: grayscale(1); */
}

.mate-left p {
  text-transform: lowercase !important;
}

.mate-left p::first-letter {
  text-transform: uppercase !important;
}

/* .ind-card-bg:hover{ filter: grayscale(0);} */
.ind-card:hover .ind-card-bg {
  transform: scale(1.07);
  /* filter: grayscale(0); */
}

/* unique dark colour per industry */
.ind-card[data-i="defence"] .ind-card-bg {
  background: url("../images/defence.png");
  border-radius: 15px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.ind-card[data-i="oil"] .ind-card-bg {
  background: url("../images/oil-gas.png");
  border-radius: 15px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.ind-card[data-i="aerospace"] .ind-card-bg {
  background: url("../images/jet-engine.png");
  border-radius: 15px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.ind-card[data-i="nuclear"] .ind-card-bg {
  background: url("../images/nuclear.png");
  border-radius: 15px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.ind-card[data-i="energy"] .ind-card-bg {
  background: url("../images/energy-power.png");
  border-radius: 15px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.ind-card[data-i="marine"] .ind-card-bg {
  background: url("../images/marine.png");
  border-radius: 15px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.ind-card[data-i="railways"] .ind-card-bg {
  background: url("../images/railways.png");
  border-radius: 15px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.ind-card[data-i="construction"] .ind-card-bg {
  background: url("../images/earth-moving.png");
  border-radius: 15px;
  border-radius: 15px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

/* slider css */
.owl-nav {
  margin-top: 20px;
  display: flex;
  gap: 2px;
}

.owl-nav button.owl-prev span,
.owl-nav button.owl-next span {
  background: #e8510a;
  padding: 0px 15px 6px;
  align-items: center;
  font-size: 36px;
  vertical-align: middle;
  color: black;
  transiation: all .4s linear;
}

.owl-nav button.owl-prev span:hover,
.owl-nav button.owl-next span:hover {
  background-color: #ff7030;
}




/* forge glow per card */
.ind-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(232, 81, 10, .09), transparent 70%);
  transition: opacity .4s
}

.ind-card:hover .ind-card-bg::after {
  opacity: 0;
}

.ind-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 56px;
  opacity: .07;
  transition: opacity .4s, transform .5s
}

.ind-card:hover .ind-icon {
  opacity: .14;
  transform: scale(1.15) rotate(8deg)
}

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 8, 6, .92) 0%, rgba(9, 8, 6, .2) 60%, transparent 100%);
  transition: background .4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px
}

.ind-card:hover .ind-overlay {
  background: linear-gradient(to top, rgba(9, 8, 6, .97) 0%, rgba(9, 8, 6, .4) 100%)
}

.ind-cert {
  font-family: var(--cond);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forge);
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: all .35s
}

.ind-card:hover .ind-cert {
  opacity: 1;
  transform: translateY(0)
}

.ind-name {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--white)
}

.ind-detail {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.6;
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s, opacity .4s;
  opacity: 0
}

.ind-card:hover .ind-detail {
  max-height: 80px;
  opacity: 1
}

.ind-arrow {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--forge);
  margin-top: 10px;
  opacity: 0;
  transition: opacity .3s
}

.ind-card:hover .ind-arrow {
  opacity: 1
}

/* ─── BUYERS & PRODUCTS ─── */
#buyers {
  background: var(--surface);
}

.buyers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.buyers-col {}

.buyers-who {
  margin-bottom: 18px
}

.buyers-who-title {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forge);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 81, 10, .15)
}

.buyers-grid .four-box {
  display: flex;
}


.who-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(138, 130, 120, .08)
}

.who-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(232, 81, 10, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0
}

.who-txt strong {
  display: block;
  font-family: var(--cond);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  font-weight: 600
}

.who-txt span {
  font-size: 18px;
  color: var(--steel)
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px
}

.prod-item {
  background: var(--dark);
  padding: 20px 24px;
  transition: background .3s;
  cursor: pointer;
  border-bottom: 1px solid var(--dark);
}

.prod-item:hover {
  background: var(--surface2)
}

.prod-name {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--mist);
  margin-bottom: 4px;
  text-align: center;
  text-transform: uppercase !important;

}

.prod-cat {
  font-size: 16px;
  color: var(--steel)
}

.prod-arrow {
  font-size: 14px;
  color: var(--forge);
  opacity: 0;
  transition: opacity .2s
}

.prod-item:hover .prod-arrow {
  opacity: 1;
}

.prod-item:hover {
  opacity: 1;
  border-bottom: 1px solid #E8510A;
}

.prod-item-inner {
  display: flex;
  justify-content: space-between;
  align-items: center !important;
  flex-direction: column;
}

/* soft CTA banner */
.soft-cta {
  margin-top: 60px;
  background: rgba(232, 81, 10, .06);
  border: 1px solid rgba(232, 81, 10, .15);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.soft-cta-txt strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px
}

.soft-cta-txt span {
  font-size: 18px;
  color: var(--steel)
}

/* ─── CREDIBILITY ─── */
#credibility {
  background: var(--dark)
}

.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 30px
}

.award-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
}

.award-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  padding: 68px 32px;
  border-left: 3px solid var(--forge);
  transition: background .3s
}

.award-card:hover {
  background: var(--surface2)
}

.award-logo {
  width: 300px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid rgba(232, 81, 10, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 22px;
  color: var(--forge);
  text-align: center;
  line-height: 1.1
}

.award-body strong {
  display: block;
  font-family: var(--cond);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px
}

.award-body span {
  font-size: 16px;
  color: var(--steel);
  line-height: 1.6
}

.award-cards .award-logo img {
  width: 300px;
  /*filter: grayscale(1);*/
  border-radius: 15px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.award-cards .award-logo img:hover {
  filter: grayscale(0);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* world map */
.world-wrap {
  background: var(--surface);
  padding: 40px;
  position: relative;
  overflow: hidden
}

.world-wrap .world-svg-container img {
  width: 100%;
}

.world-title {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forge);
  margin-bottom: 24px
}

.world-svg-container {
  position: relative;
  padding: 0px !important;
}

.world-svg-container svg {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(.4)
}

.export-dot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%)
}

.export-dot-ring {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--forge);
  box-shadow: 0 0 0 3px rgba(232, 81, 10, .3), 0 0 12px rgba(232, 81, 10, .6);
  animation: dot-pulse 2s ease-in-out infinite
}

.export-dot-label {
  font-family: var(--cond);
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--forge);
  margin-top: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s
}

.export-dot:hover .export-dot-label {
  opacity: 1
}

@keyframes dot-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(232, 81, 10, .3), 0 0 12px rgba(232, 81, 10, .6)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(232, 81, 10, .15), 0 0 20px rgba(232, 81, 10, .8)
  }
}

.export-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px
}

.exp-chip {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(232, 81, 10, .2);
  color: var(--forge-dim);
  background: rgba(232, 81, 10, .05)
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--black);
  background: url(../images/aero.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  border-top: 1px solid rgba(232, 81, 10, .08);
  border-bottom: 1px solid rgba(232, 81, 10, .08);
}

/* #testimonials{background:var(--black)} */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px
}

.test-card {
  background: var(--surface);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background .3s
}

.test-card:hover {
  background: var(--surface2)
}

.test-card::before {
  content: '\201C';
  font-family: var(--display);
  font-size: 180px;
  line-height: .8;
  color: rgba(232, 81, 10, .05);
  position: absolute;
  top: 12px;
  right: 20px;
  pointer-events: none;
  transition: color .3s
}

.test-card:hover::before {
  color: rgba(232, 81, 10, .09)
}

.test-quote {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mist);
  margin-bottom: 36px;
  position: relative;
  z-index: 1
}

.test-sep {
  width: 24px;
  height: 1px;
  background: var(--forge);
  margin-bottom: 16px
}

.test-role {
  font-family: var(--cond);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forge);
  margin-bottom: 4px
}

.test-org {
  font-size: 16px;
  color: var(--steel)
}

/* ─── LEADERSHIP ─── */
#leadership {
  background: var(--surface)
}

.lead-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 1px solid rgba(138, 130, 120, .1)
}

.lead-story strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--forge);
  margin-bottom: 14px
}

.lead-story p {
  font-size: 18px;
  color: var(--steel);
  line-height: 1.9;
  margin-bottom: 14px
}

.lead-qual {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px
}

.lead-pill {
  font-family: var(--cond);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(232, 81, 10, .08);
  border: 1px solid rgba(232, 81, 10, .2);
  color: var(--forge)
}




.lead-photo-area::after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, .4);
}

.lead-photo-placeholder {
  font-family: var(--display);
  font-size: 100px;
  color: rgba(232, 81, 10, .08);
  line-height: 1;
  text-align: center
}

.lead-photo-tag {
  position: absolute;
  bottom: 24px;
  width: 100%;
  text-align: center;
  font-family: var(--cond);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark)
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px
}

.lead-card {
  background: var(--dark);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s
}

.lead-card:hover {
  background: var(--surface2)
}

.lead-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--forge), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s
}

.lead-card:hover::after {
  transform: scaleX(1)
}

.lead-card-yrs {
  font-family: var(--display);
  font-size: 80px;
  line-height: 1;
  color: rgba(232, 81, 10, .08);
  margin-bottom: 16px
}

.lead-card-role {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forge);
  margin-bottom: 8px
}

.lead-card-name {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: .5px;
  color: var(--white);
  margin-bottom: 10px
}

.lead-card-exp {
  font-size: 18px;
  color: var(--steel);
  line-height: 1.6
}

/* ─── OFFER ─── */
#offer {
  position: relative;
  overflow: hidden;
  background: url(../images/about/bg-atb.png);
}



/* Back-Video Styling */


#offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232, 81, 10, .09), transparent 70%)
}

#offer:before {
  content: '';
  background: #000000b5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.offer-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.offer-kicker {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--forge);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px
}

.offer-kicker::before,
.offer-kicker::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--forge-dim))
}

.offer-kicker::after {
  background: linear-gradient(to left, transparent, var(--forge-dim))
}

.offer-h2 {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: .92;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px
}

.offer-sub {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 40px);
  color: var(--forge);
  letter-spacing: 1px;
  margin-bottom: 5px
}

.offer-desc {
  font-size: 18px;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 48px
}

.offer-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px
}

.offer-tag {
  font-family: var(--cond);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(232, 81, 10, .25);
  color: var(--mist);
  background: rgba(232, 81, 10, .06)
}

.offer-limit {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forge-dim);
  margin-bottom: 16px
}

.offer-actions {
  display: flex;
  gap: 16px;
  justify-content: center
}

.offer-limit.offer-terms {
  margin-top: 15px;
  font-size: 14px;
}

span.sub-star {
  font-size: 16px;
  vertical-align: super;
}

/* ─── FINAL CTA ─── */
#finalcta {
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}


#finalcta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  /* background: var(--surface); */
  background: linear-gradient(0deg, rgba(20, 17, 9, 0.8), rgba(20, 17, 9, 0.8));
  z-index: -1;
}

.back-video {
  position: absolute;
  right: -70px;
  bottom: -60px;
  min-width: 100%;
  /* Hamesha full height aur width cover kare */
  min-height: 100%;
  z-index: -2;
  /* Content ke piche rahe */
  object-fit: cover;
  /* Video ratio maintain rahe */
}



.fcta-h2 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 100px);
  line-height: .92;
  letter-spacing: 2px;
  margin-bottom: 24px
}

.fcta-h2 em {
  font-style: normal;
  color: var(--forge)
}

.fcta-sub {
  font-size: 18px;
  color: var(--steel);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto
}

.fcta-steps {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  display: none;

}

.fcta-step {
  display: flex;
  align-items: center;
  gap: 14px
}

.fcta-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forge);
  flex-shrink: 0
}

.fcta-step-txt {
  font-family: var(--cond);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--mist)
}

.fcta-actions {
  display: flex;
  gap: 16px;
  justify-content: center
}


/* hero entrance */
.h-card-tag,
.h-card-title,
.h-card-body {
  opacity: 0;
  transform: translateY(12px);
  animation: hero-in .7s cubic-bezier(.16, 1, .3, 1) forwards
}

.h-card:nth-child(1) .h-card-tag {
  animation-delay: .3s
}

.h-card:nth-child(1) .h-card-title {
  animation-delay: .42s
}

.h-card:nth-child(1) .h-card-body {
  animation-delay: .54s
}

.h-card:nth-child(2) .h-card-tag {
  animation-delay: .5s
}

.h-card:nth-child(2) .h-card-title {
  animation-delay: .62s
}

.h-card:nth-child(2) .h-card-body {
  animation-delay: .74s
}

.h-card:nth-child(3) .h-card-tag {
  animation-delay: .7s
}

.h-card:nth-child(3) .h-card-title {
  animation-delay: .82s
}

.h-card:nth-child(3) .h-card-body {
  animation-delay: .94s
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

#myVideo {
  position: absolute;
  left: -400px;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

.h-card:after {
  position: absolute;
  content: '';
  background: rgb(0 0 0 / 76%);
  /* background:linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0.65) 100%);
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)); */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: ease 0.2s;
}

.h-card.active:after {
  position: absolute;
  content: '';
  background: rgb(0 0 0 / 0%);
  /* background:linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0.65) 100%);
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2)); */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: ease 0.2s;
}

/* Add some content at the bottom of the video/page */
.content {
  bottom: 0;
  z-index: 9;
  width: 90%;
  padding: 20px;
}



.manuf-pro {
  margin: 0px;
  padding: 0px;
}

/* .manuf-pro img {
  width: 250px;
} */
.manuf-pro img {
  width: 100%;
  max-width: 250px;
}

.team-pic {
  padding: 0px;
  margin: 0px;
}

.team-pic img {
  width: 100%;
  border-radius: 15px;
  filter: grayscale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.team-pic img:hover {
  filter: grayscale(0);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blogs {
  background: var(--surface);
}


.blg-cta-btns {
  /* display: flex; */
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.blg-btn-primary {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  padding: 10px 20px;
  border: 1px solid var(--orange);
  display: inline-block;
  transition: background .2s, border-color .2s;
}

.blogs .k-hub-main {
  display: flex;
  justify-content: space-between;
}

.blogs .hub-box {
  width: 33%;
  margin-right: 10px;
}

.blogs .hub-mg img {
  width: 100%;
}




/* About Us start */

.h-display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.94;
  color: var(--white);
}

.h-display .accent,
.accent {
  color: var(--orange);
}

.label {
  font-family: var(--cond);
  font-size: 18px;
  font-weight: normal;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
  /* display: flex; */
}

.d1 {
  transition-delay: .10s;
}

.d2 {
  transition-delay: .20s;
}

.d3 {
  transition-delay: .30s;
}

.d4 {
  transition-delay: .40s;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 60vh;
  padding: 50px 6vw 70px;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  position: relative;
  overflow: hidden;

}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/about/bg-about-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: -1;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 81, 10, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 81, 10, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 81, 10, .10) 0%, transparent 68%);
  pointer-events: none;
}

.hero-eyebrow {
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(76px, 11.5vw, 105px);
  max-width: 1080px;
  /* margin-bottom: 40px; */
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 5vw;
  flex-wrap: wrap;
}

.hero-desc {
  max-width: 600px;
  font-size: 18px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-left: auto;
}

.stat-block {
  padding: 26px 34px;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--card-bg);
  min-width: 110px;
}

.stat-block+.stat-block {
  border-left: none;
}

.stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  letter-spacing: .03em;
}

.stat-n sup {
  font-size: 28px;
}

.stat-l {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 6vw;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--body-text);
}

.scroll-bar {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* ── SECTIONS ───────────────────────────────────────────── */
.sec {
  padding: 60px 6vw;
}

.sec-sm {
  padding: 72px 6vw;
}

/* ── INTRO SPLIT ────────────────────────────────────────── */
.intro {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7vw;
  align-items: center;
}

.intro-title {
  font-size: clamp(44px, 5.5vw, 78px);
  margin: 16px 0 26px;
}

.intro-grid p+p {
  margin-top: 16px;
}

.iv {
  position: relative;
  aspect-ratio: 5/4;
  /* background: #080603; */
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 10px;

}

.abt-rgt {
  width: 100%;
  height: 100%;
}

.abt-rgt img {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  border-radius: 10px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.abt-rgt img:hover {
  filter: grayscale(0);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}



.iv-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 81, 10, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 81, 10, .07) 1px, transparent 1px);
  background-size: 36px 36px;
}

.iv-gear {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 110px;
  opacity: 0.06;
  filter: grayscale(1);
}

.iv-est {
  position: absolute;
  top: 20px;
  left: -1px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  padding: 5px 14px;
}

.iv-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: var(--orange);
  color: var(--white);
  padding: 18px 24px;
  line-height: 1.1;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .04em;
}

.iv-badge big {
  display: block;
  font-size: 44px;
  line-height: 1;
}

.iv-badge small {
  font-size: 12px;
  letter-spacing: .08em;
  opacity: .88;
}

/* ── TRUST CARDS ────────────────────────────────────────── */
.trust-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.trust-head-title {
  font-size: clamp(42px, 5.5vw, 80px);
  font-family: 'Bebas Neue', sans-serif;

}

.trust-sub-txt {
  max-width: 320px;
  font-size: 18px;
  font-weight: 300;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-sub);
  border: 1px solid var(--border-sub);
}

.trust-card {
  background: var(--black);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.trust-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.trust-card:hover {
  background: var(--card-bg);
}

.trust-card:hover::after {
  transform: scaleX(1);
}

.tc-bg-n {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(232, 81, 10, .06);
  line-height: 1;
  pointer-events: none;
}

.tc-icon {
  width: 150px;
  height: 150px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 26px;
  padding: 15px;
}

.tc-icon img {
  width: 100%;
  height: 100%;
}

.tc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: normal;
  line-height: normal;
}

.tc-body {
  font-size: 18px;
  color: var(--body-text);
  line-height: 1.8;
}

/* ── LEADERSHIP QUOTE ───────────────────────────────────── */
.ldr {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ldr-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.qmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 130px;
  line-height: .55;
  color: var(--orange);
  opacity: .22;
  display: block;
  margin-bottom: 14px;
}

.q-text {
  font-size: clamp(19px, 2.4vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 36px;
}

.q-attr {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--body-text);
}

.q-attr::before,
.q-attr::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--orange);
  opacity: .45;
}

/* ── TIMELINE ───────────────────────────────────────────── */
.journey-head {
  margin-bottom: 70px;
}

.journey-title {
  font-size: clamp(50px, 7vw, 72px);
}

.timeline {
  display: grid;
  /*grid-template-columns: repeat(3, 1fr);*/
  gap: 1px;
  /*background: var(--border-sub);*/
  border: 1px solid var(--border-sub);
}

.tl-card {
  background: var(--black);
  padding: 36px 30px;
  transition: background .3s;
  position: relative;
}

.tl-card:hover {
  background: var(--card-bg);
}

.tl-yr {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: .03em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 14px;
}

.tl-bar {
  width: 28px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 14px;
}

.tl-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.tl-body {
  font-size: 13.5px;
  color: var(--body-text);
  line-height: 1.75;
}

/* ── WHY VINIR ──────────────────────────────────────────── */

#why {
  background-image: url("../images/about/bg-atb.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

#why::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(232, 81, 10, 0.2), rgba(232, 81, 10, 0.2));
  z-index: -1;
}

.global-presence img {
  width: 50%;
}

.why {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
}

.why-head {
  margin-bottom: 30px;
}

.why-title {
  font-size: clamp(50px, 7vw, 74px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  /* background: var(--border-sub);
      border: 1px solid var(--border-sub); */
}

.why-card {
  background: #141109;
  padding: 26px 22px;
  position: relative;
  /* overflow: hidden; */
  transition: background .3s;
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.75);
}

.why-card:hover {
  background: #1c1610;
}

.why-bg-n {
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 110px;
  color: rgba(232, 81, 10, .06);
  line-height: 1;
  pointer-events: none;
}

/* .why-bar { width: 36px; height: 3px; background: var(--orange); margin-bottom: 22px; } */
.why-bar {
  width: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;

}

.why-grid .why-card {
  border-radius: 10px;
}

.why-bar img {
  width: 100%;
}

.why-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: normal;
}

.why-card p {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.8;
  /* max-width: 380px; */
}

/* ── CERTIFICATIONS ─────────────────────────────────────── */
.cert-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5vw;
  align-items: start;
}

.cert-title {
  font-size: clamp(44px, 5.5vw, 78px);
  margin: 16px 0 26px;
}

.cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.cert-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--border);
  padding: 9px 18px;
  background: var(--card-bg);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, border-color .2s;
}

.cert-tag::before {
  content: '✓';
  font-size: 10px;
}

.cert-tag:hover {
  background: rgba(232, 81, 10, .09);
  border-color: var(--orange);
}

.cert-panels {
  display: flex;
  /* flex-direction: column; */
  gap: 14px;
}

.cert-panel {
  background: var(--card-bg);
  border: 1px solid var(--border-sub);
  border-left: 3px solid var(--orange);
  padding: 26px 28px;
  transition: border-color .3s;
}

.cert-panel:hover {
  border-color: var(--border);
  border-left-color: var(--orange);
}

.cert-panel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 8px;
}

.cert-panel p {
  font-size: 13.5px;
  color: var(--body-text);
  line-height: 1.75;
}

/* ── LOCATIONS ──────────────────────────────────────────── */
.loc {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.loc-head {
  margin-bottom: 56px;
}

.loc-title {
  font-size: clamp(50px, 7vw, 100px);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-sub);
  border: 1px solid var(--border-sub);
}

.loc-card {
  background: var(--card-bg);
  padding: 46px 42px;
  transition: background .3s;
}

.loc-card:hover {
  background: #1c1610;
}

.loc-pin {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 22px;
}

.loc-city {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 4px;
}

.loc-state {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.loc-card p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.8;
  max-width: 360px;
}

/* ── GLOBAL PRESENCE STRIP ──────────────────────────────── */
.globe {
  background: var(--black);
  border-top: 1px solid var(--border-sub);
  padding: 72px 6vw;
  display: flex;
  align-items: center;
  gap: 5vw;
  flex-wrap: wrap;
}

.globe-title {
  font-size: clamp(38px, 4.5vw, 62px);
  max-width: 320px;
  margin-top: 12px;
}

.globe-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

.globe p {
  font-size: 15px;
  color: var(--body-text);
  max-width: 460px;
  line-height: 1.8;
}

/* ── CTA SECTION ────────────────────────────────────────── */
.cta {
  padding: 70px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  /*content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232, 81, 10, .07) 0%, transparent 70%);
  pointer-events: none;*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  /* background: var(--surface); */
  background: linear-gradient(0deg, rgba(20, 17, 9, 0.8), rgba(20, 17, 9, 0.8));
  z-index: -1;
}

.cta-label {
  justify-content: center;
  margin-bottom: 22px;
  font-size: 18px;
}

.cta-label::before {
  display: none;
}

.cta-title {
  font-size: clamp(56px, 9vw, 130px);
  margin: 0 auto 24px;
  max-width: 900px;
}

.cta-desc {
  max-width: 520px;
  margin: 0 auto 52px;
  font-size: 18px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  padding: 16px 38px;
  border: 1px solid var(--orange);
  display: inline-block;
  transition: background .2s, border-color .2s;
}

.btn-primary:hover {
  background: var(--orange-dim);
  border-color: var(--orange-dim);
}

.btn-ghost {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 16px 38px;
  border: 1px solid var(--border-sub);
  display: inline-block;
  transition: border-color .2s, color .2s;
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

#chairman {
  /* background-color: #FF7618; */
  background: var(--orange);
  padding: 50px;
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
  mask: radial-gradient(25px at top, #0000 calc(100% - 1px), #000) 50%/46.25px 100%
}


.chr .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}

.chr .chr-left-img {
  text-align: right;
}

.chr-right-txt {
  width: 50%;

}

.chr .chr-left-img {
  text-align: right;
}

.chr-right-txt h2 {
  /* font-size: 45px; */
  color: white;
  /* line-height: 1.2em; */
}

.chr-right-txt p {
  color: #fff;
  font-size: 18px;
}

.chr-overlay-img img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  width: 100%;
  object-fit: cover;
}


/* .chr-left-img img {
      margin-bottom: -50px;
    } */

.chr-left-img img {
  margin-bottom: -10px;
}

.location-main {
  display: flex;
}

.loc-box {
  width: 25%;
}

.loc-add {
  display: flex;
}

.loc-add img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}


.loc-phone {
  display: flex;
  margin-top: 20px;
}

.loc-phone img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

/* About Us End */





/* industries page css start */

.banner {
  min-height: 60vh !important;
  padding: 95px 6vw 70px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/oil-gas/oil-gas-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: -1;
}

.sec-link.second {
  display: none;
}

/* industries page css end */

/* social icons css */

.footer-socials {
  margin-top: 15px;
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: var(--white);
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--orange);
}