/* ==========================================================
   COSMIC SOLAR EPC — one page website
   Palette taken from logo: deep green + teal + gold sun
   ========================================================== */ :root {
  --gr: #004830; /* logo dark green */
  --gr2: #03684a; /* lighter green */
  --teal: #1a6b6b; /* globe teal */
  --gold: #e8b93c; /* sun */
  --ink: #0e1b16;
  --tx: rgba(14, 27, 22, .66);
  --ln: rgba(0, 72, 48, .12);
  --bg: #f6f9f7;
  --hh: 70px; /* header height */
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--hh)
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6
}
img {
  max-width: 100%;
  height: auto;
  display: block
}
a {
  text-decoration: none;
  color: inherit
}
ul {
  list-style: none;
  margin: 0;
  padding: 0
}
h1, h2, h3, h4, h5, p {
  margin: 0
}
button {
  font-family: inherit;
  cursor: pointer
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px
}
.sec {
  position: relative;
  padding: 80px 0
}
.sec.alt {
  background: var(--bg)
}
.sec.dark {
  background: radial-gradient(120% 90% at 50% -10%, #065a3e 0%, #004830 46%, #00301f 100%);
  color: #fff
}
/* ---------- section head ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gr);
  background: rgba(0, 72, 48, .07);
  border: 1px solid var(--ln);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 18px
}
.tag i {
  font-size: 6.5px;
  color: var(--gold);
  animation: pulse 2s ease-in-out infinite
}
.dark .tag {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .16)
}
@keyframes pulse {
  0%, 100% {
    opacity: 1
  }
  50% {
    opacity: .25
  }
}
.h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1px;
  color: var(--gr);
  margin-bottom: 15px
}
.dark .h2 {
  color: #fff
}
.h2 span {
  position: relative;
  color: var(--teal)
}
.dark .h2 span {
  color: var(--gold)
}
.h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 9px;
  border-radius: 4px;
  background: rgba(26, 107, 107, .18);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s .35s cubic-bezier(.22, 1, .36, 1)
}
.dark .h2 span::after {
  background: rgba(232, 185, 60, .24)
}
.in .h2 span::after {
  transform: scaleX(1)
}
.lead {
  font-size: 15.4px;
  line-height: 1.78;
  color: var(--tx);
  margin: 0
}
.dark .lead {
  color: rgba(255, 255, 255, .68)
}
.head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px
}
/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  background: var(--gr);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 50px;
  border: 0;
  box-shadow: 0 12px 28px rgba(0, 72, 48, .26);
  transition: all .35s cubic-bezier(.4, 0, .2, 1)
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 72, 48, .34)
}
.btn i {
  transition: transform .3s
}
.btn:hover i {
  transform: translateX(4px)
}
.btn.gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(232, 185, 60, .34)
}
.btn.gold:hover {
  box-shadow: 0 20px 40px rgba(232, 185, 60, .42)
}
.btn.line {
  background: transparent;
  color: var(--gr);
  border: 1.6px solid var(--ln);
  box-shadow: none
}
.btn.line:hover {
  border-color: var(--gr);
  background: rgba(0, 72, 48, .05);
  transform: translateY(-3px);
  box-shadow: none
}
.dark .btn.line {
  color: #fff;
  border-color: rgba(255, 255, 255, .3)
}
.dark .btn.line:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff
}
.btn.white {
  background: #fff;
  color: var(--gr)
}
/* ==========================================================
   HEADER
   ========================================================== */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .35s
}
.hdr.on {
  background: rgba(255, 255, 255, .98);
  border-bottom-color: var(--ln);
  box-shadow: 0 6px 26px rgba(0, 72, 48, .08)
}
.hdr-in {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
  height: var(--hh);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  transition: height .3s
}
.hdr.on .hdr-in {
  height: 70px
}
.logo img {
  height: 46px;
  width: auto;
  transition: height .3s
}
.hdr.on .logo img {
  height: 40px
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px
}
.nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 9px;
  transition: all .28s
}
.nav a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s
}
.nav a:hover {
  color: var(--gr)
}
.nav a:hover::after, .nav a.on::after {
  transform: scaleX(1);
  transform-origin: left
}
.nav a.on {
  color: var(--gr);
  font-weight: 700
}
.hdr-cta {
  flex: 0 0 auto
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  z-index: 960
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 3px;
  background: var(--gr);
  margin: 5px auto;
  transition: all .35s cubic-bezier(.4, 0, .2, 1)
}
.burger.on span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}
.burger.on span:nth-child(2) {
  opacity: 0
}
.burger.on span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg)
}
.ovl {
  position: fixed;
  inset: 0;
  background: rgba(0, 48, 31, .5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: all .35s;
  z-index: 940
}
.ovl.on {
  opacity: 1;
  visibility: visible
}
/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: calc(var(--hh) + 78px) 0 90px;
  overflow: hidden;
  background: radial-gradient(115% 90% at 78% 8%, #065a3e 0%, #004830 42%, #00301f 100%);
  color: #fff
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 62px 62px
}
.sun {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(232, 185, 60, .34), transparent 68%);
  top: -140px;
  right: -90px;
  animation: float 17s ease-in-out infinite
}
.sun.s2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(26, 107, 107, .34), transparent 70%);
  bottom: -190px;
  left: -120px;
  animation-duration: 22s;
  animation-direction: reverse
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1)
  }
  50% {
    transform: translate(-36px, 28px) scale(1.14)
  }
}
.hero-in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center
}
.hero h1 {
  font-size: clamp(31px, 4.6vw, 53px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.6px;
  margin-bottom: 20px
}
.hero h1 em {
  font-style: normal;
  color: var(--gold)
}
.hero p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 32px;
  max-width: 560px
}
.hero-act {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 520px
}
.hero-stats div {
  position: relative
}
.hero-stats div + div::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(255, 255, 255, .16)
}
.hero-stats b {
  display: block;
  font-size: clamp(23px, 2.9vw, 32px);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1
}
.hero-stats b i {
  font-style: normal;
  color: var(--gold)
}
.hero-stats small {
  display: block;
  font-size: 11.4px;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  margin-top: 7px;
  line-height: 1.4
}
/* hero visual */
.hero-vis {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 440px;
  margin: 0 auto;
  display: grid;
  place-items: center
}
.panel {
  position: absolute;
  inset: 8%;
  border-radius: 20px;
  transform: rotateX(52deg) rotateZ(-42deg);
  transform-style: preserve-3d;
  background: linear-gradient(140deg, #0b2f4a, #123f5e);
  border: 2px solid rgba(255, 255, 255, .14);
  box-shadow: 0 40px 70px rgba(0, 0, 0, .4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
  padding: 8px;
  animation: tilt 9s ease-in-out infinite
}
@keyframes tilt {
  0%, 100% {
    transform: rotateX(52deg) rotateZ(-42deg) translateY(0)
  }
  50% {
    transform: rotateX(48deg) rotateZ(-38deg) translateY(-14px)
  }
}
.panel i {
  background: linear-gradient(150deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .03));
  border-radius: 3px;
  animation: cell 5s ease-in-out infinite
}
.panel i:nth-child(3n) {
  animation-delay: .6s
}
.panel i:nth-child(4n) {
  animation-delay: 1.2s
}
.panel i:nth-child(5n) {
  animation-delay: 1.8s
}
@keyframes cell {
  0%, 100% {
    opacity: .5
  }
  50% {
    opacity: 1
  }
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(232, 185, 60, .3);
  animation: spin 28s linear infinite
}
.ring.r1 {
  inset: -2%
}
.ring.r2 {
  inset: 12%;
  border-color: rgba(255, 255, 255, .13);
  animation-duration: 38s;
  animation-direction: reverse
}
@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}
.orb {
  position: absolute;
  top: 6%;
  right: 12%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 32%, #ffd76a, var(--gold));
  box-shadow: 0 0 42px rgba(232, 185, 60, .62);
  animation: bob 5s ease-in-out infinite
}
@keyframes bob {
  0%, 100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-14px)
  }
}
/* ==========================================================
   PORTFOLIO (categories)
   ========================================================== */
.cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}
.cat {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ln);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  transition: all .4s cubic-bezier(.22, 1, .36, 1)
}
.cat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gr), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1)
}
.cat:hover {
  transform: translateY(-8px);
  border-color: rgba(26, 107, 107, .4);
  box-shadow: 0 24px 48px rgba(0, 72, 48, .13)
}
.cat:hover::before {
  transform: scaleX(1)
}
.cat-ic {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: rgba(0, 72, 48, .07);
  color: var(--gr);
  transition: all .4s
}
.cat:hover .cat-ic {
  background: linear-gradient(140deg, var(--gr), var(--gr2));
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 72, 48, .3);
  transform: translateY(-2px)
}
.cat h4 {
  font-size: 14.4px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--gr)
}
/* ==========================================================
   ABOUT
   ========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}
.chk {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0
}
.chk li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.4px;
  font-weight: 600;
  color: var(--ink)
}
.chk i {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9.5px;
  background: rgba(26, 107, 107, .14);
  color: var(--teal)
}
.dark .chk li {
  color: #fff
}
.dark .chk i {
  background: rgba(232, 185, 60, .22);
  color: var(--gold)
}
.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}
.mini {
  background: #fff;
  border: 1px solid var(--ln);
  border-radius: 16px;
  padding: 24px 22px;
  transition: all .4s
}
.alt .mini {
  background: #fff
}
.mini:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 107, 107, .36);
  box-shadow: 0 22px 44px rgba(0, 72, 48, .12)
}
.mini i {
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 14px;
  display: block
}
.mini h4 {
  font-size: 15.4px;
  font-weight: 700;
  color: var(--gr);
  margin-bottom: 7px;
  line-height: 1.35
}
.mini p {
  font-size: 13.3px;
  line-height: 1.7;
  color: var(--tx)
}
/* capacity strip */
.caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}
.cap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
  transition: all .4s cubic-bezier(.22, 1, .36, 1)
}
.cap:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .32);
  box-shadow: 0 26px 52px rgba(0, 0, 0, .3)
}
.cap b {
  display: block;
  font-size: clamp(34px, 4.6vw, 50px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff
}
.cap b i {
  font-style: normal;
  color: var(--gold);
  font-size: .62em
}
.cap h4 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin: 12px 0 8px
}
.cap p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .62)
}
/* tech cards */
.tech {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}
.tc {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ln);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all .4s cubic-bezier(.22, 1, .36, 1)
}
.tc:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 185, 60, .5);
  box-shadow: 0 24px 48px rgba(0, 72, 48, .13)
}
.tc-ic {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 18px;
  background: rgba(232, 185, 60, .16);
  color: #a67c0a;
  transition: all .4s
}
.tc:hover .tc-ic {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(232, 185, 60, .4)
}
.tc h4 {
  font-size: 16.6px;
  font-weight: 800;
  color: var(--gr);
  margin-bottom: 10px;
  line-height: 1.32
}
.tc p {
  font-size: 13.6px;
  line-height: 1.72;
  color: var(--tx)
}
.spec {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px
}
.spec span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gr);
  background: rgba(0, 72, 48, .07);
  border: 1px solid var(--ln);
  padding: 5px 12px;
  border-radius: 50px
}
/* values */
.vals {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}
.val {
  text-align: center;
  padding: 26px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--ln);
  transition: all .4s cubic-bezier(.22, 1, .36, 1)
}
.val:hover {
  transform: translateY(-7px);
  border-color: rgba(26, 107, 107, .4);
  box-shadow: 0 22px 44px rgba(0, 72, 48, .12)
}
.val i {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
  background: rgba(26, 107, 107, .12);
  color: var(--teal);
  transition: all .4s
}
.val:hover i {
  background: var(--teal);
  color: #fff;
  transform: rotate(-8deg) scale(1.06)
}
.val h4 {
  font-size: 14.6px;
  font-weight: 800;
  color: var(--gr);
  margin-bottom: 6px
}
.val p {
  font-size: 12.6px;
  line-height: 1.62;
  color: var(--tx)
}
/* vision mission */
.vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}
.vm-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 34px 30px;
  background: linear-gradient(150deg, var(--gr) 0%, var(--gr2) 100%);
  color: #fff
}
.vm-card.teal {
  background: linear-gradient(150deg, #0d4f4f 0%, var(--teal) 100%)
}
.vm-card::before {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 68%);
  top: -95px;
  right: -70px
}
.vm-card i {
  position: relative;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block
}
.vm-card h3 {
  position: relative;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.4px;
  margin-bottom: 12px
}
.vm-card p {
  position: relative;
  font-size: 14px;
  line-height: 1.78;
  color: rgba(255, 255, 255, .75)
}
.vm-card .chk {
  position: relative;
  margin-top: 18px
}
/* certifications */
.certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px
}
.certs span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.2px;
  font-weight: 700;
  color: var(--gr);
  background: #fff;
  border: 1px solid var(--ln);
  padding: 12px 22px;
  border-radius: 50px;
  transition: all .35s
}
.certs span:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 72, 48, .1)
}
.certs i {
  color: var(--gold)
}
/* ==========================================================
   MANAGEMENT
   ========================================================== */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px
}
.lead-card {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--ln);
  border-radius: 20px;
  padding: 30px 28px;
  transition: all .4s cubic-bezier(.22, 1, .36, 1)
}
.lead-card:hover {
  transform: translateY(-7px);
  border-color: rgba(26, 107, 107, .4);
  box-shadow: 0 26px 52px rgba(0, 72, 48, .13)
}
.av {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .5px;
  color: #fff;
  background: linear-gradient(140deg, var(--gr), var(--teal));
  box-shadow: 0 12px 26px rgba(0, 72, 48, .26)
}
.lead-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--gr);
  letter-spacing: -.3px
}
.role {
  display: inline-block;
  font-size: 11.4px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26, 107, 107, .1);
  padding: 4px 12px;
  border-radius: 50px;
  margin: 7px 0 12px
}
.lead-card p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--tx)
}
/* chairman message */
.msg {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 52px 50px;
  background: radial-gradient(120% 130% at 88% -10%, #065a3e 0%, #004830 46%, #00301f 100%);
  color: #fff
}
.msg::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 60, .22), transparent 68%);
  top: -120px;
  right: -60px
}
.msg .q {
  position: relative;
  font-size: 38px;
  color: rgba(232, 185, 60, .5);
  margin-bottom: 18px
}
.msg p {
  position: relative;
  font-size: clamp(15px, 1.7vw, 18.4px);
  line-height: 1.85;
  color: rgba(255, 255, 255, .86);
  margin-bottom: 16px;
  max-width: 900px
}
.msg .by {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16)
}
.msg .by b {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #fff
}
.msg .by small {
  display: block;
  font-size: 12.4px;
  color: var(--gold);
  margin-top: 3px;
  font-weight: 700;
  letter-spacing: .6px
}
/* board / team compact */
.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}
.person {
  background: #fff;
  border: 1px solid var(--ln);
  border-radius: 18px;
  padding: 26px 24px;
  transition: all .4s cubic-bezier(.22, 1, .36, 1)
}
.person:hover {
  transform: translateY(-7px);
  border-color: rgba(26, 107, 107, .4);
  box-shadow: 0 24px 48px rgba(0, 72, 48, .12)
}
.person .top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px
}
.person .av {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  font-size: 16px
}
.person h4 {
  font-size: 15.6px;
  font-weight: 800;
  color: var(--gr);
  line-height: 1.3
}
.person .role {
  margin: 5px 0 0;
  font-size: 10.6px;
  padding: 3px 10px
}
.person p {
  font-size: 13px;
  line-height: 1.72;
  color: var(--tx)
}
/* ==========================================================
   EPC SERVICES
   ========================================================== */
.epc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}
.ec {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ln);
  border-radius: 20px;
  padding: 30px 26px;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  display: flex;
  flex-direction: column
}
.ec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gr), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1)
}
.ec:hover {
  transform: translateY(-8px);
  border-color: rgba(26, 107, 107, .4);
  box-shadow: 0 26px 52px rgba(0, 72, 48, .14)
}
.ec:hover::before {
  transform: scaleX(1)
}
.ec-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px
}
.ec-ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: rgba(0, 72, 48, .07);
  color: var(--gr);
  transition: all .4s
}
.ec:hover .ec-ic {
  background: linear-gradient(140deg, var(--gr), var(--gr2));
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 72, 48, .28);
  transform: translateY(-2px)
}
.ec-no {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -2px;
  color: rgba(0, 72, 48, .07);
  line-height: 1;
  transition: color .4s
}
.ec:hover .ec-no {
  color: rgba(232, 185, 60, .42)
}
.ec h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--gr);
  margin-bottom: 10px;
  letter-spacing: -.3px
}
.ec p {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--tx);
  margin-bottom: 16px
}
.ec ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto
}
.ec li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.9px;
  font-weight: 600;
  color: var(--ink)
}
.ec li i {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 7.5px;
  display: grid;
  place-items: center;
  background: rgba(26, 107, 107, .14);
  color: var(--teal);
  margin-top: 3px
}
/* process timeline */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 12px
}
.steps::before {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  top: 29px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .14), rgba(232, 185, 60, .5), rgba(255, 255, 255, .14))
}
.step {
  position: relative;
  text-align: center
}
.step b {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(140deg, #0a5b3e, #004830);
  border: 2px solid rgba(232, 185, 60, .4);
  transition: all .4s cubic-bezier(.34, 1.4, .64, 1)
}
.step:hover b {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(232, 185, 60, .16)
}
.step h4 {
  font-size: 13.6px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.35
}
.step p {
  font-size: 11.8px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6)
}
/* ==========================================================
   SOLAR SOLUTIONS
   ========================================================== */
.sols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}
.sol {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 296px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  color: #fff;
  background: linear-gradient(160deg, #0a5b3e, #004830);
  transition: all .45s cubic-bezier(.22, 1, .36, 1)
}
.sol::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 28px 28px
}
.sol::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 60, .3), transparent 68%);
  top: -100px;
  right: -70px;
  transition: transform .6s
}
.sol:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 72, 48, .3)
}
.sol:hover::after {
  transform: scale(1.4)
}
.sol.t2 {
  background: linear-gradient(160deg, #0d4f4f, #1a6b6b)
}
.sol.t3 {
  background: linear-gradient(160deg, #00301f, #0a5b3e)
}
.sol-ic {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 23px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  margin-bottom: auto;
  transition: all .45s cubic-bezier(.34, 1.4, .64, 1)
}
.sol:hover .sol-ic {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(-8deg) scale(1.07)
}
.sol h3 {
  position: relative;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.4px;
  margin: 22px 0 10px
}
.sol p {
  position: relative;
  font-size: 13.4px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .74);
  margin-bottom: 14px
}
.pills {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}
.pills span {
  font-size: 11.2px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 4px 11px;
  border-radius: 50px
}
/* module spec panel */
.mod {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ln);
  border-radius: 22px;
  padding: 40px;
  margin-top: 22px
}
.mod-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}
.mn {
  text-align: center;
  padding: 24px 16px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--ln)
}
.mn b {
  display: block;
  font-size: clamp(24px, 2.9vw, 32px);
  font-weight: 900;
  letter-spacing: -1.2px;
  color: var(--gr);
  line-height: 1
}
.mn b i {
  font-style: normal;
  color: var(--gold);
  font-size: .7em
}
.mn small {
  display: block;
  font-size: 11.6px;
  font-weight: 600;
  color: var(--tx);
  margin-top: 8px
}
/* ==========================================================
   CAREER
   ========================================================== */
.jobs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  
}
.job {
  padding: 24px 18px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: all .4s cubic-bezier(.22, 1, .36, 1)
}
.job:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, .11);
  border-color: rgba(232, 185, 60, .5)
}
.job i {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 13px;
  display: block
}
.job h4 {
  font-size: 13.6px;
  font-weight: 700;
  color: #fff;
  line-height: 1.42
}
/* ==========================================================
   CONTACT
   ========================================================== */
.ct-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: start
}
.ct-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border: 1px solid var(--ln);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 13px;
  transition: all .35s cubic-bezier(.22, 1, .36, 1)
}
.ct-box:hover {
  transform: translateX(5px);
  border-color: rgba(26, 107, 107, .4);
  box-shadow: 0 16px 34px rgba(0, 72, 48, .1)
}
.ct-ic {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 17px;
  background: rgba(0, 72, 48, .07);
  color: var(--gr);
  transition: all .35s
}
.ct-box:hover .ct-ic {
  background: linear-gradient(140deg, var(--gr), var(--teal));
  color: #fff
}
.ct-box small {
  display: block;
  font-size: 10.8px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--tx);
  margin-bottom: 5px
}
.ct-box b {
  display: block;
  font-size: 14.6px;
  font-weight: 700;
  color: var(--gr);
  line-height: 1.5
}
/* form */
.form {
  background: #fff;
  border: 1px solid var(--ln);
  border-radius: 22px;
  padding: 36px
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}
.f-g {
  position: relative
}
.f-g.full {
  grid-column: 1/-1
}
.f-g label {
  display: block;
  font-size: 12.2px;
  font-weight: 700;
  color: var(--gr);
  margin-bottom: 7px;
  letter-spacing: .2px
}
.f-g input, .f-g select, .f-g textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--ln);
  border-radius: 12px;
  padding: 13px 15px;
  transition: all .3s;
  outline: none
}
.f-g textarea {
  resize: vertical;
  min-height: 112px
}
.f-g input:focus, .f-g select:focus, .f-g textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 107, 107, .1)
}
.f-g input::placeholder, .f-g textarea::placeholder {
  color: rgba(14, 27, 22, .35)
}
.form .btn {
  width: 100%;
  margin-top: 6px
}
.f-note {
  font-size: 12px;
  color: var(--tx);
  text-align: center;
  margin-top: 14px
}
.f-ok {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 13.4px;
  font-weight: 700;
  color: #0a7a4a;
  background: rgba(10, 122, 74, .1);
  border: 1px solid rgba(10, 122, 74, .24);
  border-radius: 12px;
  padding: 13px 16px;
  margin-top: 14px
}
.f-ok.on {
  display: flex
}
/* ==========================================================
   CTA BAND
   ========================================================== */
.band {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(120deg, var(--gr) 0%, #0a5b3e 62%, #0d4f4f 100%);
  box-shadow: 0 30px 64px rgba(0, 72, 48, .26)
}
.band::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 60, .22), transparent 68%);
  top: -140px;
  right: 6%
}
.band-in {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: 46px 52px;
  color: #fff
}
.band h2 {
  font-size: clamp(25px, 3.2vw, 37px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -1.2px;
  margin-bottom: 12px
}
.band p {
  font-size: 14.8px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
  max-width: 520px
}
.band-act {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap
}
/* ==========================================================
   FOOTER
   ========================================================== */
.ftr {
  position: relative;
  overflow: hidden;
  padding: 70px 0 0;
  color: #fff;
  background: radial-gradient(120% 100% at 15% -20%, #065a3e 0%, #004830 46%, #00301f 100%)
}
.ftr::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 58px 58px
}
.ftr-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.1fr;
  gap: 44px;
  padding-bottom: 48px
}
.ftr-logo {
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: inline-block;
  margin-bottom: 20px
}
.ftr-logo img {
  height: 42px
}
.ftr-about {
  font-size: 13.6px;
  line-height: 1.78;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 22px;
  max-width: 310px
}
.soc {
  display: flex;
  gap: 10px
}
.soc a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: all .32s cubic-bezier(.4, 0, .2, 1)
}
.soc a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-3px)
}
.ftr h4 {
  font-size: 14.4px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px
}
.ftr h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold)
}
.ftr ul {
  display: flex;
  flex-direction: column;
  gap: 11px
}
.ftr ul a {
  font-size: 13.6px;
  font-weight: 500;
  color: rgba(255, 255, 255, .62);
  transition: all .3s
}
.ftr ul a:hover {
  color: #fff;
  padding-left: 8px
}
.ftr-ct {
  display: flex;
  flex-direction: column;
  gap: 13px
}
.ftr-ct a, .ftr-ct span {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.2px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .62);
  transition: color .3s
}
.ftr-ct a:hover {
  color: #fff
}
.ftr-ct i {
  flex: 0 0 15px;
  font-size: 12px;
  color: var(--gold);
  margin-top: 3px
}
.ftr-bot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .13)
}
.ftr-bot p {
  font-size: 12.6px;
  color: rgba(255, 255, 255, .46)
}
/* back to top */
.up {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 800;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gr);
  color: #fff;
  border: 0;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0, 72, 48, .34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}
.up.on {
  opacity: 1;
  visibility: visible;
  transform: none
}
.up:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px)
}
/* ==========================================================
   REVEAL
   ========================================================== */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1)
}
.rv.in {
  opacity: 1;
  transform: none
}
.rv.d1 {
  transition-delay: .08s
}
.rv.d2 {
  transition-delay: .16s
}
.rv.d3 {
  transition-delay: .24s
}
.rv.d4 {
  transition-delay: .32s
}
.rv.d5 {
  transition-delay: .40s
}
/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width:1100px) {
  .hero-in {
    grid-template-columns: 1fr;
    gap: 48px
  }
  .hero-vis {
    max-width: 380px
  }
  .cats {
    grid-template-columns: repeat(3, 1fr)
  }
  .vals {
    grid-template-columns: repeat(3, 1fr)
  }
  .epc, .tech, .sols, .people {
    grid-template-columns: repeat(2, 1fr)
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 14px
  }
  .steps::before {
    display: none
  }
  .jobs {
    grid-template-columns: repeat(3, 1fr)
  }
  .ftr-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }
}
@media (max-width:992px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(330px, 86vw);
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 92px 20px 40px;
    overflow-y: auto;
    box-shadow: -14px 0 40px rgba(0, 72, 48, .16);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    z-index: 950
  }
  .nav.on {
    transform: translateX(0)
  }
  .nav a {
    padding: 15px 12px;
    font-size: 15.4px;
    border-bottom: 1px solid var(--ln);
    border-radius: 0
  }
  .nav a::after {
    display: none
  }
  .burger {
    display: block
  }
  .hdr-cta {
    display: none
  }
  .about-grid, .vm, .mod, .ct-grid, .lead-grid {
    grid-template-columns: 1fr;
    gap: 34px
  }
  .caps {
    grid-template-columns: 1fr
  }
  .band-in {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 34px
  }
}
@media (max-width:680px) {
  :root {
    --hh: 70px
  }
  .wrap {
    padding: 0 18px
  }
  .sec {
    padding: 70px 0
  }
  .head {
    margin-bottom: 38px
  }
  .hero {
    padding: calc(var(--hh) + 54px) 0 70px
  }
  .hero-act {
    gap: 12px
  }
  .hero-act .btn {
    width: 100%
  }
  .hero-stats {
    max-width: none
  }
  .cats, .vals, .epc, .tech, .sols, .people, .jobs, .mini-cards, .mod-nums {
    grid-template-columns: 1fr
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 22px 12px
  }
  .lead-card {
    flex-direction: column;
    gap: 16px;
    padding: 26px 22px
  }
  .msg {
    padding: 34px 24px;
    border-radius: 20px
  }
  .form {
    padding: 26px 20px
  }
  .f-row {
    grid-template-columns: 1fr;
    gap: 14px
  }
  .band {
    border-radius: 20px
  }
  .band-in {
    padding: 32px 22px
  }
  .band-act {
    width: 100%;
    flex-direction: column
  }
  .band-act .btn {
    width: 100%
  }
  .ftr-top {
    grid-template-columns: 1fr;
    gap: 32px
  }
  .ftr-bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px
  }
  .up {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px
  }
}
@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition-duration: .01ms !important
  }
  html {
    scroll-behavior: auto
  }
}
/* ==========================================================
   IMAGES — added
   ========================================================== */
/* ---------- HERO photo ---------- */
.hero-vis {
  aspect-ratio: auto;
  max-width: 560px
}
.hv-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4/3.2;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 34px 70px rgba(0, 0, 0, .42)
}
.hv-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1)
}
.hv-frame:hover img {
  transform: scale(1)
}
.hv-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 48, 31, .1) 0%, rgba(0, 48, 31, .05) 50%, rgba(0, 48, 31, .5) 100%)
}
.hv-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 42%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .2), transparent);
  transform: skewX(-18deg);
  animation: shine 6s ease-in-out infinite
}
@keyframes shine {
  0% {
    left: -60%
  }
  55%, 100% {
    left: 135%
  }
}
.hv-chip {
  position: absolute;
  left: -18px;
  bottom: 26px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .3);
  animation: bob 5s ease-in-out infinite
}
.hv-chip i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 16px;
  background: linear-gradient(140deg, var(--gr), var(--teal));
  color: #fff
}
.hv-chip b {
  display: block;
  font-size: 14.4px;
  font-weight: 800;
  color: var(--gr);
  line-height: 1.2
}
.hv-chip small {
  display: block;
  font-size: 11.4px;
  color: var(--tx);
  margin-top: 3px
}
.hero-vis .orb {
  top: -24px;
  right: -16px;
  width: 64px;
  height: 64px;
  z-index: 5
}
/* ---------- PORTFOLIO photo cards ---------- */
.cat {
  padding: 0;
  text-align: left
}
.cat-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 15px 15px 0 0
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1)
}
.cat:hover .cat-img img {
  transform: scale(1.08)
}
.cat-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 72, 48, .05) 0%, rgba(0, 72, 48, .55) 100%)
}
.cat-img > i {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px);
  transition: all .4s cubic-bezier(.34, 1.4, .64, 1)
}
.cat:hover .cat-img > i {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(-8deg) scale(1.08)
}
.cat h4 {
  padding: 18px 18px 20px;
  font-size: 14px;
  line-height: 1.42
}
/* ---------- generic photo frame ---------- */
.ph-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16/10;
  box-shadow: 0 26px 54px rgba(0, 72, 48, .18)
}
.ph-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1)
}
.ph-frame:hover img {
  transform: scale(1.05)
}
.ph-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 48, 31, .55) 100%)
}
.ph-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  background: #fff;
  border-radius: 13px;
  padding: 11px 17px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24)
}
.ph-badge b {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: var(--gr);
  letter-spacing: -.3px;
  line-height: 1.2
}
.ph-badge small {
  display: block;
  font-size: 11.2px;
  color: var(--tx);
  margin-top: 3px
}
/* ---------- team photo avatars ---------- */
.av.ph {
  overflow: hidden;
  padding: 0;
  background: var(--bg)
}
.av.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
.msg .by .av.ph {
  border: 2px solid rgba(232, 185, 60, .5)
}
/* ---------- SOLUTIONS photo background ---------- */
.sol {
  background-image: var(--bg);
  background-size: cover;
  background-position: center
}
.sol::before {
  background-image: none;
  background: linear-gradient(165deg, rgba(0, 72, 48, .86) 0%, rgba(0, 48, 31, .9) 55%, rgba(0, 48, 31, .96) 100%);
  transition: background .45s
}
.sol:hover::before {
  background: linear-gradient(165deg, rgba(0, 72, 48, .78) 0%, rgba(0, 48, 31, .86) 55%, rgba(0, 48, 31, .94) 100%)
}
.sol.t2::before {
  background: linear-gradient(165deg, rgba(13, 79, 79, .86) 0%, rgba(26, 107, 107, .9) 55%, rgba(0, 48, 31, .95) 100%)
}
.sol.t3::before {
  background: linear-gradient(165deg, rgba(0, 48, 31, .88) 0%, rgba(10, 91, 62, .9) 55%, rgba(0, 48, 31, .96) 100%)
}
.sol-ic, .sol h3, .sol p, .pills {
  position: relative;
  z-index: 2
}
/* ---------- responsive tweaks ---------- */
@media (max-width:1100px) {
  .hero-vis {
    max-width: 520px
  }
  .hv-chip {
    left: 14px;
    bottom: 16px
  }
}
@media (max-width:992px) {
  .about-grid > div[style*="order:2"] {
    order: 0 !important
  }
  .about-grid > div[style*="order:1"] {
    order: 1 !important
  }
}
@media (max-width:680px) {
  .hv-frame {
    aspect-ratio: 4/3;
    border-radius: 18px
  }
  .hv-chip {
    padding: 11px 15px;
    gap: 11px;
    left: 10px;
    bottom: 10px
  }
  .hv-chip i {
    width: 34px;
    height: 34px;
    font-size: 14px
  }
  .hv-chip b {
    font-size: 13px
  }
  .hero-vis .orb {
    width: 50px;
    height: 50px;
    top: -16px;
    right: -8px
  }
  .ph-frame {
    border-radius: 16px
  }
  .ph-badge {
    left: 12px;
    bottom: 12px;
    padding: 9px 14px
  }
  .cat-img {
    aspect-ratio: 16/10
  }
}
/* ==========================================================
   SECTION BACKGROUND VARIANTS — v2
   ========================================================== */
.sec.tint {
  background: linear-gradient(180deg, #eef5f1 0%, #f6f9f7 100%)
}
.sec.mint {
  background: #d1e7dbde
}
.sec.teal {
  position: relative;
  color: #fff;
  background: radial-gradient(120% 90% at 20% -10%, #1f7d7d 0%, #0d4f4f 48%, #08383a 100%)
}
.sec.deep {
  position: relative;
  color: #fff;
  background: radial-gradient(120% 90% at 80% -10%, #065a3e 0%, #004830 45%, #00281a 100%)
}
.sec.teal::before, .sec.deep::before, .sec.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 62px 62px
}
.sec.teal > .wrap, .sec.deep > .wrap, .sec.dark > .wrap {
  position: relative;
  z-index: 2
}
.sec.teal .h2, .sec.deep .h2 {
  color: #fff
}
.sec.teal .h2 span, .sec.deep .h2 span {
  color: var(--gold)
}
.sec.teal .h2 span::after, .sec.deep .h2 span::after {
  background: rgba(232, 185, 60, .24)
}
.sec.teal .lead, .sec.deep .lead {
  color: rgba(255, 255, 255, .68)
}
.sec.teal .tag, .sec.deep .tag {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .16)
}
/* soft blobs for light sections */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0
}
.blob.a {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(26, 107, 107, .14), transparent 70%);
  top: -200px;
  right: -140px
}
.blob.b {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232, 185, 60, .14), transparent 70%);
  bottom: -190px;
  left: -130px
}
.sec > .wrap {
  position: relative;
  z-index: 2
}
/* dark-section card overrides */
.sec.teal .tc, .sec.deep .tc, .sec.teal .val, .sec.deep .val, .sec.teal .person, .sec.deep .person, .sec.teal .lead-card, .sec.deep .lead-card {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px)
}
.sec.teal .tc h4, .sec.deep .tc h4, .sec.teal .val h4, .sec.deep .val h4, .sec.teal .person h4, .sec.deep .person h4, .sec.teal .lead-card h4, .sec.deep .lead-card h4 {
  color: #fff
}
.sec.teal .tc p, .sec.deep .tc p, .sec.teal .val p, .sec.deep .val p, .sec.teal .person p, .sec.deep .person p, .sec.teal .lead-card p, .sec.deep .lead-card p {
  color: rgba(255, 255, 255, .68)
}
.sec.teal .tc:hover, .sec.deep .tc:hover, .sec.teal .val:hover, .sec.deep .val:hover, .sec.teal .person:hover, .sec.deep .person:hover, .sec.teal .lead-card:hover, .sec.deep .lead-card:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .34)
}
.sec.teal .tc-ic, .sec.deep .tc-ic {
  background: rgba(232, 185, 60, .2);
  color: var(--gold)
}
.sec.teal .val i, .sec.deep .val i {
  background: rgba(232, 185, 60, .18);
  color: var(--gold)
}
.sec.teal .val:hover i, .sec.deep .val:hover i {
  background: var(--gold);
  color: var(--ink)
}
.sec.teal .spec span, .sec.deep .spec span {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2)
}
.sec.teal .role, .sec.deep .role {
  color: var(--gold);
  background: rgba(232, 185, 60, .16)
}
.sec.teal .certs span, .sec.deep .certs span {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16)
}
.sec.teal .certs span:hover, .sec.deep .certs span:hover {
  background: rgba(255, 255, 255, .15);
  border-color: var(--gold)
}
.sec.teal .ec, .sec.deep .ec {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14)
}
.sec.teal .ec h3, .sec.deep .ec h3 {
  color: #fff
}
.sec.teal .ec p, .sec.deep .ec p {
  color: rgba(255, 255, 255, .66)
}
.sec.teal .ec li, .sec.deep .ec li {
  color: rgba(255, 255, 255, .9)
}
.sec.teal .ec li i, .sec.deep .ec li i {
  background: rgba(232, 185, 60, .2);
  color: var(--gold)
}
.sec.teal .ec-ic, .sec.deep .ec-ic {
  background: rgba(255, 255, 255, .12);
  color: #fff
}
.sec.teal .ec-no, .sec.deep .ec-no {
  color: rgba(255, 255, 255, .1)
}
.sec.teal .ec:hover .ec-no, .sec.deep .ec:hover .ec-no {
  color: rgba(232, 185, 60, .34)
}
.sec.teal .chk li, .sec.deep .chk li {
  color: #fff
}
.sec.teal .chk i, .sec.deep .chk i {
  background: rgba(232, 185, 60, .2);
  color: var(--gold)
}
/* light-tinted section cards keep white */
.sec.tint .cat, .sec.mint .cat, .sec.tint .tc, .sec.mint .tc, .sec.tint .val, .sec.mint .val, .sec.tint .person, .sec.mint .person, .sec.tint .lead-card, .sec.mint .lead-card, .sec.tint .ec, .sec.mint .ec, .sec.tint .mini, .sec.mint .mini, .sec.tint .form, .sec.mint .form, .sec.tint .ct-box, .sec.mint .ct-box, .sec.tint .certs span, .sec.mint .certs span {
  background: #fff
}
.sec.tint .mn, .sec.mint .mn {
  background: #f2f7f4
}
/* career jobs on light bg */
.sec.tint .job, .sec.mint .job {
  background: #fff;
  border-color: var(--ln)
}
.sec.tint .job h4, .sec.mint .job h4 {
  color: var(--gr)
}
.sec.tint .job i, .sec.mint .job i {
  color: var(--teal)
}
.sec.tint .job:hover, .sec.mint .job:hover {
  border-color: rgba(232, 185, 60, .6);
  box-shadow: 0 22px 44px rgba(0, 72, 48, .12)
}
/* steps on teal */
.sec.teal .step b {
  background: linear-gradient(140deg, #1f7d7d, #0d4f4f)
}
/* ==========================================================
   DARK SECTIONS — text safety net
   ========================================================== */
.sec.teal p, .sec.deep p, .sec.dark p {
  color: rgba(255, 255, 255, .68)
}
.sec.teal h1, .sec.teal h2, .sec.teal h3, .sec.teal h4, .sec.teal b, .sec.deep h1, .sec.deep h2, .sec.deep h3, .sec.deep h4, .sec.deep b, .sec.dark h1, .sec.dark h2, .sec.dark h3, .sec.dark h4, .sec.dark b {
  color: #fff
}
.sec.teal .h2 span, .sec.deep .h2 span, .sec.dark .h2 span {
  color: var(--gold)
}
.sec.teal small, .sec.deep small, .sec.dark small {
  color: rgba(255, 255, 255, .55)
}
.sec.teal .role, .sec.deep .role, .sec.dark .role {
  color: var(--gold);
  background: rgba(232, 185, 60, .16)
}


section#about {
    background: #e4e4e4;
}

.lead-card.wide{grid-column:1 / -1;
  background:linear-gradient(150deg,rgba(255,255,255,.12) 0%,rgba(255,255,255,.05) 100%)}
.lead-card.wide .av{flex:0 0 96px;width:96px;height:96px;font-size:26px}
.lead-card.wide h4{font-size:21px}
.sec.deep .lead-card.wide{border-color:rgba(232,185,60,.32)}
.sec.deep .lead-card.wide:hover{border-color:rgba(232,185,60,.6)}
@media (max-width:680px){
  .lead-card.wide .av{flex:0 0 78px;width:78px;height:78px;font-size:22px}
  .lead-card.wide h4{font-size:19px}
}


/* ==========================================================
   MOBILE NAV — FIX
   ========================================================== */
@media (max-width:992px){

  /* header nu stacking context nav ne fasave nahi */
  .hdr{z-index:1000}
  .hdr-in{position:relative;z-index:1002}

  /* drawer — header ni bahar, aakhi height */
  .nav{
    position:fixed !important;
    top:0 !important;
    right:0 !important;
    left:auto !important;
    bottom:0 !important;
    width:min(330px,86vw) !important;
    height:100vh !important;
    height:100dvh !important;
    max-height:none !important;
    margin:0 !important;
    background:#fff !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
    gap:0 !important;
    padding:92px 20px 40px !important;
    overflow-y:auto !important;
    -webkit-overflow-scrolling:touch;
    box-shadow:-14px 0 44px rgba(0,72,48,.2) !important;
    transform:translateX(100%) !important;
    transition:transform .4s cubic-bezier(.4,0,.2,1) !important;
    z-index:1001 !important;
    visibility:hidden;
  }
  .nav.on{
    transform:translateX(0) !important;
    visibility:visible;
  }

  .nav a{
    display:block !important;
    width:100% !important;
    padding:16px 12px !important;
    font-size:15.4px !important;
    color:var(--ink) !important;
    border-bottom:1px solid var(--ln) !important;
    border-radius:0 !important;
  }
  .nav a::after{display:none !important}

  /* burger — hamesha uper */
  .burger{
    display:block !important;
    position:relative;
    z-index:1003 !important;
  }
  .burger span{display:block;width:24px;height:2.5px;border-radius:3px;
    background:var(--gr);margin:5px auto;transition:all .35s cubic-bezier(.4,0,.2,1)}
  .burger.on span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
  .burger.on span:nth-child(2){opacity:0}
  .burger.on span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}

  /* overlay */
  .ovl{
    position:fixed !important;
    inset:0 !important;
    background:rgba(0,48,31,.5);
    backdrop-filter:blur(3px);
    opacity:0;
    visibility:hidden;
    transition:opacity .35s ease,visibility .35s ease;
    z-index:999 !important;
  }
  .ovl.on{opacity:1;visibility:visible}
}


/* ==========================================================
   CONTACT — office address (Registered / Corporate)
   ========================================================== */
.ct-addr{
  display:block;
  font-size:13.2px;
  font-weight:500;
  line-height:1.65;
  color:var(--tx);
  margin-top:5px;
}
.ct-box b + .ct-addr{margin-top:6px}

/* footer ma pan be office */
.ftr-offices{display:flex;flex-direction:column;gap:14px;margin-top:4px}
.ftr-off{display:flex;align-items:flex-start;gap:11px}
.ftr-off > i{flex:0 0 15px;font-size:12px;color:var(--gold);margin-top:4px}
.ftr-off b{display:block;font-size:11.5px;font-weight:800;letter-spacing:1px;
  text-transform:uppercase;color:rgba(255,255,255,.85);margin-bottom:3px}
.ftr-off span{display:block;font-size:12.8px;line-height:1.6;color:rgba(255,255,255,.6)}

@media (max-width:680px){
  .ct-addr{font-size:12.8px}
}


/* ==========================================================
   MOBILE OVERFLOW & HEADER FIX (ADDED)
   ========================================================== */

/* ૧. આખી સાઇટનું જમણી બાજુનું સ્ક્રોલ (સફેદ પટ્ટો) બંધ કરવા */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
}

/* ૨. બેકગ્રાઉન્ડના શેડો (blobs) જે બહાર જતા હતા તેને અટકાવવા */
.sec {
    overflow: hidden; 
}

/* ૩. મોબાઈલમાં હેડર, લોગો અને મેનુ આઇકનને પરફેક્ટ સેટ કરવા */
@media (max-width: 680px) {
    .hdr-in {
        padding: 0 15px !important; /* મોબાઈલમાં પેડિંગ ઓછું કર્યું */
        width: 100%;
        box-sizing: border-box;
    }
    
    .logo {
        flex: 1; /* લોગોને બરોબર જગ્યા આપવા */
    }

    .logo img {
        max-width: 180px !important; /* લોગો મોટો થઈને મેનુને બહાર ના ધકેલે તે માટે */
        height: auto !important;
    }

    .burger {
        flex: 0 0 44px; /* બટનને એની જગ્યા પર ફિક્સ રાખવા */
        margin-left: auto;
    }
}
   
 /* ==========================================================
   TWIN 3D PANEL + SHREYAS (PERFECT PROPER FIT)
   ========================================================== */

/* મેઈન બોક્સ કન્ટેનર */
.hero-vis.shreyas-box {
    position: relative !important;
    width: 100%;
    max-width: 480px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* ૧. ડબલ સોલર પેનલ - શ્રેયસની પાછળ પ્રોપર ગોઠવણી */
.twin-panel-img {
    position: absolute !important;
    top: -10px;
    right: -10px;
    height: 440px !important;
    width: auto !important;
    z-index: 1 !important;
    /* હળવો શેડો જેથી પેનલ ઉપસીને દેખાય */
    filter: drop-shadow(-10px 15px 25px rgba(0, 0, 0, 0.5));
}

/* ૨. શ્રેયસ ઐયર - આગળ અને સાવ તળિયે બોર્ડર પર ટચ */
.shreyas-img {
    position: absolute !important;
    bottom: -114px !important; /* બેનરના સાવ તળિયે ફિટ થશે */
    left: 48%;
    transform: translateX(-50%);
    max-height: 520px !important;
    width: auto !important;
    z-index: 3 !important;
    margin: 0 !important;
    filter: drop-shadow(0px 12px 24px rgba(0, 0, 0, 0.4));
}

/* ૩. બ્રાન્ડ એમ્બેસેડર બેજ */
.shreyas-chip {
    position: absolute !important;
    left: -15px;
    bottom: 30px !important;
    z-index: 4 !important;
}

/* ૪. પીળો ચાંદલો (Orb) */
.shreyas-orb {
    position: absolute !important;
    top: 30px;
    left: 10px;
    width: 80px !important;
    height: 80px !important;
    z-index: 0 !important;
}

/* 📱 મોબાઈલ અને ટેબ્લેટ વ્યુ માટે રેસ્પોન્સિવ સેટિંગ */
@media (max-width: 992px) {
    .hero-vis.shreyas-box {
        height: 390px;
        max-width: 340px;
        margin-top: 10px;
    }

    .twin-panel-img {
        height: 330px !important;
        top: 0px;
        right: -5px;
    }

    .shreyas-img {
        bottom: -70px !important;
        max-height: 410px !important;
    }

    .shreyas-chip {
        left: 0px;
        bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .hero-vis.shreyas-box {
        height: 330px;
        max-width: 280px;
    }

    .twin-panel-img {
        height: 270px !important;
        right: -10px;
    }

    .shreyas-img {
        max-height: 340px !important;
    }
}