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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --navy: #0e1f3d;
  --navy-mid: #1a3461;
  --blue: #1755a5;
  --blue-light: #2e6bc4;
  --orange: #e05c2a;
  --orange-dark: #c44d22;
  --white: #fff;
  --gray-50: #f8fafc;
  --gray-100: #f0f4f8;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --radius: 10px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .07);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .1);
  --shadow-lg: 0 20px 56px rgba(0, 0, 0, .15);
  --t: .28s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.65
}

/* NAV */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 88px;
  background: rgba(14, 31, 61, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
  transition: var(--t)
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .25)
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none
}

/* PNG logo - inverted to white for dark backgrounds */
.nav-logo-img {
  height: 125px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: transform .35s ease, filter .35s ease;
  animation: logoIn .7s cubic-bezier(.4, 0, .2, 1) both;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.06);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(224, 92, 42, .65));
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateX(-12px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: .1rem
}

.nav-links>li {
  position: relative
}

.nav-links>li>a,
.nav-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: .45rem .85rem;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--t);
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer
}

.nav-links>li>a:hover,
.nav-toggle:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08)
}

.nav-links>li>a.active {
  color: #fff;
  font-weight: 600
}

.nav-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform .2s
}

.nav-links>li:hover .nav-toggle svg {
  transform: rotate(180deg)
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  min-width: 210px;
  padding: .4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--t);
  list-style: none
}

.nav-links>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown li a {
  display: block;
  padding: .5rem .9rem;
  color: var(--gray-600);
  text-decoration: none;
  font-size: .85rem;
  border-radius: 6px;
  transition: var(--t)
}

.dropdown li a:hover {
  background: var(--gray-100);
  color: var(--navy)
}

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: .45rem 1.1rem !important;
  border-radius: 6px !important
}

.nav-cta:hover {
  background: var(--orange-dark) !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t)
}

/* HERO SLIDER */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

/* Slide stack */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity
}

.hero-slide.active {
  opacity: 1
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, rgba(14, 31, 61, .92) 0%, rgba(14, 31, 61, .78) 55%, rgba(23, 85, 165, .5) 100%)
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 88px
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .35);
  background: rgba(14, 31, 61, .55);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s, transform .25s
}

.slider-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1)
}

.slider-prev {
  left: 1.5rem
}

.slider-next {
  right: 1.5rem
}

/* Dot nav — bottom-right, small */
.slider-dots {
  position: absolute;
  bottom: 2.2rem;
  right: 2rem;
  left: auto;
  transform: none;
  z-index: 4;
  display: flex;
  gap: .5rem
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0
}

.slider-dot.active {
  background: var(--orange);
  transform: scale(1.35)
}

/* Per-slide captions */
.slide-captions {
  position: relative;
  min-height: 3.5rem;
  margin-bottom: 2.5rem
}

.slide-cap {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  max-width: 530px;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
  margin: 0
}

.slide-cap.active {
  opacity: 1;
  position: relative;
  pointer-events: auto
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .9);
  padding: .38rem 1rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.04;
  margin-bottom: 1.4rem;
  animation: fadeUp .7s .1s ease both
}

.hero h1 em {
  color: var(--orange);
  font-style: normal
}

.hero-btns {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  padding: .82rem 1.9rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--t);
  border: none;
  cursor: pointer
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 92, 42, .4)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: #fff;
  padding: .82rem 1.9rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  transition: var(--t)
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  animation: fadeUp .7s .4s ease both
}

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff
}

.stat-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
  z-index: 4
}

.hero-scroll span {
  font-size: .65rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 2px;
  text-transform: uppercase
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .2)
}

/* UTILS */
.section {
  padding: 5rem 2rem
}

.section-alt {
  background: var(--gray-50)
}

.container {
  max-width: 1180px;
  margin: 0 auto
}

.sec-hd {
  text-align: center;
  margin-bottom: 3.5rem
}

.eyebrow {
  display: inline-block;
  background: rgba(23, 85, 165, .1);
  color: var(--blue);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .9rem
}

.sec-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15
}

.sec-sub {
  margin-top: .85rem;
  color: var(--gray-600);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-size: .95rem
}

.lbl-left {
  text-align: left
}

.lbl-left .sec-title,
.lbl-left .eyebrow {
  text-align: left
}

/* BLUE DIVIDER */
.blue-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border: none;
  margin: 0
}

/* STATS STRIP */
.stats-strip {
  background: var(--navy);
  padding: 3rem 2rem
}

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

.ss-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff
}

.ss-lbl {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px
}

.ss-div {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  margin: auto
}

/* FEATURE CARDS */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem
}

.feat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--gray-200);
  transition: var(--t);
  position: relative;
  overflow: hidden
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--t)
}

.feat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.feat-card:hover::before {
  transform: scaleY(1)
}

.feat-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.3rem;
  overflow: hidden
}

.feat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px
}

.feat-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem
}

.feat-card p {
  color: var(--gray-600);
  font-size: .88rem;
  line-height: 1.7
}

/* 2-COL IMAGE SECTION */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.split-img {
  border-radius: 14px;
  overflow: hidden;
  position: relative
}

.split-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease
}

.split-img:hover img {
  transform: scale(1.03)
}

.split-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--navy);
  color: #fff;
  padding: .8rem 1.2rem;
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700
}

.split-badge .b-num {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--orange)
}

.split-badge .b-lbl {
  font-size: .7rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px
}

.split-text p {
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.8;
  margin: .9rem 0
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.2rem
}

.tag {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: .3rem .85rem;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--navy)
}

/* PRODUCTS */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem
}

.prod-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--t);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column
}

.prod-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px)
}

.prod-card:hover .prod-img img {
  transform: scale(1.05)
}

.prod-img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-50)
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.prod-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column
}

.prod-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem
}

.prod-body p {
  color: var(--gray-600);
  font-size: .86rem;
  flex: 1;
  line-height: 1.65
}

.prod-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-weight: 600;
  font-size: .84rem;
  margin-top: 1rem;
  text-decoration: none;
  transition: var(--t)
}

.prod-link:hover {
  gap: 9px
}

/* FULL-WIDTH IMAGE BANNER */
.img-banner {
  position: relative;
  min-height: 420px;
  overflow: visible
}

.img-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0
}

.img-banner-overlay {
  position: relative;
  z-index: 1;
  min-height: 420px;
  background: linear-gradient(90deg, rgba(14, 31, 61, .92) 0%, rgba(14, 31, 61, .55) 65%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 3.5rem 0
}

.img-banner-content {
  padding: 0 5vw;
  max-width: 580px
}

.img-banner-content h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .8rem
}

.img-banner-content p {
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.8rem
}

/* CLIENTS */
.clients-bg {
  background: var(--navy);
  padding: 4rem 2rem
}

.clients-bg .sec-title {
  color: #fff
}

.clients-bg .sec-sub {
  color: rgba(255, 255, 255, .55)
}

.clients-bg .eyebrow {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8)
}

.clients-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem
}

.client-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 1.4rem 2.2rem;
  transition: var(--t);
  text-align: center
}

.client-card:hover {
  background: rgba(255, 255, 255, .13);
  transform: translateY(-3px)
}

.client-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff
}

.client-type {
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px
}

/* CERTS */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.cert-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--t)
}

.cert-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue)
}

.cert-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center
}

.cert-icon img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  display: block
}

.cert-icon.cert-svg svg {
  width: 52px;
  height: 52px
}

.cert-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem
}

.cert-card p {
  font-size: .8rem;
  color: var(--gray-600)
}

/* DIRECTORS */
.dir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem
}

.dir-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--t)
}

.dir-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.dir-av {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff
}

.dir-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy)
}

.dir-card p {
  font-size: .78rem;
  color: var(--gray-600);
  margin-top: .2rem
}

.dir-email {
  display: block;
  font-size: .78rem;
  color: var(--blue);
  text-decoration: none;
  margin-top: .5rem;
  word-break: break-all;
  transition: var(--t)
}

.dir-email:hover {
  color: var(--orange)
}

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(110deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 3.5rem 2rem
}

.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem
}

.cta-strip h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff
}

.cta-strip p {
  color: rgba(255, 255, 255, .6);
  margin-top: .25rem;
  font-size: .9rem
}

.cta-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--navy);
  padding: .8rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--t)
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2)
}

.btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: #fff;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, .35);
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  transition: var(--t)
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, .08);
  border-color: #fff
}

/* FOOTER */
/* ================= FOOTER ================= */

footer {
  background: #07111f;
  color: rgba(255, 255, 255, .55);
  padding: 4rem 2rem 1rem;
}

/* Footer Grid */
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

/* Brand Section */
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Footer Logo */
.footer-nav-logo-img {
  height: 180px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(.92);
  transition: .3s ease;
}

.foot-logo:hover .footer-nav-logo-img {
  transform: scale(1.03);
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(224, 92, 42, .45));
}

/* Footer Description */
.foot-brand p {
  font-size: .95rem;
  line-height: 1.9;
  max-width: 360px;
  color: rgba(255, 255, 255, .65);
}

/* Footer Headings */
.foot-col h4 {
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* Footer Links */
.foot-col ul {
  list-style: none;
}

.foot-col ul li {
  margin-bottom: .8rem;
}

.foot-col ul li a {
  color: rgba(255, 255, 255, .58);
  text-decoration: none;
  font-size: .9rem;
  transition: .25s ease;
}

.foot-col ul li a:hover {
  color: var(--orange);
  padding-left: 3px;
}

/* Contact Rows */
.foot-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .65);
}

/* Icons */
.f-ic {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Email + Contact Links */
.foot-row a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: .25s ease;
}

.foot-row a:hover {
  color: var(--orange);
}

/* Footer Bottom */
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .48);
}

.foot-bottom .orange {
  color: var(--orange);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

}

@media (max-width: 768px) {

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-nav-logo-img {
    height: 120px;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
  }

}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(110deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 8rem 2rem 4.5rem;
  color: #fff;
  text-align: center
}

.page-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700
}

.page-hero p {
  margin-top: .8rem;
  color: rgba(255, 255, 255, .6);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  font-size: .93rem
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  margin-top: 1.3rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4)
}

.breadcrumb a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none
}

.breadcrumb a:hover {
  color: #fff
}

.breadcrumb span {
  color: var(--orange)
}

/* CONTACT PAGE */
.cf {
  background: #fff;
  border-radius: 14px;
  padding: 2.4rem;
  box-shadow: var(--shadow-md)
}

.cf h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.4rem
}

.fg {
  margin-bottom: 1.1rem
}

.fg label {
  display: block;
  font-size: .81rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: .35rem
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: .75rem .95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 7px;
  font-family: inherit;
  font-size: .88rem;
  color: var(--gray-800);
  transition: var(--t);
  outline: none
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 85, 165, .1)
}

.fg textarea {
  resize: vertical;
  min-height: 110px
}

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

.info-card {
  display: flex;
  gap: .9rem;
  padding: 1.1rem;
  background: var(--gray-50);
  border-radius: 10px;
  margin-bottom: .9rem;
  border: 1px solid var(--gray-200)
}

.ic-icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem
}

.ic-text h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
  font-size: .9rem
}

.ic-text p,
.ic-text a {
  color: var(--gray-600);
  font-size: .84rem;
  text-decoration: none;
  display: block
}

.ic-text a:hover {
  color: var(--blue)
}

.map-wrap {
  margin-top: 1.4rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200)
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: none
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start
}

/* ANIMATE */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(-8px)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease
}

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

/* ── LOGO ANIMATIONS ── */
/* 1. Diamond draw-in on page load */
@keyframes drawDiamond {
  0% {
    stroke-dashoffset: 262
  }

  100% {
    stroke-dashoffset: 0
  }
}

/* 2. Inner mark fade+scale-in */
@keyframes markIn {
  from {
    opacity: 0;
    transform: scale(.7)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

/* 3. Continuous shimmer pulse on diamond */
@keyframes logoPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 0px rgba(224, 92, 42, 0))
  }

  50% {
    filter: drop-shadow(0 0 6px rgba(224, 92, 42, .55))
  }
}

/* 4. Hover spin for logo icon */
@keyframes logoSpin {
  0% {
    transform: rotate(0deg) scale(1)
  }

  50% {
    transform: rotate(8deg) scale(1.08)
  }

  100% {
    transform: rotate(0deg) scale(1)
  }
}

.logo-icon {
  flex-shrink: 0;
  color: #fff;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), filter .35s ease;
  animation: logoPulse 3.5s ease-in-out 2s infinite;
}

.logo-diamond-path {
  stroke-dasharray: 262;
  stroke-dashoffset: 262;
  animation: drawDiamond 1.1s cubic-bezier(.4, 0, .2, 1) .1s forwards;
}

.logo-mark-g {
  opacity: 0;
  transform-origin: 50px 50px;
  animation: markIn .45s ease .75s forwards;
}

/* Hover: rotate + glow */
.nav-logo:hover .logo-icon {
  transform: rotate(12deg) scale(1.1);
  filter: drop-shadow(0 0 10px rgba(224, 92, 42, .7));
  animation: none;
}

/* Footer logo - smaller, same white invert filter */
.foot-logo .nav-logo-img {
  height: 52px !important;
  filter: brightness(0) invert(0.85);
}

.foot-logo:hover .nav-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(224, 92, 42, .55));
  transform: scale(1.04);
}

/* ── PRODUCTS PAGE ── */

/* 2-col image+text layout used on products page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.about-img {
  border-radius: 14px;
  overflow: hidden
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease
}

.about-img:hover img {
  transform: scale(1.03)
}

.about-text .eyebrow {
  display: inline-block;
  margin-bottom: .8rem
}

.about-text .sec-title {
  text-align: left;
  margin-bottom: 1rem
}

.about-text p {
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.8;
  margin-bottom: .9rem
}

/* Tag list (product specs) */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.2rem
}

/* Section header centered (used on products page specs) */
.sec-header {
  text-align: center;
  margin-bottom: 3rem
}

.sec-header .sec-title {
  margin-bottom: .5rem
}

/* 3-col feature/spec cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid var(--gray-200);
  transition: var(--t);
  position: relative;
  overflow: hidden
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t)
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.card:hover::before {
  transform: scaleX(1)
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem
}

.card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem
}

.card p {
  color: var(--gray-600);
  font-size: .88rem;
  line-height: 1.7
}

/* ── BUTTON VARIANTS ── */

/* Gold/Orange CTA button */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  padding: .82rem 1.9rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--t);
  border: none;
  cursor: pointer
}

.btn-gold:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 92, 42, .4)
}

/* Indigo/Navy solid button */
.btn-indigo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  padding: .82rem 1.9rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--t);
  border: none;
  cursor: pointer
}

.btn-indigo:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 31, 61, .3)
}

/* Indigo/Navy outline button */
.btn-outline-indigo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: #fff;
  padding: .82rem 1.9rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  transition: var(--t)
}

.btn-outline-indigo:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff
}

/* ── FOOTER COMPONENTS ── */
/* Shared footer grid for products & contact pages */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-brand p {
  font-size: .86rem;
  line-height: 1.7;
  max-width: 270px;
  color: rgba(255, 255, 255, .55);
  margin-top: .9rem
}

.footer-col h4 {
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-col ul {
  list-style: none
}

.footer-col ul li {
  margin-bottom: .55rem
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: .84rem;
  transition: var(--t)
}

.footer-col ul li a:hover {
  color: var(--orange)
}

.footer-contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: .75rem;
  font-size: .84rem;
  color: rgba(255, 255, 255, .55)
}

.fc-icon {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px
}

.footer-contact-row a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: var(--t)
}

.footer-contact-row a:hover {
  color: var(--orange)
}

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

/* RESPONSIVE */
@media(max-width:1024px) {

  .feat-grid,
  .cert-grid,
  .dir-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .prod-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: .75rem;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links>li>a,
  .nav-toggle {
    padding: .7rem 1rem;
    width: 100%
  }

  /* Mobile dropdown: hidden by default, shown with JS class toggle */
  .dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    margin: .2rem .5rem;
    transition: max-height .3s ease, opacity .25s ease, visibility .25s ease;
  }

  .dropdown.mobile-open {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    padding: .3rem 0;
  }

  .dropdown li a {
    color: rgba(255, 255, 255, .7) !important;
    background: transparent !important;
    padding: .55rem 1.2rem;
    font-size: .84rem
  }

  .dropdown li a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, .08) !important
  }

  /* Rotate chevron when open */
  .nav-toggle.dropdown-active svg {
    transform: rotate(180deg)
  }

  .hamburger {
    display: flex
  }

  .feat-grid,
  .dir-grid {
    grid-template-columns: 1fr
  }

  .img-banner {
    min-height: 340px
  }

  .cta-strip .container {
    justify-content: center;
    text-align: center
  }

  .cta-actions {
    justify-content: center
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .foot-bottom {
    justify-content: center;
    text-align: center
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .hero-btns {
    flex-direction: column
  }

  /* Move slider arrows to bottom so they don't overlap CTA buttons */
  .slider-arrow {
    top: auto;
    bottom: 4.5rem;
    transform: none
  }

  .slider-arrow:hover {
    transform: scale(1.1)
  }

  .slider-prev {
    left: 1rem
  }

  .slider-next {
    right: 1rem
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  /* About & Infrastructure 2-col sections → single column on mobile */
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr !important
  }

  .split-img img {
    height: 260px
  }

  .split > div[style*="direction:ltr"] {
    direction: ltr !important
  }

  .about-img img {
    height: 280px
  }

  .card-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    justify-content: center;
    text-align: center
  }
}

@media(max-width:480px) {

  .prod-grid,
  .cert-grid,
  .stats-row {
    grid-template-columns: 1fr
  }

  .section {
    padding: 3.5rem 1rem
  }

  .clients-row {
    gap: 1rem
  }

  .about-grid {
    gap: 1.5rem
  }
}