/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}

:root {
  --red: #e42829;
  --orange: #f07225;
  --accent: #847b74;
  --ink: #101113;
  --muted: #73767c;
  --line: #dededb;
  --paper: #f5f5f1;
  --white: #fff;
  --dark: #0b0d0f;
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

body.lock {
  overflow: hidden;
}

/* ============================================
   GLOBAL TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
.brand b,
.eyebrow,
.section-label,
.btn,
.nav-cta {
  font-family: "Space Grotesk", sans-serif;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(4rem, 8.5vw, 8.8rem);
  font-weight: 600;
}

h2 {
    font-size:70px;
  font-weight: 600;
}

h2 em,
h1 em {
  font-style: normal;
  color: var(--red);
}

p {
  color: var(--muted);
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: min(1240px, calc(100% - 48px));
  margin: auto;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  box-shadow: 0 0 16px #e4282966;
}

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, #e4282918 0, transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.35s;
  padding: 18px 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled {
  background: #fff;
  backdrop-filter: blur(18px);
  padding: 11px 0;
  box-shadow: 0 4px 20px rgba(228, 40, 41, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* ---- Brand ---- */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #111;
}

.header .logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.footer .logo-image {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-mark {
  display: flex;
  gap: 3px;
  align-items: end;
  height: 28px;
}

.brand-mark i {
  display: block;
  width: 5px;
  background: linear-gradient(var(--orange), var(--red));
  transform: skew(-16deg);
  border-radius: 2px;
}

.brand-mark i:nth-child(1) {
  height: 14px;
}

.brand-mark i:nth-child(2) {
  height: 22px;
}

.brand-mark i:nth-child(3) {
  height: 28px;
}

.brand b {
  font-size: 19px;
  display: block;
  letter-spacing: 0.12em;
  color: var(--red);
}

.brand small {
  font-size: 7px;
  letter-spacing: 0.15em;
  display: block;
  color: #fff;
}

/* ---- Desktop Navigation ---- */
.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: #666;
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s;
}

.desktop-nav a:hover {
  color: var(--red);
}

.nav-cta {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--red), var(--orange));
  padding: 12px 17px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.nav-cta span {
  color: #fff;
  margin-left: 10px;
}

/* ---- Mobile Navigation ---- */
.menu-btn {
  display: none;
  background: none;
  border: 0;
  width: 42px;
}

.menu-btn span {
  height: 2px;
  background: #f8f6f6;
  display: block;
  margin: 7px 0;
}

.mobile-menu {
  display: none;
}

/* ============================================
   HERO SECTION - Font Sizes
   ============================================ */
.hero h1 {
  font-size: 75px;
  font-weight: 600;
}

.hero h2 {
  font-size: 70px;
  font-weight: 600;
}

.hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.17em;
  font-weight: 700;
  color: var(--red);
}

.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  max-width: 660px;
  margin: 28px 0;
  color: #555;
}

.hero-proof span {
  margin-top:10px;
  font-size: 14px;
  color: #666;
}

.hero-scroll {
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* ============================================
   HERO SECTION - Styles
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f0f0f0 100%);
  color: #111;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 112, 37, 0.08) 0%, rgba(228, 40, 41, 0.05) 50%, rgba(132, 123, 116, 0.08) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-copy h1 {
  color: #1a1a1a;
}

.hero-copy h2 {
  color: #222;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom:20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border: 0;
  padding: 15px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(110deg, var(--red), var(--orange));
  color: #fff;
  box-shadow: 0 14px 30px #e428292e;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px #e428294d;
}

.btn-ghost {
  border: 2px solid #333;
  color: #111;
  background: #fff;
}

.btn-ghost:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.hero-visual {
  width: auto;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../ESG%20Heor%20image.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(228, 40, 41, 0.2);
}

.hero-scroll span {
  display: inline-block;
  width: 1px;
  height: 30px;
  background: linear-gradient(#555, transparent);
  vertical-align: middle;
  margin-right: 10px;
}

/* ============================================
   TICKER - Font Sizes
   ============================================ */
.ticker span {
  margin-top:10px;
  font: 600 12px "Space Grotesk";
  letter-spacing: 0.08em;
  white-space: nowrap;
  
}

.ticker b {
  margin: 0 26px;
  font-size: 9px;
  color: #ffca9b;
}

/* ============================================
   TICKER - Styles
   ============================================ */
.ticker {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  overflow: hidden;
  padding: 20px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
  align-items: center;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   SECTIONS - GENERAL
   ============================================ */
.section {
  padding: 140px 0;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.17em;
  font-weight: 700;
  color: #85888d;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label span {
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

/* ============================================
   ABOUT SECTION - Font Sizes
   ============================================ */
.about h2 {
  font-size: 70px;
  font-weight: 600;
}

.about .lead {
  font-size: 18px;
  max-width: 750px;
  margin: 30px 0 55px;
}

.about .image-caption span {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--red);
}

.about .image-caption b {
  display: block;
  font: 600 24px "Space Grotesk";
  margin-top: 5px;
}

.about-list article > span {
  font: 600 12px "Space Grotesk";
  color: var(--red);
}

.about-list h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
}

.about-list p {
  margin-top: 8px;
  font-size: 14px;
}

.stats-strip small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #888;
}

.stats-strip strong {
  font: 600 38px "Space Grotesk";
  display: block;
  margin-top: 10px;
}

.stats-strip sup {
  font: 500 10px "DM Sans";
  color: #888;
  margin-left: 5px;
}

/* ============================================
   ABOUT SECTION - Styles
   ============================================ */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
}

.about-main > h2 {
  max-width: 900px;
}

.about-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.about-image {
  min-height: 440px;
  position: relative;
  background: linear-gradient(135deg, #f0f0f0 0%, #f5f5f1 100%);
  overflow: hidden;
  background-image: radial-gradient(circle at 70% 30%, #f0722544, transparent 20%), url('../about us.png');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-image:after {
  content: "";
  position: absolute;
  inset: 15% 12%;
  border: 1px solid #ffffff18;
  background: linear-gradient(150deg, transparent 30%, #ffffff07);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.3));
}

.image-caption {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 25px;
  color: #333;
}

.about-list article {
  display: flex;
  gap: 25px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.about-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 100px;
}

.stats-strip > div {
  padding: 25px;
  border-right: 1px solid var(--line);
}

.stats-strip > div:first-child {
  padding-left: 0;
}

.stats-strip > div:last-child {
  border: 0;
}

/* ============================================
   SERVICES SECTION - Font Sizes
   ============================================ */
.services h2 {
  font-size:70px;
  font-weight: 600;
}

.services .section-head p {
  font-size: 16px;
  max-width: 700px;
  margin-top: 25px;
  color: var(--muted);
}

.service-top span {
  font: 600 12px "Space Grotesk";
  color: var(--red);
}

.service-top small {
  font-size: 8px;
  letter-spacing: 0.15em;
  color: #999;
}

.service-card h3 {
  font-size: 27px;
  max-width: 320px;
}

.service-card p {
  font-size: 13px;
  margin: 15px 0 20px;
  color: var(--muted);
}

.tags span {
  font-size: 9px;
  padding: 6px 8px;
  background: #f2f2ee;
  border-radius: 100px;
}

.scope-btn {
  font: 600 11px "Space Grotesk";
  cursor: pointer;
}

/* ============================================
   SERVICES SECTION - Styles
   ============================================ */
.services {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
}

.section-head h2 {
  max-width: 900px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.service-card {
  background: #fff;
  border: 1px solid #e6e6e1;
  min-height: 390px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.service-card:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  background: #e428290d;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #e4282955;
  box-shadow: 0 25px 60px #11111110;
}

.service-card:hover:before {
  transform: scale(2);
}

.service-icon {
  position: absolute;
  right: 25px;
  top: 23px;
  font-size: 27px;
  color: var(--red);
}

.service-top {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 70px;
}

.tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.scope-btn {
  position: absolute;
  bottom: 25px;
  left: 28px;
  border: 0;
  background: none;
}

.scope-btn span {
  color: var(--red);
  margin-left: 12px;
}

/* ============================================
   VOLTAGE SECTION - Font Sizes
   ============================================ */
.voltage-section .light {
  color: #9da0a4;
}

.voltage-head p {
  font-size: 16px;
  color: #8d9195;
}

.voltage-top span {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #92969a;
}

.voltage-top strong {
  font: 600 36px "Space Grotesk";
  color: var(--orange);
}

.voltage-marks button {
  font-size: 10px;
  color: #696e73;
  cursor: pointer;
}

.voltage-content small {
  font-size: 8px;
  letter-spacing: 0.16em;
  color: #858a8f;
}

.voltage-content h3 {
  font-size: 34px;
  margin: 10px 0;
}

.voltage-content p {
  font-size: 16px;
  max-width: 600px;
  color: #8d9195;
}

.voltage-visual b {
  font: 600 43px "Space Grotesk";
  z-index: 2;
}

.voltage-visual span {
  font-size: 8px;
  letter-spacing: 0.18em;
  color: #8d9297;
}

/* ============================================
   VOLTAGE SECTION - Styles
   ============================================ */
.voltage-section {
  padding: 130px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.voltage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 90px 90px;
}

.voltage-head {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 50px;
  align-items: end;
  margin-top: 25px;
}

.voltage-box {
  margin-top: 70px;
  background: #ffffff00;
  border: 1px solid #ffffff16;
  padding: 35px;
}

.voltage-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.voltage-line {
  height: 3px;
  background: #383c40;
  margin: 55px 0 18px;
  position: relative;
}

.voltage-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transition: 0.5s;
}

.voltage-knob {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px #e4282933;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.voltage-marks {
  display: flex;
  justify-content: space-between;
}

.voltage-marks button.active {
  color: #fff;
}

.voltage-content {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.voltage-visual {
  width: 180px;
  height: 180px;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.voltage-visual:before,
.voltage-visual:after {
  content: "";
  position: absolute;
  border: 1px solid #e4282944;
  border-radius: 50%;
  inset: -15px;
}

.voltage-visual:after {
  inset: -30px;
  border-color: #f0722522;
}

/* ============================================
   CAPABILITY GRID - Font Sizes
   ============================================ */
.capability-grid span {
  color: var(--orange);
  font: 600 11px "Space Grotesk";
}

.capability-grid h3 {
  font-size: 22px;
  margin: 40px 0 10px;
}

.capability-grid p {
  font-size: 13px;
  color: #8e9398;
}

/* ============================================
   CAPABILITY GRID - Styles
   ============================================ */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: #ffffff13;
  margin-top: 1px;
}

.capability-grid article {
  background: #0b0d0f;
  padding: 30px;
  min-height: 220px;
}

/* ============================================
   SECTORS SECTION - Font Sizes
   ============================================ */
.sector-card small {
  font-size: 9px;
  color: #aaa;
}

.sector-card h3 {
  font-size: 28px;
  margin-top: 80px;
}

.sector-card p {
  font-size: 13px;
  margin-top: 12px;
  max-width: 290px;
  color: var(--muted);
}

/* ============================================
   SECTORS SECTION - Styles
   ============================================ */
.sectors {
  background: #fff;
}

.sector-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.sector-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 70px 0;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.sector-carousel::-webkit-scrollbar {
  height: 6px;
}

.sector-carousel::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}



.sector-card {
  flex: 0 0 350px;
  height: 450px;
  position: relative;
  transition: 0.4s;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  scroll-snap-align: center;
}

.sector-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(228, 40, 41, 0.3);
}

.sector-content {
  padding: 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.95) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: absolute;
  inset: 0;
}

.sector-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: auto;
}

.sector-icon {
  font-size: 32px;
  color:whtie;
}

.sector-top small {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.sector-bottom {
  margin-top: auto;
}

.sector-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.sector-card p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.5;
  max-width: 100%;
}

.sector-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px 0 20px;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  font-size: 18px;
  color: var(--red);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.carousel-btn:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(228, 40, 41, 0.2);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: #bbb;
  transform: scale(1.2);
}

.dot.active {
  background: var(--red);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 0 2px rgba(228, 40, 41, 0.2);
}

/* ============================================
   PROCESS SECTION - Font Sizes
   ============================================ */
.process-head p {
  font-size: 16px;
  color: #8d9195;
}

.process-step > span {
  font: 600 12px "Space Grotesk";
}

.process-step small {
  display: block;
  color: var(--orange);
  font-size: 8px;
  letter-spacing: 0.15em;
  margin-top: 45px;
}

.process-step h3 {
  font-size: 25px;
  margin: 12px 0;
}

.process-step p {
  font-size: 13px;
  color: #8e9398;
}

/* ============================================
   PROCESS SECTION - Styles
   ============================================ */
.process-section {
  padding: 130px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.process-head {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 50px;
  align-items: end;
  margin-top: 25px;
}

.process-line {
  height: 1px;
  background: linear-gradient(90deg, var(--red), #ffffff22);
  margin-top: 80px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  padding: 35px 25px 20px;
  border-left: 1px solid #ffffff14;
  min-height: 300px;
}

.process-step:first-child {
  border-left: 0;
}

.process-step > span {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  margin-top: -59px;
  position: relative;
}

/* ============================================
   STANDARDS SECTION - Font Sizes
   ============================================ */
.standard-card .number {
  font: 600 11px "Space Grotesk";
  color: #bbb;
}

.standard-card small {
  font-size: 8px;
  letter-spacing: 0.16em;
  color: #888;
  display: block;
  margin-top: 35px;
}

.standard-card h3 {
  font-size: 27px;
  margin: 10px 0;
}

.standard-card p {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================
   STANDARDS SECTION - Styles
   ============================================ */
.standards {
  background: var(--paper);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 65px;
}

.standard-card {
  background: #fff;
  padding: 30px;
  min-height: 340px;
  position: relative;
  border: 1px solid #e5e5df;
}

.standard-card .number {
  position: absolute;
  right: 25px;
  top: 25px;
}

.standard-icon {
  font-size: 40px;
  color: var(--red);
  margin-top: 50px;
}

/* ============================================
   TESTIMONIALS SECTION - Font Sizes
   ============================================ */
.testimonial .quote {
  font: 600 60px "Space Grotesk";
  color: var(--red);
  line-height: 0.7;
}

.testimonial p {
  font-size: 16px;
  color: #24272a;
  margin: 30px 0 40px;
}

.testimonial div b {
  font-size: 11px;
}

.testimonial div small {
  color: #888;
  font-size: 10px;
}

/* ============================================
   TESTIMONIALS SECTION - Styles
   ============================================ */
.testimonials {
  background: #fff;
}

.testimonial-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-top: 25px;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 65px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.testimonial {
  background: var(--paper);
  padding: 35px;
  min-height: 300px;
  position: relative;
}

.testimonial div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial div b {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
}

.slider-buttons {
  display: flex;
  gap: 7px;
}

.slider-buttons button {
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

/* ============================================
   FAQ SECTION - Font Sizes
   ============================================ */
.faq-grid h2 {
  font-size: 50px;
  font-weight: 600;
}

.faq-grid > div > p {
  font-size: 16px;
  max-width: 400px;
  color: #8d9195;
}

.faq button {
  font: 600 17px "Space Grotesk";
}

.faq button span {
  color: var(--orange);
  font-size: 10px;
}

.faq button b {
  font-size: 22px;
  font-weight: 400;
  color: #777;
  transition: 0.3s;
}

.faq-answer p {
  padding: 0 40px 25px 65px;
  color: #91959a;
  font-size: 13px;
}

/* ============================================
   FAQ SECTION - Styles
   ============================================ */
.faq-section {
  padding: 130px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.faq-grid h2 {
  margin: 25px 0;
}

.btn-light {
  background: #fff;
  color: #111;
  margin-top: 30px;
}

.faq-list {
  border-top: 1px solid #ffffff1a;
}

.faq {
  border-bottom: 1px solid #ffffff1a;
}

.faq button {
  width: 100%;
  border: 0;
  background: none;
  color: #fff;
  padding: 25px 0;
  text-align: left;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.faq.open button b {
  transform: rotate(45deg);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}

/* ============================================
   CONTACT SECTION - Font Sizes
   ============================================ */
.contact-section .section-label {
  color: var(--red);
  font-weight: 700;
}

.contact-copy h2 {
    margin-top: 15px;
  font-size: 70px;
  font-weight: 600;
  color: #222;
}

.contact-copy > p {
  font-size: 16px;
  color: #555;
}

.contact-card > span {
  color: var(--red);
  font-size: 19px;
}

.contact-card small {
  display: block;
  font-size: 8px;
  color: #888;
  letter-spacing: 0.15em;
}

.contact-card strong {
  font: 500 15px "Space Grotesk";
  display: block;
  margin-top: 4px;
}

.contact-card > b {
  font-weight: 400;
  color: #999;
}

.form-head small {
  color: #f07225;
}

.form-head span {
  color: #999;
}

.project-form label {
  display: block;
  font-size: 9px;
  color: #aaa;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.project-form input,
.project-form select,
.project-form textarea {
  font-size: 13px;
}

/* ============================================
   CONTACT SECTION - Styles
   ============================================ */
.contact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  right: -150px;
  top: -100px;
  background: radial-gradient(circle, #e428291c, transparent 65%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
  position: relative;
  padding-top: 40px;
}

.contact-copy {
  color: #1a1a1a;
}

.contact-cards {
  margin-top: 50px;
  display: grid;
  gap: 10px;
}

.contact-card {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #e0e0e0;
  padding: 17px 0;
  color: #333;
}

.project-form {
  background: #1a1a1a;
  color: #fff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  margin-top: 0;
}

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

.project-form input,
.project-form select,
.project-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #444;
  background: #1a1a1a;
  padding: 10px 0;
  color:#000;
  outline: none;
  margin-top: 5px;
  resize: vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 2px 8px rgba(228, 40, 41, 0.2);
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: #666;
}

.form-btn {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(110deg, var(--red), var(--orange));
  color: #fff;
}

/* ============================================
   FORM STATUS
   ============================================ */
.form-status {
  animation: slideInUp 0.4s ease-out;
  border-radius: 6px;
  font-weight: 500;
  padding: 15px;
  margin-top: 20px;
}

.form-status strong {
  display: block;
  margin-bottom: 5px;
}

/* ============================================
   FOOTER - Font Sizes
   ============================================ */
.footer-brand p {
  color: #777;
  max-width: 320px;
  margin-top: 20px;
  font-size: 12px;
}

.footer-main h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-main > div:not(.footer-brand) a {
  display: block;
  color: #fffcfc;
  font-size: 14px;
  margin: 9px 0;
}

.footer-main p {
  color: #fcfcfc;
  font-size: 14px;
}

.footer-bottom {
  color: #FFF;
  font-size: 14px;
}

/* ============================================
   FOOTER - Styles
   ============================================ */
.footer-main {
  display: grid;
  padding-top: 50px;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 50px;
}

.footer-main > div:not(.footer-brand) a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 2px solid #e9dfdfad;
  margin-top: 60px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer-bottom a {
  color: #f07225;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ============================================
   MODAL
   ============================================ */
.service-modal {
  position: fixed;
  inset: 0;
  background: #050607dd;
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.service-modal.open {
  display: flex;
}

.modal-inner {
  width: min(650px, 100%);
  background: #fff;
  color: #111;
  padding: 50px;
  position: relative;
}

.modal-inner > button {
  position: absolute;
  right: 20px;
  top: 15px;
  background: none;
  border: 0;
  font-size: 30px;
  cursor: pointer;
}

.modal-inner small {
  font-size: 9px;
  color: var(--red);
  letter-spacing: 0.15em;
}

.modal-inner h2 {
  font-size: 48px;
  margin: 15px 0;
}

.modal-inner p {
  margin-bottom: 25px;
}

.modal-inner #modalTags {
  display: flex;
  gap: 6px;
  margin-bottom: 30px;
}

.modal-inner #modalTags span {
  font-size: 10px;
  padding: 7px 10px;
  background: #f2f2ee;
  border-radius: 100px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

/* ============================================
   HIDDEN OLD HERO ELEMENTS
   ============================================ */
.substation-art,
.skyline,
.tower,
.wire,
.transformer,
.switchgear,
.solar-row,
.tech-card {
  display: none !important;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(228, 40, 41, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(228, 40, 41, 0);
  }
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   PROCESS STEP ANIMATIONS
   ============================================ */
.process-step {
  animation: slideInUp 0.6s ease-out forwards;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}
.process-step:nth-child(2) {
  animation-delay: 0.2s;
}
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}
.process-step:nth-child(4) {
  animation-delay: 0.4s;
}

.process-step:hover {
  transform: translateY(-5px);
  border-left-color: var(--red);
}

.process-step:hover h3 {
  color: var(--orange);
}

/* ============================================
   CAPABILITY GRID HOVER
   ============================================ */
.capability-grid article {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  padding: 30px;
  background: #f0f0f0;
  border-radius: 8px;
}

.capability-grid article:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  box-shadow: 0 20px 60px rgba(228, 40, 41, 0.3);
}

.capability-grid article:hover h3,
.capability-grid article:hover p {
  color: #fff;
}

.capability-grid article span {
  font: 700 36px "Space Grotesk";
  color: var(--red);
  opacity: 0.15;
  transition: 0.4s;
}

.capability-grid article:hover span {
  opacity: 0.3;
  transform: scale(1.1);
}

/* ============================================
   VOLTAGE BOX
   ============================================ */
.voltage-box {
  transition: all 0.5s ease;
  border-color: var(--orange) !important;
}

.voltage-box:hover {
  transform: scale(1.02);
  border-color: var(--red) !important;
}

.voltage-marks button {
  transition: all 0.3s ease;
  position: relative;
}

.voltage-marks button:hover {
  color: var(--orange);
  transform: scale(1.2);
}

.voltage-marks button.active {
  color: var(--red);
  font-weight: 700;
}

/* ============================================
   ABOUT IMAGE
   ============================================ */
.about-image {
  transition: all 0.8s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInScale 0.8s ease-out;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(228, 40, 41, 0.2);
}

.about-image:after {
  transition: all 0.8s ease;
}

.about-image:hover:after {
  border-color: var(--orange) !important;
}

/* ============================================
   SERVICE CARD
   ============================================ */
.service-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
  animation: pulse-glow 2s infinite;
  color: var(--orange);
}

/* ============================================
   CONTACT CARD
   ============================================ */
.contact-card {
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.contact-card:hover {
  border-left-color: var(--red);
  transform: translateX(5px);
  color: var(--orange);
}

.contact-card:hover > span {
  animation: slideInLeft 0.4s ease-out;
}

/* ============================================
   PROJECT FORM
   ============================================ */
.project-form {
  transition: all 0.4s ease;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.project-form:focus-within {
  box-shadow: 0 20px 60px rgba(228, 40, 41, 0.2);
  transform: translateY(-2px);
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-bottom-width: 2px;
  box-shadow: 0 2px 8px rgba(228, 40, 41, 0.1);
}

/* ============================================
   FORM BUTTON
   ============================================ */
.form-btn {
  position: relative;
  overflow: hidden;
}

.form-btn:hover {
  box-shadow: 0 20px 50px rgba(228, 40, 41, 0.3);
  transform: translateY(-2px);
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  transition: all 0.4s ease;
  border: 1px solid transparent;
  border-radius: 8px;
}

.testimonial:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial .quote {
  transition: all 0.4s ease;
  color: var(--orange);
}

.testimonial:hover .quote {
  transform: scale(1.1);
}

/* ============================================
   STANDARD CARD
   ============================================ */
.standard-card {
  transition: all 0.4s ease;
  border-radius: 8px;
  border: 1px solid #e5e5df;
}

.standard-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 20px 50px rgba(228, 40, 41, 0.15);
}

.standard-card:hover .standard-icon {
  animation: pulse-glow 2s infinite;
}

/* ============================================
   FOOTER LINKS
   ============================================ */
footer a {
  transition: all 0.3s ease;
}

.footer-main > div:not(.footer-brand) a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

/* ============================================
   RESPONSIVE - MEDIA QUERIES
   ============================================ */
@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu {
    position: absolute;
    top: 65px;
    left: 12px;
    right: 12px;
    background: #111;
    padding: 20px;
    border: 1px solid #ffffff18;
    display: none;
  }

  .mobile-menu.open {
    display: grid;
  }

  .mobile-menu a {
    color: #fff;
    padding: 13px;
    border-bottom: 1px solid #ffffff10;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 430px;
  }

  .hero {
    padding-bottom: 70px;
  }

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

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

  .sector-carousel-wrapper {
    padding: 0 30px;
  }

  .sector-carousel {
    padding: 70px 0;
  }

  .sector-card {
    flex: 0 0 300px;
    height: 400px;
  }

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

  .process-step {
    border-bottom: 1px solid #ffffff14;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 30px, 1240px);
  }

  .section {
    padding: 90px 0;
  }

  .hero-inner {
    padding-top: 110px;
  }

  .hero-visual {
    height: 330px;
  }

  .substation-art {
    height: 300px;
  }

  .card-top {
    top: 10px;
    right: 0;
  }

  .card-bottom {
    bottom: 0;
    left: 0;
  }

  .about-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-label {
    margin-bottom: 15px;
  }

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

  .about-image {
    min-height: 320px;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
  }

  .stats-strip > div {
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .standards-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .sector-carousel-wrapper {
    padding: 0 15px;
  }

  .sector-carousel {
    padding: 70px 0;
  }

  .sector-card {
    flex: 0 0 90vw;
    height: 350px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 24px;
  }

  .voltage-head,
  .process-head {
    grid-template-columns: 1fr;
  }

  .voltage-box {
    padding: 22px;
  }

  .voltage-content {
    grid-template-columns: 1fr;
  }

  .voltage-visual {
    margin: auto;
  }

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

  .process-line {
    display: none;
  }

  .process-step {
    border-left: 0;
  }

  .testimonial-head {
    display: block;
  }

  .slider-buttons {
    margin-top: 20px;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .cursor-glow {
    display: none;
  }

  /* Responsive Font Sizes */
  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .hero h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .about h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .services h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .faq-grid h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .contact-copy h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }
}
footer{
    background-color: #111;
}

/* sector scrooll  */

/* ============================================
   SECTORS SECTION - Font Sizes
   ============================================ */
.sector-card small {
  font-size: 9px;
  color: #aaa;
}

.sector-card h3 {
  font-size: 28px;
  margin-top: 80px;
}

.sector-card p {
  font-size: 13px;
  margin-top: 12px;
  max-width: 290px;
  color: var(--muted);
}

/* ============================================
   SECTORS SECTION - Styles
   ============================================ */
.sectors {
  background: #fff;
}

.sector-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.sector-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 70px 0;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.sector-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.sector-card {
  flex: 0 0 350px;
  height: 450px;
  position: relative;
  transition: 0.4s;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  scroll-snap-align: center;
  flex-shrink: 0;
}

.sector-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(228, 40, 41, 0.3);
}

.sector-content {
  padding: 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.95) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: absolute;
  inset: 0;
}

.sector-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: auto;
}

.sector-icon {
  font-size: 32px;
  color: #fff;
}

.sector-top small {
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.sector-bottom {
  margin-top: auto;
}

.sector-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.sector-card p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.5;
  max-width: 100%;
}

.sector-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px 0 20px;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  font-size: 18px;
  color: var(--red);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.carousel-btn:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(228, 40, 41, 0.2);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: #bbb;
  transform: scale(1.2);
}

.dot.active {
  background: var(--red);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 0 2px rgba(228, 40, 41, 0.2);
}

/* ============================================
   RESPONSIVE - SECTOR CAROUSEL
   ============================================ */
@media (max-width: 1000px) {
  .sector-carousel-wrapper {
    padding: 0 30px;
  }
  
  .sector-carousel {
    padding: 50px 0;
  }
  
  .sector-card {
    flex: 0 0 300px;
    height: 400px;
  }
}

@media (max-width: 680px) {
  .sector-carousel-wrapper {
    padding: 0 15px;
  }
  
  .sector-carousel {
    padding: 40px 0;
  }
  
  .sector-card {
    flex: 0 0 90vw;
    height: 350px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .dot.active {
    width: 24px;
  }
}

/* =========================================================
   INNER PAGES
   ========================================================= */
.page-main{padding-top:80px;background:var(--paper)}
.page-hero{position:relative;min-height:430px;display:flex;align-items:center;overflow:hidden;background:#0b0d0f;color:#fff}
.page-hero-bg{position:absolute;inset:0;background:linear-gradient(100deg,rgba(11,13,15,.94),rgba(11,13,15,.68),rgba(11,13,15,.42)),url('esg image/7.png') center/cover no-repeat}
.page-hero .container{position:relative;z-index:1}
.page-hero .eyebrow{font-size:11px;letter-spacing:.17em;font-weight:700;color:var(--red);margin-bottom:18px}
.page-hero p{color:#d6d6d6;max-width:680px;font-size:18px;margin-top:24px}
.breadcrumb{margin-top:26px;font-size:12px;color:#aaa}.breadcrumb a{color:#fff}.breadcrumb span{margin:0 9px;color:var(--red)}
.page-intro{padding:95px 0 45px}
.page-intro-grid{display:grid;grid-template-columns:.7fr 1.5fr;gap:70px}
.page-intro h2{font-size:clamp(2.8rem,5vw,5rem)}
.page-intro .lead{font-size:18px;max-width:760px}
.page-label{font-family:"Space Grotesk";font-size:11px;letter-spacing:.16em;font-weight:700;color:var(--red);padding-top:10px}
.page-label span{display:inline-block;width:42px;height:1px;background:var(--red);vertical-align:middle;margin-left:12px}
.split-list{padding:35px 0 110px}
.split-row{display:grid;grid-template-columns:1fr 1fr;min-height:500px;margin-bottom:70px;background:#fff;border-radius:24px;overflow:hidden;box-shadow:0 15px 50px rgba(0,0,0,.07)}
.split-row:nth-child(even) .split-image{order:2}.split-row:nth-child(even) .split-content{order:1}
.split-image{min-height:500px;background-size:cover;background-position:center;position:relative}
.split-image:after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(228,40,41,.12),transparent 55%)}
.split-content{padding:65px;display:flex;flex-direction:column;justify-content:center}
.split-number{font-family:"Space Grotesk";font-size:13px;color:var(--red);letter-spacing:.12em;font-weight:700}
.split-content h2{font-size:clamp(2rem,3.4vw,3.8rem);margin:14px 0 20px}
.split-content p{font-size:16px;max-width:560px}.split-content ul{list-style:none;margin:28px 0 0;padding:0;display:grid;gap:10px}
.split-content li{font-size:14px;font-weight:600;color:#333}.split-content li:before{content:"✓";color:var(--red);margin-right:10px}
.split-cta{margin-top:32px;align-self:flex-start}
.info-cards{padding:20px 0 100px;background:#fff}.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.info-card{padding:34px;border:1px solid var(--line);border-radius:18px;background:#fff}.info-card span{font-size:30px;color:var(--red)}.info-card h3{font-size:23px;margin:20px 0 10px}.info-card p{font-size:14px}
.capability-panel{padding:80px 0;background:#0b0d0f;color:#fff}.cap-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:60px;align-items:center}.cap-image{height:560px;border-radius:24px;background:url('esg image/8.png') center/cover no-repeat}.cap-copy h2{font-size:clamp(2.7rem,5vw,5rem)}.cap-copy p{color:#bfc2c5;margin:24px 0}.cap-list{display:grid;gap:0;margin-top:35px}.cap-item{display:grid;grid-template-columns:55px 1fr;gap:15px;padding:22px 0;border-top:1px solid #292c30}.cap-item b{color:var(--red);font-family:"Space Grotesk"}.cap-item h3{font-size:20px;margin-bottom:5px}.cap-item p{font-size:14px;margin:0}
.contact-page{padding:90px 0 110px}.contact-page-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px}.contact-page h1{font-size:60px;}.contact-page-copy>p{font-size:17px;max-width:560px;margin:25px 0 35px}.contact-detail{display:grid;gap:14px}.contact-detail a,.contact-detail div{padding:18px 20px;border:1px solid var(--line);border-radius:12px;background:#fff}.contact-detail small{display:block;font-size:10px;letter-spacing:.12em;color:#888;margin-bottom:4px}.contact-detail strong{font-size:15px}
.inner-form{background:#fff;padding:38px;border-radius:22px;box-shadow:0 15px 50px rgba(0,0,0,.08)}.inner-form .form-head{display:flex;justify-content:space-between;gap:20px;margin-bottom:25px}.inner-form .form-head small{font-weight:700;letter-spacing:.12em}.inner-form .form-head span{font-size:12px;color:#888}.inner-form label{display:block;font-size:11px;letter-spacing:.08em;font-weight:700;margin-bottom:18px}.inner-form input,.inner-form select,.inner-form textarea{display:block;width:100%;border:1px solid #d9d9d5;border-radius:8px;padding:14px;margin-top:8px;background:#fff;outline:0}.inner-form input:focus,.inner-form select:focus,.inner-form textarea:focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(228,40,41,.08)}.inner-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}.inner-form .form-btn{border:0;cursor:pointer;width:100%}.form-status{font-size:14px}.active-nav{color:var(--red)!important}
.page-bottom-cta{padding:90px 0;background:#111;color:#fff;text-align:center}.page-bottom-cta h2{font-size:clamp(2.8rem,5vw,5rem);max-width:850px;margin:auto}.page-bottom-cta p{max-width:650px;margin:20px auto 30px;color:#bbb}
@media(max-width:1000px){.desktop-nav{display:none}.page-intro-grid,.cap-grid,.contact-page-grid{grid-template-columns:1fr;gap:35px}.split-row{grid-template-columns:1fr;margin-bottom:35px}.split-row:nth-child(even) .split-image,.split-row:nth-child(even) .split-content{order:initial}.split-image{min-height:360px}.split-content{padding:45px}.info-grid{grid-template-columns:1fr 1fr}.cap-image{height:430px}}
@media(max-width:680px){.page-main{padding-top:72px}.page-hero{min-height:420px}.page-hero h1{font-size:clamp(3rem,15vw,4.5rem)}.page-hero p{font-size:16px}.page-intro{padding:65px 0 25px}.split-list{padding-bottom:65px}.split-row{border-radius:16px}.split-image{min-height:290px}.split-content{padding:30px 24px}.split-content h2{font-size:2.25rem}.info-grid{grid-template-columns:1fr}.info-card{padding:28px}.capability-panel{padding:60px 0}.cap-image{height:300px}.inner-form{padding:24px}.inner-form .form-row{grid-template-columns:1fr}.inner-form .form-head{display:block}.contact-page{padding:65px 0 80px}.contact-page-grid{gap:40px}}

/* Inner page hero title */
.page-hero h1 {
    font-size: 65px;
    line-height: 1.1;
    max-width: 900px;
}

/* Tablet */
@media (max-width: 991px) {
    .page-hero h1 {
        font-size: 52px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .page-hero h1 {
        font-size: 38px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 32px;
    }
}
.form-success {
    margin-bottom: 20px;
    padding: 14px 18px;
    background: #e8f7ed;
    color: #155724;
    border: 1px solid #b7dfc2;
    border-radius: 6px;
}