/* ═══════════════════════════════════════════════════
   IngrOInfo — Global Stylesheet
   Use this file across all pages of the website.
   ═══════════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #1a4fa0;
  --blue-dk: #0d2d6b;
  --blue-md: #2563c8;
  --blue-lt: #e8f0fd;
  --blue-xl: #f0f5fe;
  --grey: #6b7280;
  --grey-lt: #f3f4f6;
  --grey-md: #e5e7eb;
  --grey-dk: #374151;
  --black: #111827;
  --white: #fff;
  --font: 'Syne', sans-serif;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .12);
  --shadow-lg: 0 14px 40px rgba(15, 23, 42, .18);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

.light {
  color: #ffffff;
}

.dark {
  color: #000000;
}

/* ── ANIMATIONS (KEYFRAMES) ── */
@keyframes scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 79, 160, .35);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(26, 79, 160, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(26, 79, 160, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(.85);
  }

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

@keyframes borderFlow {

  0%,
  100% {
    border-color: rgba(26, 79, 160, .3);
  }

  50% {
    border-color: var(--blue);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

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

/* ── SCROLL-REVEAL UTILITY ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ── BASE BODY ── */
body {
  font-family: var(--font);
  color: var(--black);
  background: #fff;
  overflow-x: hidden;
}

/* ════════════════════════════════
   NAV
════════════════════════════════ */
nav {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--grey-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.nav-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 32px;
  height: 66px;
  gap: 0;
}

.logo-13 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  /* min-width: 190px; */
}

.logo-icon-13 {
  width: 60px;
  height: 60px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
  /* margin-right: 5px; */
}

.logo-icon-13 img {
  width: 55px;
  height: 55px;
  border-radius: 5px;
  margin-right: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 190px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--blue);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}

.logo-icon img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

/* .logo:hover .logo-icon {
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 4px 16px rgba(26, 79, 160, .4);
} */

.logo-txt {
  font-size: 22px;
  font-weight: 800;
  color: #2d649a;
  line-height: 1.15;
}

.info {
  color: #8d7c75;
}

.logo-sub {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

/* Nav Menu */
.nm {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1;
  justify-content: end;
  gap: 0;
  padding-right: 5%;

}

.nm>li {
  position: relative;
}

.nm>li>a {
  display: block;
  padding: 0 14px;
  height: 66px;
  line-height: 66px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey-dk);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: color .2s, border-color .2s;
  cursor: pointer;
}

.nm>li>a:hover,
.nm>li.act>a {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nm>li:hover .mega,
.nm>li:hover .sub {
  display: block;
  animation: fadeInUp .2s ease;
}

/* Nav CTA */
.ncta {
  background: var(--blue);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.ncta:hover {
  background: var(--blue-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 79, 160, .35);
}

/* Mega / Sub menus */
.mega {
  display: none;
  position: absolute;
  top: 66px;
  left: 0;
  background: #fff;
  border: 1px solid var(--grey-md);
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 10px 10px;
  min-width: 660px;
  padding: 24px;
  z-index: 999;
}

.mega-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mega-h {
  grid-template-columns: repeat(3, 1fr);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue);
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-md);
  margin-bottom: 8px;
}

.mega-i {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mega-j {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mi {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--grey-dk);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background .15s, color .15s, transform .15s;
}

.mi:hover {
  background: var(--blue-lt);
  color: var(--blue);
  transform: translateX(3px);
}

.mi-ic {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.ub {
  height: auto
}

.ub:hover {
  background: var(--blue-lt);
  color: var(--blue);
  transform: translateX(3px);
  border-radius: 5px;
}

.ub .mi:hover {
  background: none;
  color: var(--grey-dk);
  transform: none;
}

.child {
  font-size: 10px;
  padding: 0 0 10px 30px;
  color: #1a4fa0;
}

.sub {
  display: none;
  position: absolute;
  top: 66px;
  left: 0;
  background: #fff;
  border: 1px solid var(--grey-md);
  border-top: 3px solid var(--blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  border-radius: 0 0 8px 8px;
  min-width: 210px;
  padding: 8px 0;
  z-index: 999;
}

.sub a {
  display: block;
  padding: 8px 20px;
  font-size: 12px;
  color: var(--grey-dk);
  text-decoration: none;
  font-weight: 500;
  transition: background .15s, color .15s, padding-left .15s;
}

.sub a:hover {
  background: var(--blue-lt);
  color: var(--blue);
  padding-left: 26px;
}

/* MOBILE VIEW FIXED */
@media (max-width: 768px) {

  .nav-in {
    flex-wrap: wrap;
    padding: 10px 16px;
    height: auto;
  }

  .logo {
    flex: 1;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #000;
  }

  /* MENU */
  .nm {
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }

  .nm.active {
    display: flex;
  }

  .nm>li>a {
    height: auto;
    line-height: normal;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
  }

  .nm li {
    width: 100%;
  }

  /* DROPDOWN FIX */
  .sub,
  .mega {
    position: static;
    display: none;
    background: #f9f9f9;
    padding: 10px 15px;
    border: none;
    box-shadow: none;
    min-width: 100%;
  }

  .nm li.open .sub,
  .nm li.open .mega {
    display: block;
  }

  /* <i class="bi bi-fire"></i> VERY IMPORTANT: BREAK GRID */
  .mega-i,
  .mega-g,
  .mega-j {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
  }

  .mi {
    padding: 10px;
  }

  .mega-h {
    margin-top: 10px;
  }

  /* CTA hidden */
  .ncta {
    display: none;
  }
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  height: 500px;
  pointer-events: auto;
}

.hslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.hslide.act {
  opacity: 1;
  z-index: 2;
}

/* Animated particle overlay on slides */
.hslide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .04) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .04) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 50px 50px;
  pointer-events: none;
}

.h1bg {
  background: linear-gradient(rgb(8 33 61 / 19%), rgb(26 79 160 / 26%)), url(/assete/images/index-background/ubarms-2.webp);
  background-size: cover;
  background-position: center;
}

.h2bg {
  background:
    linear-gradient(rgba(8, 33, 61, 0.11), rgba(26, 79, 160, 0.123)),
    url(/assete/images/index-background/secure.webp);
  background-size: cover;
  background-position: center;
}

.h3bg {
  background-image: url(/assete/images/index-background/pipeline.webp);
  background-size: cover;
  /* background: linear-gradient(135deg, #0a1a2e 0%, #0e2e56 55%, #185fa5 100%); */
}

.h4bg {
  background:
    linear-gradient(rgba(8, 33, 61, 0.164), rgba(26, 79, 160, 0.219)),

    url(/assete/images/index-background/banner.webp);
  background-size: cover;
  background-position: center;
}

.h5bg {
  background:
    linear-gradient(rgba(8, 33, 61, 0.199), rgba(26, 79, 160, 0.24)),
    url(/assete/images/index-background/cctv.webp);
  background-size: cover;
  background-position: center;
}

.h6bg {
  background:
    linear-gradient(rgba(8, 33, 61, 0.233), rgba(26, 79, 160, 0.205)),
    url(/assete/images/index-background/civilworksbanner.webp);
  background-size: cover;
  background-position: center;
}

.hcont {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hslide.act .hbadge {
  animation: fadeInUp .5s ease .1s both;
}

.hslide.act .htitle {
  animation: fadeInUp .5s ease .22s both;
}

.hslide.act .hsub {
  animation: fadeInUp .5s ease .34s both;
}

.hslide.act .htags {
  animation: fadeInUp .5s ease .42s both;
}

.hslide.act .hbtns {
  animation: fadeInUp .5s ease .5s both;
}

.hbadge {
  display: inline-block;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.htitle {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 14px;
  /* max-width: 620px; */
}

.htitle span {
  color: #ffffff;
}

.hsub {
  font-size: 14.5px;
  color: rgb(255, 255, 255);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.htags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.htag {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.hbtns {
  display: flex;
  gap: 12px;
}

/* Hero Buttons */
.bw {
  background: #fff;
  color: var(--blue);
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bw:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, .3);
}

.bo {
  background: #1a4fa0;
  color: #fff;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.bo:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .8);
  transform: translateY(-2px);
}


.hcont-2 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hslide-2.act .hbadge-2 {
  animation: fadeInUp .5s ease .1s both;
}

.hslide-2.act .htitle-2 {
  animation: fadeInUp .5s ease .22s both;
}

.hslide-2.act .hsub-2 {
  animation: fadeInUp .5s ease .34s both;
}

.hslide-2.act .htags-2 {
  animation: fadeInUp .5s ease .42s both;
}

.hslide-2.act .hbtns-2 {
  animation: fadeInUp .5s ease .5s both;
}

.hbadge-2 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #000000;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.htitle-2 {
  font-size: 44px;
  font-weight: 800;
  color: #000000;
  line-height: 1.12;
  margin-bottom: 14px;
  /* max-width: 620px; */
}

.htitle-2 span {
  color: #1a4fa0;
}

.hsub-2 {
  font-size: 14.5px;
  color: rgb(0, 0, 0);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.htags-2 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.htag-2 {
  background: rgba(0, 0, 0, .05);
  border: 1px solid rgba(0, 0, 0, .12);
  color: #222;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.hbtns-2 {
  display: flex;
  gap: 12px;
}

/* Hero Buttons */
.bw-2 {
  background: var(--blue);
  color: #fff;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bw-2:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.bo-2 {
  background: transparent;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid rgba(0, 0, 0, .2);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.bo-2:hover {
  background: rgba(0, 0, 0, .05);
  border-color: rgba(0, 0, 0, .4);
  transform: translateY(-2px);
}


/* Hero Buttons */
.bw-3 {
  background: var(--blue);
  color: #fff;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bw-3:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.bo-3 {
  background: #ffffff;
  color: #000000;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid rgb(255, 255, 255);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.bo-3:hover {
  background: rgba(0, 0, 0, .05);
  border-color: rgba(0, 0, 0, .4);
  transform: translateY(-2px);
}

/* Hero Dots */
.hdots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  border: none;
  transition: background .2s, width .3s cubic-bezier(.4, 0, .2, 1);
}

.hdot.act {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

/* Hero Certs */
.hcerts {
  position: absolute;
  bottom: 18px;
  right: 48px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hcert {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}

/* ════════════════════════════════
   MATERIAL SYMBOLS
════════════════════════════════ */
.material-symbols-outlined {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  letter-spacing: normal;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.workflow-icon .material-symbols-outlined {
  font-size: 2.3rem;
  color: var(--blue);
  min-width: 1.6em;
}

/* ════════════════════════════════
   SECTORS BAR
════════════════════════════════ */
.sectors-wrap {
  background: var(--blue-xl);
  padding: 15px 0;
  border-bottom: 1px solid var(--grey-md);
}

.sectors-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.sectors-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  text-align: left;
  margin-bottom: 24px;
}

.sectors-grid {
  display: flex;
  justify-content: center;
  gap: 45px;
}

.sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  cursor: pointer;
  /* border-right: 1px solid var(--grey-md); */
  transition: background var(--transition), transform var(--transition);
}

.sector:last-child {
  border-right: none;
}

.sector:hover {
  background: var(--blue-lt);
  transform: translateY(-3px);
}

.sector-ic {
  width: 60px;
  height: 60px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #fff;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.bigfont {
  font-size: 35px;
}

.sector:hover .sector-ic {
  background: var(--blue);
  animation: pulseRing .6s ease;
  color: #fff;
}

.sector-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-dk);
  text-align: center;
  line-height: 1.3;
}

/* ════════════════════════════════
   STATS BAR
════════════════════════════════ */
.stats {
  background: var(--blue-dk);
  padding: 16px 0;
}

.stats-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stat {
  text-align: left;
  color: #fff;
  animation: countUp .6s ease both;
}

.snum {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 40%, #7eb3f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slbl {
  font-size: 10.5px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .5px;
  margin-top: 2px;
}

.sdiv {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
}

/* ════════════════════════════════
   SECTION HEADERS (shared)
════════════════════════════════ */
.sec-wrap {
  padding: 72px 0;
}

.sec-wrap.alt {
  background: var(--grey-lt);
}

.sec-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.sec-eyebrow {
  font-size: 16px;
  font-weight: 700;
  /* letter-spacing: 1.5px; */
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.sec-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.sec-sub {
  font-size: 14px;
  color: var(--grey);
  max-width: 1160px;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 40px;
}

/* ════════════════════════════════
   ABOUT SECTION
════════════════════════════════ */
.about-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 10px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 25px;
  align-items: center;
}

.about-eyebrow {
  font-size: 16px;
  font-weight: 700;
  /* letter-spacing: 1.5px; */
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.about-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-body {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.pillar {
  background: var(--blue-xl);
  border-left: 3px solid var(--blue);
  padding: 12px 14px;
  border-radius: 0 6px 6px 0;
  transition: background var(--transition), border-color var(--transition);
}

.pillar:hover {
  background: #1a4fa0;
  border-color: var(--blue-md);
}

.pillar:hover .pillar-h,
.pillar:hover .pillar-p {
  color: #ffffff;
}

.pillar-h {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.pillar-p {
  font-size: 11.5px;
  color: var(--grey);
  line-height: 1.5;
}


.pillar-2 {
  background: #1a4fa0;
  border-left: 3px solid var(--blue);
  padding: 12px 14px;
  border-radius: 0 6px 6px 0;
  transition: background var(--transition), border-color var(--transition);
}

.pillar-2:hover {
  background: var(--blue-lt);
  border-color: var(--blue-md);
}

.pillar-h-2 {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.pillar-p-2 {
  font-size: 11.5px;
  color: #fff;
  line-height: 1.5;
}

.pillar-2:hover .pillar-h-2,
.pillar-2:hover .pillar-p-2 {
  color: #000000;
}

.about-certs {
  display: flex;
  gap: 10px;
}

.cert {
  background: var(--blue-lt);
  border: 1px solid rgba(26, 79, 160, .2);
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background var(--transition), transform var(--transition);
}

.cert:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

/* About Visual Cards */
.about-visual {
  background: linear-gradient(135deg, var(--blue-xl) 0%, var(--blue-lt) 100%);
  border-radius: 14px;
  /* padding: 32px; */
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 14px;
  border: 1px solid rgba(26, 79, 160, .12);
}

.about-visual img {
  height: 500px;
}

.acard {
  background: #fff;
  border-radius: 8px;
  padding: 18px 16px;
  border: 1px solid var(--grey-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.acard-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  text-align: left;
  line-height: 1;
}

.acard-lbl {
  font-size: 11px;
  color: var(--grey);
  margin-top: 4px;
}

.acard.highlight {
  background: var(--blue);
  border-color: var(--blue);
}

.acard.highlight .acard-num,
.acard.highlight .acard-lbl {
  color: #fff;
}

/* ════════════════════════════════
   PRODUCT / SERVICE EXPLORER
════════════════════════════════ */
.explorer {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--grey-md);
  border-radius: 12px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: var(--shadow-sm);
}

.explorer.list-left {
  grid-template-columns: 300px 1fr;
}

.explorer.list-right {
  grid-template-columns: 1fr 300px;
}

.exp-list {
  border-right: 1px solid var(--grey-md);
  overflow-y: auto;
  background: #fff;
}

.explorer.list-right .exp-list {
  border-right: none;
  border-left: 1px solid var(--grey-md);
}

/* List Items */
.eli {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--grey-md);
  transition: background .15s, padding-left .2s;
  position: relative;
}

.eli:last-child {
  border-bottom: none;
}

.eli:hover {
  background: var(--blue-xl);
  padding-left: 24px;
}

.eli.sel {
  background: var(--blue-lt);
  border-left: 3px solid var(--blue);
}

.explorer.list-right .eli.sel {
  border-left: none;
  border-right: 3px solid var(--blue);
}

.eli-ic {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--blue-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .2s;
}

.eli:hover .eli-ic {
  transform: scale(1.1);
}

.eli.sel .eli-ic {
  background: #fff;
}

.eli-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-dk);
  line-height: 1.3;
}

.eli.sel .eli-name {
  color: var(--blue);
  font-weight: 700;
}

.eli-tag {
  font-size: 10.5px;
  color: var(--grey);
  margin-top: 2px;
}

.eli-arr {
  margin-left: auto;
  font-size: 16px;
  color: var(--blue);
  opacity: 0;
  transition: opacity .15s, transform .2s;
  flex-shrink: 0;
}

.eli.sel .eli-arr {
  opacity: 1;
}

.explorer.list-right .eli-arr {
  margin-left: 0;
  margin-right: auto;
  transform: rotate(180deg);
}

/* Detail Panel */
.exp-detail {
  padding: 20px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  order: 0;
}

.explorer.list-right .exp-detail {
  order: -1;
}

.det-badge {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  animation: fadeIn .3s ease;
}

.sector-badge {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  animation: fadeIn .3s ease;
  width: fit-content;
}

.det-divider {
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 20px;
}

.det-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.2;
  animation: slideInLeft .3s ease;
}

.det-desc {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 24px;
  /* max-width: 520px; */
  animation: fadeIn .4s ease;
}

.det-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 30px;
}

.det-feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--grey-dk);
  line-height: 1.4;
}

.det-feat::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 5px;
}

.det-btn,
.det-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.det-btn:hover,
.det-link:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 79, 160, .35);
}

/* Explorer Tabs */
.explorer-bg {
  background: var(--grey-lt);
  padding: 72px 0;
}

.explorer-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.exp-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--grey-md);
  margin-bottom: 32px;
}

.et {
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}

.et.act {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.et:hover:not(.act) {
  color: var(--grey-dk);
}

.exp-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--grey-md);
  border-radius: 12px;
  overflow: hidden;
  min-height: 480px;
}

.exp-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--grey-md);
  transition: background .15s, padding-left .2s;
  position: relative;
}

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

.exp-list-item:hover {
  background: var(--blue-xl);
  padding-left: 24px;
}

.exp-list-item.sel {
  background: var(--blue-lt);
  border-left: 3px solid var(--blue);
}

.exp-list-item .eli-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey-dk);
}

.exp-list-item.sel .eli-name {
  color: var(--blue);
  font-weight: 700;
}

.exp-list-item .eli-tag {
  font-size: 9.5px;
  color: var(--grey);
  font-weight: 400;
  margin-top: 1px;
}

.exp-list-item .eli-arr {
  margin-left: auto;
  font-size: 14px;
  color: var(--blue);
  opacity: 0;
  transition: opacity .15s;
}

.exp-list-item.sel .eli-arr {
  opacity: 1;
}

/* ════════════════════════════════
   WORKFLOW SECTION
════════════════════════════════ */
.workflow-section {
  background: #f1f4fe;
  padding: 48px 0;
}

.workflow-inner {
  max-width: 1180px;
  margin: 0 auto;
  /* padding: 0 32px; */
}

.workflow-head {
  text-align: left;
  margin-bottom: 32px;
}

.workflow-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-block;
  margin-bottom: 10px;
}

.workflow-title {
  font-size: clamp(2.2rem, 4.5vw, 44px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 12px;
}

.workflow-sub {
  font-size: 14px;
  color: var(--grey-dk);
  line-height: 1.6;
  text-align: left;
  margin: 0 auto;
  max-width: 1520px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.workflow-card {
  background: #fff;
  border: 1px solid var(--grey-md);
  border-radius: 18px;
  padding: 20px 24px;
  text-align: left;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.workflow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-md));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.workflow-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.workflow-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(26, 79, 160, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .12);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.workflow-card:hover .workflow-icon {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(26, 79, 160, .25);
  transform: scale(1.08);
}

.workflow-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0;
}

.workflow-step-desc {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.5;
}

/* ════════════════════════════════
   M2C LEGACY / DARK STEPS
════════════════════════════════ */
.m2c-legacy {
  background: #0a1325;
  color: #fff;
  padding: 56px 20px;
  font-family: 'Syne', sans-serif;
}

.m2c-legacy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.m2c-legacy-label {
  color: #43decd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.m2c-legacy-title {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 800;
  margin: 0;
}

.m2c-legacy-line {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  position: relative;
}

.m2c-step {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.m2c-step:hover {
  background: rgba(67, 222, 205, .07);
  border-color: rgba(67, 222, 205, .35);
  transform: translateY(-4px);
}

.m2c-icon {
  width: 60px;
  height: 60px;
  background: #171f32;
  border: 2px solid #43decd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #43decd;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .35);
  transition: transform .3s, box-shadow .3s;
}

.m2c-step:hover .m2c-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(67, 222, 205, .4);
}

.m2c-step h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.m2c-step p {
  margin: 0;
  color: #d0d7d4;
  line-height: 1.6;
  font-size: .95rem;
}

/* Process step (green teal accent) */
.process-step {
  transition: all 0.3s ease;
  border: 1px solid rgba(67, 222, 205, .1);
}

.process-step:hover {
  border-color: #43decd;
  background: rgba(67, 222, 205, .05);
  transform: translateY(-5px);
}

/* ════════════════════════════════
   CIVIL WORKS (BENTO)
════════════════════════════════ */
.civil-works {
  background: var(--grey-lt);
  color: var(--grey-dk);
  padding: 48px 0 16px;
  display: flex;
  justify-content: center;
}

.civil-works-inner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 40px;
  margin: 0 auto;
  align-items: start;
  text-align: left;
}

.civil-works .sec-eyebrow {
  font-size: 16px;
  font-weight: 700;
  /* letter-spacing: 1.5px; */
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.civil-works .sec-title {
  font-size: 34px;
  font-weight: 800;
  margin: 0;
  max-width: 1550px;
  color: var(--black);
}



.civil-works .sec-sub {
  font-size: 14px;
  color: var(--grey);
  max-width: 1550px;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 40px;
}

.blueprint-container {
  background: linear-gradient(180deg, #fff, #f8f9ff);
  border-radius: 14px;
  padding: 50px 42px;
  border: 1px solid rgba(15, 23, 42, .12);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  grid-auto-rows: minmax(170px, auto);
  gap: 24px;
  justify-items: stretch;
  grid-auto-flow: dense;
}

.bento-item {
  position: relative;
  border-radius: 20px;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .15);
  background: linear-gradient(135deg, #0f172a, #0b1225);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .25);
}


.bento-main {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 320px;
}

.bento-medium {
  grid-column: span 2;
}

.bento-tall {
  grid-row: span 2;
}

.bento-small {
  min-height: 140px;
}

.bento-small-road {
  grid-row: span 2;
}

.bento-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(15, 23, 42, .4);
}

.bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: .25; */
  filter: grayscale(20%);
  transition: opacity .4s, transform .4s;
}

.bento-item:hover img {
  opacity: .35;
  transform: scale(1.04);
}

.bento-content {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* backdrop-filter: blur(2px); */
  cursor: pointer;
}

.bento-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.bento-desc {
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
  margin: 0;
}

.icon-card .icon-circle {
  font-size: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.icon-card .bento-content {
  position: relative;
  justify-content: flex-start;
}

.icon-card .bento-desc {
  color: rgba(255, 255, 255, .85);
}

/* ════════════════════════════════
   WHY CHOOSE US
════════════════════════════════ */
.why-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--grey-md);
  border-radius: 10px;
  padding: 28px 24px;
  border-top: 3px solid var(--blue);
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-xl), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.why-card:hover {
  box-shadow: 0 6px 24px rgba(26, 79, 160, .15);
  transform: translateY(-4px);
}

/* .why-card:hover::after {
  opacity: 1;
} */



/* .why-card:hover .why-ic {
  transform: scale(1.15) rotate(-5deg);
} */

.why-ic {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  transition: transform .3s;
}

.why-h {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.why-p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.why-card-2 {
  background: #1a4fa0;
  border: 1px solid var(--grey-md);
  border-radius: 10px;
  padding: 28px 24px;
  border-top: 3px solid var(--blue);
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}

.why-card-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-xl), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.why-card-2:hover {
  box-shadow: 0 6px 24px rgba(26, 79, 160, .15);
  transform: translateY(-4px);
}

/* .why-card-2:hover::after {
  opacity: 1;
} */



.why-card-2:hover .why-ic {
  transform: scale(1.15) rotate(-5deg);
}

.why-ic-2 {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  transition: transform .3s;
}

.why-h-2 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.why-p-2 {
  font-size: 13px;
  color: #fff;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════
   CLIENTS MARQUEE
════════════════════════════════ */
.cli-wrap {
  background: var(--grey-lt);
  padding: 40px 0;
  border-top: 1px solid var(--grey-md);
  border-bottom: 1px solid var(--grey-md);
}

.cli-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.cli-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  margin-bottom: 24px;
}

.cli-scroll {
  overflow: hidden;
}

.cli-track {
  display: flex;
  gap: 28px;
  animation: scroll 20s linear infinite;
  width: max-content;
}

.cli-track:hover {
  animation-play-state: paused;
}

.cli-logo {
  height: 100px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--grey-md);
  border-radius: 7px;
  padding: 0 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.cli-logo:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(26, 79, 160, .15);
}

.cli-logo span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--grey-dk);
}

.cli-logo img {
  height: 90px;
  width: 90px;
}

/* ════════════════════════════════
   FOOTER CTA
════════════════════════════════ */
.fcta {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue-md));
  padding: 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, .06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, .04) 0%, transparent 60%);
  pointer-events: none;
}

.fcta-t {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.fcta-s {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 26px;
  position: relative;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: #0a1628;
  padding: 44px 0 0;
}

.footer-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.fb-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: -20px;
}

.fb-desc {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-bottom: 14px;
}

.fc {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 8px;
  line-height: 1.5;
}

.fch {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 12px;
}

.fl {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  margin-bottom: 7px;
  transition: color .15s, padding-left .15s;
}

.fl:hover {
  color: #fff;
  padding-left: 4px;
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fcopy {
  font-size: 10.5px;
  color: rgba(255, 255, 255, .3);
}

.socials {
  display: flex;
  gap: 30px;
  margin-left: 10px;
  margin-top: 20px;
}

.sb {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.sb:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-logo img {
  background-color: #ffffff;
  padding: 5px;
}

.footer-logo {
  margin-bottom: 10px;
}

/* ════════════════════════════════
   WHATSAPP FAB
════════════════════════════════ */
.wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  /* box-shadow: 0 4px 20px rgba(37, 211, 102, .5); */
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatY 3s ease-in-out infinite;
}

.wa:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .6);
  animation: none;
}


.up {
  cursor: pointer;
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #ffd905;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  /* box-shadow: 0 4px 20px rgb(255, 217, 0); */
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatY 3s ease-in-out infinite;
}

.up:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 20px rgb(255, 217, 0);
  animation: none;
}

.nav-sub-logo {
  width: 20px;
  height: 20px;
}

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

  .fg {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 32px;
  }
}

@media (max-width: 960px) {
  .civil-works {
    padding: 40px 18px;
  }

  .blueprint-container {
    max-width: 760px;
    padding: 40px 32px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(170px, 1fr));
  }

  .bento-item {
    min-height: 150px;
  }

  .bento-main,
  .bento-medium,
  .bento-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .exp-layout {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width: 768px) {
  .nm {
    display: none;
  }

  .sectors-wrap {
    overflow: hidden;
  }

  .sectors-in {
    padding: 0;
  }

  .sectors-grid {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .sectors-grid::-webkit-scrollbar {
    display: none;
  }

  .sector {
    min-width: 110px;
    flex-shrink: 0;
    border-right: none;
    padding: 14px 10px;
  }

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

  .workflow-inner {
    padding: 0 24px;
  }

  .m2c-legacy {
    padding: 48px 16px;
  }

  .m2c-legacy-line {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
  }

  .htitle {
    font-size: 30px;
  }

  .sec-in {
    padding: 0 24px;
  }

  .explorer.list-left,
  .explorer.list-right {
    grid-template-columns: 1fr;
  }

  .exp-list {
    max-height: 280px;
  }

  .exp-layout {
    grid-template-columns: 1fr;
  }

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

  .stats-in {
    padding: 0 24px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .sdiv {
    display: none;
  }
}

@media (max-width: 640px) {
  .blueprint-container {
    max-width: 380px;
    padding: 28px 20px;
  }

  .htitle-2 {
    font-size: 26px;
  }

  .htags {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    margin-bottom: 5px;
  }

  .bento-grid {
    grid-template-columns: repeat(1, minmax(160px, 1fr));
  }

  .bento-item {
    min-height: 140px;
  }

  .hero {
    height: 500px;
  }

  .htitle {
    font-size: 26px;
  }

  .hcerts {
    display: none;
  }

  .about-visual img {
    height: 375px;
  }

  .about-visual .main-img {
    width: 300px !important;
    height: 440px !important;
  }

  .about-visual .float-img {
    position: absolute;
    width: 125px !important;
    height: 150px !important;
  }

  .about-visual .float-img.top {
    top: -30px !important;
    right: -40px !important;
  }

  .about-visual .float-img.bottom {
    bottom: -30px !important;
    left: -30px !important;
  }


  .hsub {
    line-height: normal;
  }

  .hbadge {
    margin-bottom: 0px;
  }

  .hcont {
    padding: 0 25px;
  }

  .footer-in {
    padding: 0 25px;
  }

  .exp-detail {
    padding: 20px;
  }

  .h1bg {
    background: linear-gradient(rgb(8 33 61 / 19%), rgb(26 79 160 / 26%)), url(/assete/images/index-background/ubarms_mobile.jpg);
    background-size: cover;
    background-position: center;
  }

  .h2bg {
    background:
      linear-gradient(rgba(8, 33, 61, 0.11), rgba(26, 79, 160, 0.123)),
      url(/assete/images/index-background/secure_mobile.webp);
    background-size: cover;
    background-position: center;
  }

  .h4bg {
    background:
      linear-gradient(rgba(8, 33, 61, 0.164), rgba(26, 79, 160, 0.219)),

      url(/assete/images/index-background/scada_mobile.webp);
    background-size: cover;
    background-position: center;
  }

  .h5bg {
    background:
      linear-gradient(rgba(8, 33, 61, 0.199), rgba(26, 79, 160, 0.24)),
      url(/assete/images/index-background/cctv_mobile.webp);
    background-size: cover;
    background-position: center;
  }

  .h6bg {
    background:
      linear-gradient(rgba(8, 33, 61, 0.233), rgba(26, 79, 160, 0.205)),
      url(/assete/images/index-background/civilworksbanner_mobile.webp);
    background-size: cover;
    background-position: center;
  }
}


/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #000000;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

  .hamburger {
    display: block !important;
  }

  .nm {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    display: none;
    padding: 20px;
    z-index: 999;
  }

  .nm.active {
    display: flex;
  }

  .nm li {
    margin: 10px 0;
  }

  .sub,
  .mega {
    position: static;
    display: none;
    background: #ffffff;
    padding: 10px;
  }

  .nm li.open .sub,
  .nm li.open .mega {
    display: block;
  }

  .ncta {
    display: none;
  }

  .civil-works-inner {
    padding: 0;
  }
}

/* ---------------------------------------------------------------------------- */
.det-img-wrap {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.det-img {
  width: 100%;
  height: 330px;
  object-fit: fill;

}

.det-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}


/* --------------------------------------------------------------- */
.about-visual {
  position: relative;
  width: fit-content;
  margin: auto;
}

/* Main Image */
.about-visual .main-img {
  width: 420px;
  height: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

/* Floating Images */
.about-visual .float-img {
  position: absolute;
  width: 180px;
  height: 235px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: transform 0.3s ease;
}

/* Top Right */
.about-visual .float-img.top {
  top: -85px;
  right: -65px;
}

/* Bottom Left */
.about-visual .float-img.bottom {
  bottom: -89px;
  left: -50px;
  z-index: 4;
}

/* Optional hover effect */
.about-visual .float-img:hover {
  transform: scale(1.05);
}

.sb .bi-linkedin {
  color: #0A66C2;
  background-color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 32px;
}

.sb .bi-facebook {
  color: #1877F2;
  background-color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 32px;
}

.sb .bi-youtube {
  color: #FF0000;
  background-color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 32px;
}

.sb .bi-threads {
  color: #000000;
  background-color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 32px;
}

.sb .bi-instagram {
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 32px;
  background-image: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  ;
}

.sb i {
  transition: transform 0.2s ease, opacity 0.2s;
}

.sb:hover i {
  transform: scale(1.2);
  opacity: 0.85;
}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}