:root {
  --green: #0F8B3C;
  --green-light: #12a347;
  --green-pale: #e8f5ee;
  --green-mid: #d0edda;
  --red: #D01B26;
  --red-light: #e82030;
  --dark: #111714;
  --body-bg: #ffffff;
  --alt-bg: #f7f9f8;
  --alt-bg2: #eef3f0;
  --border: #dde6e0;
  --muted: #6b7c72;
  --text: #2d3e33;
  --heading: #111714;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
html, body {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.hero {
  min-height: 100svh;
  overflow: visible;
}

.hero-bg,
.hero-grid,
.hero-lines,
.hero-image-wrap,
.hero-image-overlay {
  pointer-events: none;
}
html {
  /*scroll-behavior: smooth*/
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--body-bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--alt-bg)
}

::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 2px
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 72px;
  background: rgb(255 255 255);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

nav .container {
  width: 100%;
}

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

.nav-logo img {
  height: 60px;
  width: auto;
  display: block
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
  position: relative;
  padding: 8px 5px ;
}
@media only screen and (max-width: 1400px) {
  .nav-links a {
    padding: 8px 2px;
  }
  .nav-logo img {
    height: 55px;
  }
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width .3s
}

.nav-links a:hover {
  color: var(--green)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  padding: 9px 18px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  letter-spacing: normal;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  display: inline-block;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--red-light);
  transform: scale(1.03)
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 100px 60px 70px;
  background: var(--heading);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 70% 50%, rgba(15, 139, 60, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 15% 80%, rgba(208, 27, 38, 0.06) 0%, transparent 50%),
    linear-gradient(160deg, #0d1510 0%, #111714 60%, #0a0c0b 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(15, 139, 60, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 139, 60, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-lines {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  pointer-events: none;
  overflow: hidden
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: scanline 4s linear infinite;
}

.hero-lines::before {
  width: 60%;
  top: 38%;
  animation-delay: 0s;
  opacity: .4
}

.hero-lines::after {
  width: 40%;
  top: 55%;
  animation-delay: 2s;
  opacity: .25
}

@keyframes scanline {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(200%)
  }
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
  transform: scale(1.05);
}

.hero-image-wrap img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 23, 20, 0.95) 0%, rgba(17, 23, 20, 0.7) 40%, transparent 90%);
  z-index: 1;
}

.hero-schematic {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 300px;
  opacity: 0.1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-bottom: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .6s .2s forwards
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red)
}

.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .7s .4s forwards;
}

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

.hero-h1 .outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
  color: transparent
}

.hero-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .7s .6s forwards;
  font-weight: 400
}

.hero-sub strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp .7s .8s forwards
}

.btn-primary {
  padding: 16px 36px;
  background: var(--green);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background .2s, transform .2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px)
}

.btn-outline {
  padding: 15px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  display: inline-block
}

.btn-outline:hover {
  border-color: var(--green);
  color: #fff
}

.hero-stats {
  position:relative;
  width: fit-content;
  /*bottom: 32px;
 left: 60px;*/
  /* right: 60px; */
  display: flex;
  background: linear-gradient(90deg, rgba(15, 139, 60, 0.2) 0%, rgba(208, 27, 38, 0.2) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 20px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .7s 1s forwards
}

.hero-stat {
  flex: 1;
  padding-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08)
}

.hero-stat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 40px
}

.hero-stat:not(:first-child) {
  padding-left: 40px
}

.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0px
}

.hero-stat-num span {
  color: var(--green)
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

/* HERO SCROLL ARROW */
.hero-scroll-arrow {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: border-color 0.3s, background 0.3s;
  opacity: 0;
  animation: scrollBounce 2s ease-in-out infinite, fadeUp 0.7s 1.2s forwards;
}

.hero-scroll-arrow:hover {
  border-color: var(--green);
  background: rgba(15, 139, 60, 0.15);
}

@keyframes scrollBounce {

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

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

/* SHARED */
section {
  padding: 100px 60px
}

.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green)
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.6vw, 36px) !important; 
  font-weight: 600;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 1.1;
  letter-spacing: -.5px
}

.section-title em {
  font-style: normal;
  color: var(--green)
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: gap .2s
}

.btn-link:hover {
  gap: 16px
}

.btn-link::after {
  content: '→'
}

/* ABOUT */
.about {
  background: var(--alt-bg);
  padding: 68px 52px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.about-left .section-title {
  font-size: clamp(26px, 3.2vw, 42px);
  margin-bottom: 0;
}

.about-right p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
}

.about-right p strong {
  color: var(--text);
  font-weight: 600
}

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

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--green-pale);
  border-left: 3px solid var(--green)
}

.highlight-item .hi-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  color: var(--green);
  line-height: 1
}

.highlight-item .hi-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4
}

/* SECTORS */
.sectors {
  background: var(--body-bg)
}

.sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-top: 56px
}

.sector-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: #ccc
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.0);
  transition: filter .5s, transform .5s
}

.sector-card:hover img {
  filter: brightness(0.85) saturate(1.0);
  transform: scale(1.04)
}

.sector-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sector-content-box {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  padding: 40px;
  width: 100%;
}

.sector-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px
}

.sector-icon {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 16px;
  transition: width .3s
}

.sector-card:hover .sector-icon {
  width: 60px
}

.sector-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 10px
}

.sector-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 100%;
  font-weight: 300
}

@media (max-width: 768px) {
  .sectors {
    overflow: hidden;
  }

  .sectors .section-title {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.08;
  }

  .sector-card {
    aspect-ratio: auto;
    min-height: 340px;
  }

  .sector-content-box {
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 58%, transparent 100%);
  }

  .sector-icon {
    width: 32px;
    margin-bottom: 12px;
  }

  .sector-name {
    font-size: 22px;
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .sector-desc {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .sector-card {
    min-height: 380px;
  }

  .sector-content-box {
    padding: 22px 18px;
  }

  .sector-name {
    font-size: 20px;
  }

  .sector-desc {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* SOLUTIONS / CAPABILITIES REDESIGN (ENERGIA THEME) */
.solutions {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #f4f7f6;
}

.solutions-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.solutions-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: brightness(0.6) saturate(1.1);
}

.solutions-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 23, 20, 0.95) 0%, rgba(17, 23, 20, 0.6) 50%, rgba(17, 23, 20, 0.2) 100%);
}

.solutions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 0px 0;
}

.solutions-header .section-title {
  color: #fff;
}

.solutions-header .section-tag {
  color: var(--green-light);
}

.solutions-header .btn-link {
  color: #fff !important;
}

.solutions-header .btn-link::after {
  color: #fff;
}

.solutions-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.solutions-grid-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 30px 0;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background:
    radial-gradient(circle at 15% 50%, rgba(15, 139, 60, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(208, 27, 38, 0.12) 0%, transparent 50%),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

.cap-card {
  display: block;
  padding: 34px 18px;
  text-align: center;
  position: relative;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: all 0.4s ease;
}

.cap-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.cap-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cap-card:active {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cap-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: -2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cap-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cap-icon svg {
  width: 54px;
  height: 54px;
  stroke: #fff;
  stroke-width: 1;
  fill: none;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.cap-card:hover .cap-icon svg {
  transform: scale(1.1);
  stroke-width: 1.2;
}

.cap-card:active .cap-icon svg,
.cap-card:focus-visible .cap-icon svg {
  transform: scale(1.1);
  stroke-width: 1.2;
}

.cap-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.solutions-cta-bar {
  background: var(--green);
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  width: 100%;
  margin-top: 40px;
}

.cta-text {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-outline-white {
  display: inline-block;
  padding: 14px 32px;
  background: var(--red);
  border: 1.5px solid var(--red);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-white:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cap-card {
    padding: 28px 16px;
  }

  .cap-icon svg {
    width: 46px;
    height: 46px;
  }

  .cap-title {
    font-size: 13px;
  }

  .solutions-cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

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

  .cap-card {
    padding: 26px 20px;
  }

  .cap-card:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 18px;
    right: 18px;
    width: auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
  }

  .cap-card:hover,
  .cap-card:active,
  .cap-card:focus-visible {
    transform: translateY(-4px);
  }
}


/* PROJECTS SIDE-BY-SIDE SLIDER */
.projects {
  background: #fff;
  padding: 120px 0;
  overflow: hidden;
}

.projects-inner-wrap {
  display: flex;
  gap: 80px;
  padding: 0 60px;
  max-width: 1600px;
  margin: 0 auto;
}

.projects-side-header {
  flex: 0 0 320px;
  position: relative;
  z-index: 10;
  background: #fff;
  /* Opaque background to cover slides if they move left */
}

.projects-side-header .section-tag {
  margin-bottom: 24px;
}

.projects-side-header .section-title {
  font-size: 48px;
  margin-bottom: 24px;
}

.projects-side-header p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}

.slider-controls-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.slider-nav {
  display: flex;
  gap: 12px;
}

.projects-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.projects-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  gap: 30px;
}

.project-slide {
  flex: 0 0 calc(50% - 15px);
  /* Exactly 2 slides */
  min-width: 0;
}

.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--green);
}

.project-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

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

.project-card:hover .project-img img {
  transform: scale(1.1);
}

.project-content {
  padding: 32px;
}

.project-client {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
}

.project-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: capitalize;
  /* More elegant than all caps */
  min-height: 48px;
}

.project-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--green-pale);
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--heading);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.slider-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

@media (max-width: 1100px) {
  .projects-inner-wrap {
    flex-direction: column;
    gap: 50px;
  }

  .projects-side-header {
    flex: none;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .project-slide {
    flex: 0 0 100%;
  }

  .projects-inner-wrap {
    padding: 0 30px;
  }
}

/* ACHIEVEMENT (Award Recognition) */
.achievement {
  position: relative;
  background: #111;
  padding: 120px 60px;
  overflow: hidden;
  color: #fff;
}

.achievement-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}

.achievement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.achievement-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.achievement-text {
  max-width: 100%;
}

.achievement-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.achievement-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.achievement-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 740px;
  margin: 0 auto;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* CLIENTS */
.clients {
  background: #fff;
  padding: 100px 0;
}

.clients-title-row {
  /* text-align: center; */
  margin-bottom: 60px;
  padding: 0 60px;
}

.clients-title-row .section-title {
  font-size: clamp(32px, 4vw, 42px);
}

.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}



.client-logo-box {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.client-item:hover .client-logo-box img {
  opacity: 1;
  transform: scale(1.05);
}

.client-name {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4
}

/* CAREERS */
.careers {
  background: var(--body-bg);
  position: relative;
  overflow: hidden
}

.careers::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 139, 60, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 139, 60, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none
}

.careers-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.careers-text .section-title {
  margin-bottom: 24px
}

.careers-text p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px
}

.careers-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px
}

.careers-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--green-pale);
  border-left: 3px solid var(--green)
}

.cf-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0
}

.cf-text {
  font-size: 14px;
  color: var(--text);
  font-weight: 500
}

.careers-img-wrap {
  aspect-ratio: 1;
  background: var(--alt-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative
}

.careers-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8)
}

.careers-img-wrap::before {
  content: 'CAREERS';
  position: absolute;
  z-index: 2;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 140px;
  color: rgba(15, 139, 60, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  pointer-events: none;
  white-space: nowrap
}

.btn-red {
  padding: 16px 36px;
  background: var(--red);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  /* clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%); */
  transition: background .2s, transform .2s;
  display: inline-block
}

.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-2px)
}

/* CONTACT */
.contact {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
  padding: 80px 0;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--vec-img-contact-bg, url('../images/contact-bg.png'));
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.8;
}

.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(75deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}



.contact-inner {
  position: relative;
  z-index: 2;
 /* display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 0 60px;
  max-width: 1400px;
  margin: 0 auto;*/
}

.contact-info .section-title {
  margin-bottom: 36px;
  color: #fff;
}

.contact-info .section-tag {
  color: var(--green);
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  font-weight: 600
}

.contact-detail-value {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.contact-detail-value a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.contact-detail-value a:hover {
  color: var(--green);
}

.contact-form {
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-weight: 600
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
  resize: none;
  appearance: none
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
  height: 120px
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 60px 60px 30px;
  position: relative;
  overflow: hidden;
}

/* Technical Geometric Pattern Overlay */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}



.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-logo-wrap {
  margin-bottom: 24px;
}

.footer-logo-wrap img {
  height: 52px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer-icms {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icms::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 28px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  margin: 0;
}

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

.footer-col ul a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  line-height: 1.5;
  max-width: 220px;
}

.footer-col ul a:hover {
  color: var(--red);
  transform: translateX(6px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-copy span {
  color: var(--red);
  font-weight: 700;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--heading);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

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

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

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

.reveal-delay-5 {
  transition-delay: 0.5s;
}

@media (max-width: 992px) {
  .solutions-grid-container {
    padding: 60px 20px 0;
  }
}


/* ===== MOBILE HEADER ===== */
.mobile-header {
  display: none;
  padding: 15px 20px;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

/*.nav-logo img {
  height: 40px;
}*/

/* ===== HAMBURGER ===== */
.menu-toggle {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  transition: 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-inner {
  padding: 80px 20px;
  position: relative;
}

/* ===== CLOSE BUTTON ===== */
.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #000;
  top: 50%;
  left: 0;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

/* ===== LINKS ===== */
.mobile-links {
  list-style: none;
  padding: 0;
}

.mobile-links li {
  margin-bottom: 15px;
}

.menu-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-links a,
.menu-item {
  font-size: 16px;
  color: #222;
  text-decoration: none;
  display: block;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  line-height: 1.35;
}

.menu-item {
  flex: 1 1 auto;
}

.menu-toggle-button {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #222;
  cursor: pointer;
  padding: 0;
}

/* ===== SUBMENU ===== */
.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding-left: 15px;
}

.sub-menu li {
  margin-bottom: 12px;
}

.sub-menu a {
  font-size: 14px;
}

.has-sub.active .sub-menu {
  max-height: 300px;
}

/* ===== ARROW ICON ===== */
.arrow {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.has-sub.active .arrow {
  transform: rotate(180deg);
}

/* ===== OVERLAY ===== */
body.menu-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

/* ===== MOBILE ONLY ===== */
@media (max-width: 1200px) {
  nav {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
}
