:root {
  --green: #34b605;
  --bg-dark: #0b0f0c;
  --bg-light: rgba(223, 223, 223, 0.863);
  --text-dark: #ffffff;
  --text-light: #111111;
  --card-dark: #131a15;
  --card-light: #ffffff;
}

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

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;   /* KILLS SIDE SCROLL */
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  position: relative;
  transition: background 0.4s ease, color 0.4s ease;
  font-size: 17px;
}

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

button {
  cursor: pointer;
}

body.menu-open {
  overflow: hidden; /* STOP SCROLL WHEN NAV IS OPEN */
}


body.dark {
  background: var(--bg-dark);
  color: var(--text-dark);
}

body.light {
  background: var(--bg-light);
  color: var(--text-light);
}

/* NAVBAR */

.navbar {
  width: 100%;
  max-width: 100%;
  padding: 20px clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


@media (max-width: 620px) {
  .nav-actions .btn-primary {
    display: none;
  }
}

/* MOBILE NAV */
@media (max-width: 992px) {

  nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 260px;
    height: 100vh;
    transform: translateX(100%);
    background: var(--card-dark);
    padding: 100px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.35s ease;
    z-index: 999;
  }

  body.light nav {
    background: var(--card-light);
  }

  nav.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: block;
  }
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
}

.logo-icon img{
  width: 70px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: inherit;
  font-size: 17px;
}

.nav-actions {
  display: flex;
  gap: 15px;
}

.theme-toggle {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.btn-primary {
  background: var(--green);
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
  color: #f7f7f7;
  font-weight: bold;
}

/* HERO */
.hero {
  width: 100%;
  max-width: 100%;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: clamp(30px, 5vw, 50px);
  overflow: hidden; /* IMPORTANT */
  zoom: 110%;
}


.hero-left,
.hero-right {
  max-width: 100%;
}

/* STACK ON MOBILE */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    zoom: 90%;
  }

  .hero-right {
    margin-top: 70px;
    justify-content: center;
  }

  .search-box {
    justify-content: center;
  }
}

.hero-left h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 20px 0;
}

.green {
  color: var(--green);
}

.search-box {
  margin-top: 25px;
  display: flex;
}

.search-box input {
  padding: 14px;
  width: 260px;
  border-radius: 6px 0 0 6px;
  border: none;
}

.search-box button {
  background: var(--green);
  border: none;
  padding: 14px 20px;
  border-radius: 0 6px 6px 0;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.search-box button span{
  margin-left: 10px;
  background-color: whitesmoke;
  color: rgb(5, 102, 5);
  padding: 2px 6px;
  font-size: 16px;
  border-radius: 5px;
}

/* HERO RIGHT */
.hero-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 4px dashed var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 1;
}

.circle img {
  position: absolute;
  width: 120%;
  height: auto;
  z-index: 00;
  bottom: 2px;
  border-radius: 100%;
  mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  
}

.badge {
  z-index: 10;
  position: absolute;
  background: var(--green);
  color: whitesmoke;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  max-width: 200px;
  word-wrap: break-word;
  font-size: 17px;
  text-shadow: 2px 2px 2px #00000077;
  align-content: center;
}

.clients {
  top: -10px;
  left: 130px;
  background: linear-gradient(to right, #7CFF4D 0%, #034603be 100%);

}

@media (max-width: 576px) {
  .badge.clients {
    top: 10px;
    left: 30px;
  }

  .badge.workers {
    right: 40px;
    
  }


}



.workers {
  bottom: 35%;
  right: 80px;
  padding: 10px;
  background: linear-gradient(to left, #7CFF4D 0%, #034603af 100%);
  border-radius: 100%;
  height: 90px;
  width: 90px;
  text-align: center;
}

.workers span {
  font-size: 16px;
  color: white;
}

.workers-online {
  z-index: 10;
  position: absolute;
  bottom: -10px;
  left: 70px;
  background: linear-gradient(to right, #7CFF4D 0%, #03460377 100%);
  padding: 10px;
  border-radius: 10px;
}

.avatars img {
  border-radius: 50%;
  margin-right: -8px;
  border: 2px solid #000;
}


/* OPEN MENU BUTTON */

  .menu-toggle {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* MORPH TO X */
body.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* MOBILE ONLY */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

    .theme-toggle {
    display: none;
  }
}


nav {
  z-index: 999;
}



.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 998;
}

body.menu-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}







.stat .count {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}


/* ===== STATS BAR ===== */
.stats-bar {
  width: 100%;
  background: repeating-linear-gradient(
  -45deg,
  #1c6900 0px,
  #154d01 35px,
  #050505 35px,
  #050505 70px
  );
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.884);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 10px 2.4rem;
  text-align: center;
  color: white;

  /* Key for animation */
  background-size: 200% 200%;
 animation: tapeMove 170s linear infinite;
}


/* Subtle horizontal movement */
@keyframes tapeMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200% 0;
  }
}

.stat h3 {
  font-size: 2rem;
  font-weight: 700;
}

.stat p {
  font-size: 1rem;
  opacity: 0.9;
}


/* ===== SERVICES SECTION ===== */
.services {
  max-width: 100%;
  margin: auto;
  padding: 4rem 2rem;
  background-color: rgb(233, 233, 233);
  color: black;
}

.services-header {
  max-width:600px;
  margin-bottom: 3rem;
}

.subtitle {
  color: #227c01;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  width: 100%;
  display: flex;
}

.subtitle strong {
  flex: 1;
  height: 2px;
  background: #2b9c01;
  align-self: center;
  margin-left: 10px;
}

.subtitle b {
  font-size: 1rem;
  margin-right: 10px;
  font-weight: 800;
}

.services-header h2 {
  font-size: 2.4rem;
  margin: 0.6rem 0 1rem;
  line-height: 1.2;
}

.services-header p {
  color: #555;
  margin-bottom: 1.5rem;
}

.btn-primary2 {
  display: inline-block;
  color: black;
  padding: 0.7rem 1.4rem;
  border-radius: 20px;
  text-decoration: none;
  transition: ease-in 0.3s;
  border: 3px solid  #034603be;
  font-weight: bold;
}

 .btn-primary2:hover {
  background: linear-gradient(to right, #7CFF4D 0%, #034603be 100%);
  color: white;

}

/* ===== SERVICES GRID ===== */
.services-grid {
display: flex;
align-items: center;
justify-content: space-evenly;
gap: 2rem;
flex-wrap: wrap;
}

.service-card {
  width: 250px;
  height: 200px;
  background: var(--white);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.596);
   transition: 
    background 0.4s ease,
    color 0.4s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card-content {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  align-items: baseline;
  justify-content: center;
  height: 100%;
}

.service-card i {
  font-size: 2rem;
  color: var(--green-main);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.service-card a {
  text-decoration: none;
  color:  #1e7200;
  font-weight: 700;
  font-size: 0.9rem;
}

.card-number {
  position: absolute;
  top: 16px;
  right: 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #a5a5a5;
  transition: color 0.3s, transform 0.3s;
}

/* ACTIVE CARD */
.service-card.active {
  background: linear-gradient(to left, #7CFF4D 0%, #034603be 100%);
  transform: translateY(-8px);
  transform: scale(1.1);
  transition: all 0.2s ease;
}

.service-card.active i,
.service-card.active a {
  color: whitesmoke;
  text-shadow: 2px 2px 2px #000000d5;
}

.service-card.active .card-number {
  color: rgba(0, 0, 0, 0.7);
  transform: scale(3);
  transition: all 0.6s ease;

}

/* HOVER */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 2rem;
  }

  .stats-bar {
    padding: 1.5rem 1rem;
  }

  .service-card {
    zoom: 70%;
    padding: 0.8rem;
    margin: 0;
    width: 200px;
}

.service-card h3{
  font-size: 1.3rem;
}
 .service-card a{
  font-size: 1rem;
 }

.services-grid {
  gap: 0.9rem;
}

.services {

  padding: 4rem 1rem;

}

}


.pro-work-section {
  padding: 70px 10px;
  background-color: rgba(223, 223, 223, 0.863);
  height: auto;
  position: relative;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: smooth; /* optional */
}



/* The vertical construction tape using ::after */
.pro-work-section::after {
  content: "";
  position: absolute;
  top: -200px;
  right: 70px; /* change to right:0 if you want it on right */
  width: 60px;   /* tape width */
  height: 100%;   /* full height */
  background: repeating-linear-gradient(
    45deg,       /* angle for diagonal stripes */
    #1c6900 0px,
    #154d01 35px,
    #050505 35px,
    #050505 70px
  );
  z-index: 0;
  pointer-events: none; /* clicks pass through */
  /* optional animation */
  background-size: 200% 200%;
  animation: tapeMove 170s linear infinite;
    transform: rotate(-45deg);
}

/* Bring content above the tape */
.pro-work-section > * {
  position: relative;
  z-index: 1;
}


.pro-work-wrap {
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: space-around;
  height: auto;
  width: 80%;
  margin: auto;
}

/* LEFT VISUAL */
.pro-visual-zone {
  position: relative;
  width: 450px;
}

.pro-bg-diamond {
  border-radius: 15px;
  width: 120px;
  height: 120px;
  background: linear-gradient(to right, #6af736 0%, #034603 100%);
  transform: rotate(45deg);
  position: absolute;
  top: 70px;
  right: -100px;
}

.pro-outline-diamond {
  width: 250px;
  height: 250px;
  border: 3.5px solid #034603;
  transform: rotate(45deg);
  position: absolute;
  top: 27%;
  left: -30px;
  border-radius: 20px;

}

.pro-image-diamond {
  width: 550px;
  height: 550px;
  clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  overflow: hidden;
  position: relative;
  z-index: 3;
  border-radius: 70px;
  background-color: rgb(209, 207, 207);

}

.pro-image-diamond {
  overflow: hidden;
}

.pro-image-track {
  display: flex;
  width: 200%;
  height: 100%;
  transform: translateX(0);
  transition: transform 1.1s ease;
}

.pro-slide-img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}


.pro-img-exit {
  transform: translateX(120%);
  opacity: 0;
}


.pro-tip-wrap {
  margin:  55px 0px; /* already requested extra space */
  position: absolute;
  bottom: -100px;
  left: -200px;
  padding: 10px 20px;
  z-index: 0;
  width: 420px;

}


@media (max-width: 1384px) {

  .pro-tip-wrap {
  left: -110px;
  z-index: 100;
  background-color: rgba(138, 138, 138, 0.767);

}



.pro-tip-title {
  color: #0fad01;
}
}





@media (max-width: 920px) {


  
.pro-visual-zone {
  position: relative;
  top: 130px;
  left: -60px;
  margin: auto;
  zoom: 90%;
}
  .pro-tip-wrap {
    position: static;
    width: 420px;
    margin: auto;
    background-color: transparent;

  }

  .pro-tip-text {
  font-size: 18px;
  height: 70px;
  color: #000000;
  
}

.pro-btn {
    display: none;
  }

}



.pro-tip-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.pro-tip-icon {
  font-size: 30px;
  color: #f1a500;
  /* Gradient Text Effect 
  background: linear-gradient(90deg, #ff9800, #ffb922);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  filter: drop-shadow(0 4px 6px rgb(245, 211, 21));
  text-shadow: 0px 2px 2px #000000c9;
}

.pro-tip-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #042501;
}

.pro-tip-text {
  font-size: 18px;
  line-height: -1.2;
  color: #1a1919;
  opacity: 0;
  transition: opacity 0.6s ease;
  font-weight: 700;
  height: 100px;
  
}



/* RIGHT FLOW */
.pro-flow-zone {
  position: relative;
  width: 420px;
  left: -50px;
}

.pro-title {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 800;
  color: #050505;
}

.pro-flow-line {
  position: absolute;
  top: 78px;
  left: 19px;
  width: 2px;
  height: 320px;
  background: #028f0d;
  margin-left: 5px;
  z-index: 0;
}

.pro-step {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.pro-diamond-icon {
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  background: #e5e7eb;
  display: grid;
  place-items: center;
  transition: background .4s ease;
  box-shadow: 0px 2px 2px 1px gray;
  margin: 10px 0px;
  border-radius: 10px;
}

.pro-diamond-icon span {
  position: relative;
  transform: rotate(-45deg);
  font-size: 20px;
  color: black;
}

.pro-step p {
  margin: 0;
  font-size: 15px;
  color: #475569;
  font-weight: 800;
}

.pro-step-on .pro-diamond-icon {
    background: linear-gradient(to left, #3bd104 0%, #034603 100%);

}

.pro-step-on p {
  color: #030303;
}


.pro-step-on .pro-diamond-icon span {
  color: #ececec;
}

.hidden-button{
  display: none;
  justify-content: center;
  width: 100%;
  margin: auto;
  top: 100px;
  position: relative;

}

.hidden-button button{
  margin: auto;
  margin-top: 30px;
  padding: 12px 28px;
  background: linear-gradient(to bottom,#012201 0%, #7CFF4D 0%, #034603 80%);
  color: #fff;
  border: none;
  border-radius: 6px;
  z-index: 1;
  font-size: 18px;
}


.pro-btn {
  position: relative;
  margin-top: 30px;
  padding: 12px 28px;
  background: linear-gradient(to bottom,#012201 0%, #7CFF4D 0%, #034603 80%);
  color: #fff;
  border: none;
  border-radius: 6px;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 909px) {
  
  .pro-work-wrap {
    flex-direction: column;
    transform: scale(.8);
    transform-origin: top center;
    gap: 60px;
    margin: auto;
  }

  .pro-step {
    flex-direction: column;
    text-align: center;
  }

  .pro-flow-zone {
    margin: auto;
    display: flex;
    justify-content: space-around;
    gap: 13px;
    top: 120px;
  }

  .pro-flow-line {
    display: none;
  }

  .pro-btn {
    width: 100%;
    text-align: center;
  }

  .pro-title {
    display: none;
}


.pro-tip-title,
.pro-tip-icon  {
  font-size: 25px;

}


.hidden-button{
  display: block;
}

.pro-work-section::after {

  top: -400px;
  right: 70px; /* change to right:0 if you want it on right */
  width: 30px;   /* tape width */

}

.pro-bg-diamond {
  width: 100px;
  height: 90px;
  top: 80px;
  right: 20px;
  zoom: 90%;

}

.pro-image-diamond,
.pro-outline-diamond {
  zoom: 90%;
}

.pro-outline-diamond {
  width: 150px;
  height: 150px;
  top: 27%;
  left: -30px;
  

}


.pro-diamond-icon {
  width: 70px;
  height: 70px;
}



}


.clip-img{
  position: absolute;
  bottom: -2%;
  right: -25%;
  width: 80%;
  height: auto;
  z-index: 0;

}

.clip-img img{
  position: relative;
  width: 80%;
  height: auto;
  transform: scaleX(-1);
  opacity: 0.5;
  /*filter: grayscale(100%);*/
}



.projects-section{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  padding: 5.2rem 0 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.096) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.096) 1px, transparent 1px),
    radial-gradient(ellipse at center, #141a26 0%, #05070b 72%);
  background-size:42px 42px,42px 42px,cover;
}

.projects-grid-parallax{
  position:absolute;
  inset:0;
  z-index:0;
  will-change:transform;
}

.projects-inner{
  position:relative;
  text-align:center;
  max-width:920px;
  padding:2rem;
  z-index:3;
}

.big-number{
  position:absolute;
  top:12%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:clamp(7rem, 13vw,17rem);
  font-weight:900;
  letter-spacing:-0.05em;
  line-height:1;
  color:#ffffff;
  opacity:0.9;
  background:linear-gradient(to bottom, rgba(255,255,255,0.45), rgba(255,255,255,0.05) 55%, rgba(0,0,0,0) 80%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  pointer-events:none;
}

.projects-inner h2{
  font-size:clamp(1.9rem,4.2vw,3.1rem);
  margin-bottom:1rem;
}

.projects-inner p{
  max-width:660px;
  margin:0 auto 2.2rem;
  color:#b7bdc8;
  font-size:1.02rem;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
}

.cta-buttons button{
  padding:0.95rem 1.7rem;
  border-radius:9px;
  border:none;
  font-weight:600;
  cursor:pointer;
}

.btn-primary{
  background:linear-gradient(to bottom,#012201 0%, #7CFF4D 0%, #034603d8 80%);
  color:#e2e2e2;
  font-display: flex;
  align-items: center;
  justify-content: space-around;
}
.btn-secondary{background:#1e2636;color:#ffffff}

/* === PIXEL PERFECT RIBBON TAG === */
/* === ROUNDED BADGE TAG === */
.ribbon{
  position:absolute;
  right:7%;
  top:40%;
  animation:ribbonFloat 3.6s ease-in-out infinite;
  z-index: 100;
  
}

.ribbon-core{
  width:120px;
  height:120px;
  background:linear-gradient(to bottom,#012201 0%, #7CFF4D 0%, #034603 80%);
  color:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  text-align:center;
  box-shadow:0 14px 35px #04530488;
}

@keyframes ribbonFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-16px)}
}

/* === TRUE ZIG ZAG ELEMENTS === */
.zigzag{
  position:absolute;
  width:100px;
  height:30px;
  background:linear-gradient(90deg,#6cf,#8affc1);
  clip-path:polygon(0 50%,10% 0,20% 100%,30% 0,40% 100%,50% 0,60% 100%,70% 0,80% 100%,90% 0,100% 50%,90% 100%,80% 0,70% 100%,60% 0,50% 100%,40% 0,30% 100%,20% 0,10% 100%);
  animation:zigFloat 6s ease-in-out infinite;
}

.zigzag.top-right{top:8%;right:17%}
.zigzag.bottom-left{top:42%;left:15%;animation-delay:2s}

@keyframes zigFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

/* === SCROLL INTERSECTION ANIMATION === */
[data-projects-observe]{
  opacity:0;
  transform:translateY(30px);
  transition:all 0.9s ease;
}

[data-projects-observe].active{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:768px){

 .projects-section{
  padding: 3.2rem 0 0 0;
} 
.ribbon{
  right:10%;
  top: 41%;
  transform:scale(0.85)
}

.ribbon-core{
  width:90px;
  height:90px;
  font-size:0.85rem;
  
}



.cta-buttons button{
  padding:0.35rem 0.7rem;
  border-radius:7px;
  font-size:0.9rem;
}

.big-number{
  font-size:clamp(8rem, 13vw,16rem);
  top:17%;
  
}

.projects-inner h2{
  font-size:clamp(1.2rem,4.2vw,2.1rem);
}


.zigzag{
  width:80px;
  height:20px;
}

.zigzag.top-right{top:6%;right:17%}



.clip-img{
  position: absolute;
  bottom: -2%;
  right: -20%;
  width: 70%;
  

}

}


/* === PROJECT CONTENT CONTAINER === */
.project-contents{
  z-index: 0;
  position:relative;
  width:100%;
  padding:3rem 0;
  color:#ffffff;
  overflow:hidden;}

.marquee-wrapper{
  overflow:hidden;
  width:100%;
  position:relative;

}

.marquee-row{
  display:flex;
  width:fit-content;
  animation:scroll-left 35s linear infinite;
  z-index: 0;
}

.marquee-row.reverse{
  animation:scroll-right 35s linear infinite;
}

.project-contents:hover .marquee-row{
  animation-play-state:paused;
}

/* === IMAGE CARD === */
.project-card{
  position:relative;
  flex:0 0 auto;
  width:320px;
  height:220px;
  overflow:hidden;
  background:#111;
}

.project-title{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  padding:0.55rem 0.75rem;
  background:#e9e7e7;
  color:#000000;
  font-size:0.85rem;
  font-weight:600;
  text-align:center;
  z-index:2;
  border-left: 2px solid rgba(0, 0, 0, 0.801);
  border-right: 2px solid rgba(0, 0, 0, 0.801);
}

.project-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: center;
  display:block;
}

/* === KEYFRAMES (SEAMLESS LOOP) === */
@keyframes scroll-left{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

@keyframes scroll-right{
  from{transform:translateX(-50%)}
  to{transform:translateX(0)}
}

/* === RESPONSIVE === */
@media(max-width:768px){
  .project-card{width:70vw;height:200px}

}



/* ===== WHY CHOOSE US SECTION ===== */
 .why-choose {
      max-width: 100%;
      padding: 40px 20px;
      position: relative;
      background-color: rgba(223, 223, 223, 0.863);
      overflow: hidden;
      overscroll-behavior: smooth;
      
    }

    .why-choose h2 {
      text-align: center;
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 40px;
      color: #0f172a;
    }

    .choose-wrapper {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 520px;
    }

    /* Center image */
    .center-image {
      position: relative;
      width: 46%;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2;
    }

    .center-image::after {
      content: '';

      position: absolute;
      background: linear-gradient(to left,#012201 0%, #7CFF4D 0%, #034603 80%);
      border-radius: 50% 50% 50% 0%;
      z-index: 1;
      height: 300px;
      width: 300px;
      rotate: calc(-45deg);
      top: 25%;
      left: 25%;
      animation:ribbonFloat 2.6s ease-in-out infinite;

    }

      .center-image::before {
      content: '';
      position: absolute;

      width: 250px;
      height: 26px;

      background: rgba(0, 0, 0, 0.733);
      filter: blur(14px);

      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);

      z-index: 1;
    }


    .center-image img {
      position: relative;
      z-index: 2;
      width: 65%;
    }

    /* Floating feature items around image (scatter via nth-child) */
    .feature {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 14px;
      max-width: 260px;
      animation:ribbonFloat 3.6s ease-in-out infinite;

    }

    .feature:nth-child(1) { /* top */
      top: -10px;
      left: 46%;
      transform: translateX(-50%);
      animation-delay: 1s;
      flex-direction: column;
      text-align: center;
    }

    .feature:nth-child(2) { /* left upper */
      top: 100px;
      left: 380px;
      animation-delay: 2.5s;
      flex-direction: row-reverse;
      text-align: right;
    }

    .feature:nth-child(3) { /* left bottom */
      top: 290px;
      left: 300px;
      animation-delay: 0.5s;
      flex-direction: row-reverse;
      text-align: right;
    }
    
    .feature:nth-child(4) { /* Left bottom */
      bottom: 80px;
      left: 390px;
      flex-direction: row-reverse;
      text-align: right;
      animation-delay: 1.5s;
    }

    
    .feature:nth-child(6) { /* right upper */
      top: 290px;
      right: 330px;
      animation-delay: 3s;
    }

    .feature:nth-child(7) { /* right bottom */
      bottom: 80px;
      right: 380px;
      animation-delay: 3.5s;
    }

    .feature:nth-child(8) { /* far right */
      top: 100px;
      right: 380px;
    }

    .icon {
      min-width: 60px;
      height: 60px;
      background: linear-gradient(to bottom,#012201 0%, #7CFF4D 0%, #034603 80%);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 8px 20px rgba(11, 94, 215, 0.25);
    }

    .text h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 4px;
      color: #0f172a;
    }

    .text p {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.5;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .choose-wrapper {
        min-height: auto;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
      }

      .center-image{
        display: none;
      }
      .feature {
        position: static;
        margin: 20px;
        animation: none;
        text-align: center;
        margin-top: 24px;

      }

      .feature:nth-child(1) { /* top */
        transform: none;
    }


      .feature,
      .feature.left {
        flex-direction: column;
        text-align: center;
      }

      .center-image::before {
        width: 260px;
        height: 260px;
      }
    
    }

    
      
    

      
/* ===== CALL TO ACTION SECTION ===== */
.cta-wrapper {
  padding: 10px 0px;
  justify-content: center;
  
}

.cta-card {
  margin: 20px auto;
  position: relative;
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(to right, #034603be 30%, #1e6b00 130%, black 10%);
  border-radius: 28px;
  padding: 60px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}

/* TEXT CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #e9f5e9;
  margin-bottom: 36px;
}

/* BUTTONS */
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: 50px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: transform .3s ease, box-shadow .3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.cta-btn.outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
}

/* BUTTON DOT */
.cta-btn .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #7CFF4D;
  box-shadow: 0 0 14px #7CFF4D;
}

/* CIRCULAR UX */
.cta-circles {
  position: absolute;
  right: -300px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 650px;
  pointer-events: none;
  background:
    radial-gradient(circle at center,
      #030700e7 0%,
      #000000d0 20%,
      #000000bd 40%,
      rgba(1, 15, 3, 0.534),
      rgba(3, 3, 3, 0.596),
      rgba(7, 7, 7, 0.11) 60%

    ),
    radial-gradient(circle at center,
      rgba(71, 83, 59, 0.555) 0%,
      rgba(38, 44, 36, 0.911) 30%,
      rgba(122, 230, 149, 0.15),
      rgba(255,255,255,0) ,
      rgba(100, 96, 96, 0.5) 

    );
  border-radius: 50%;
  filter: blur(0.2px);
  animation: ripple 8s ease-in-out infinite;
}


@keyframes ripple {
  0% { transform: translateY(-50%) scale(1); }
  100% { transform: translateY(-50%) scale(1.06); }
}






/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-card {
    padding: 48px 32px;
  }

  .cta-content h2 {
    font-size: 34px;
  }

  .cta-circles {
    right: -260px;
  }
}

@media (max-width: 600px) {
  .cta-card {
    padding: 40px 26px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-circles {
    display: none;
  }
}



/* ===== TESTIMONIALS SECTION ===== */

.testimonials {
  position: relative;
  padding: 120px 20px 80px;
  background: #fff;
  overflow: hidden;
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
  color: #475569;
  height: 100vh;
}

.testimonials h1{
  font-size: 2.5rem;
  color: #222422f6;
  position: relative;
  bottom: 50px;
}

/* GHOST NUMBER */
.ghost-number {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 450px;
  font-weight: 900;
  color: rgba(1, 167, 37, 0.089);
  pointer-events: none;
}

/* TRACK */
.testimonial-track {
  display: flex;
  justify-content: center;
  gap: 90px;
  align-items: center;
  transition: transform 1s ease;
  position: relative;
  top: 20%;
}

/* ITEM */
.testimonial {
  position: relative;
  width: 200px;
  opacity: 0.65;
  transform: scale(0.8);
  transition: all 0.9s ease;
}

.testimonial.active {
  opacity: 1;
  transform: scale(1.1);
}

/* IMAGE */
.testimonial img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #7CFF4D;
  margin-bottom: 12px;
}

/* NAME */
.testimonial h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: darkgreen;
}

/* BUBBLE */
.bubble {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 260px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 5px 10px rgba(0, 0, 0, 0.336);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
  color: #333;
  z-index: 10;
}

.testimonial.active .bubble {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* TIP */
.bubble .tip {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #125a01;
  transform: translateX(-50%) rotate(45deg);
  z-index: 0;

}

/* DOTS */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 5px rgba(0, 0, 0, 0.589);
  padding: 10px;
  background-color: gainsboro;
}

.dots span {
  width: 15px;
  height: 15px;
  background: #525252c5;
  border-radius: 50%;
  transition: background 0.4s;
}

.dots span.active {
  background: #2da102;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-track {
    gap: 20px;
    zoom: 90%;
  }

  .ghost-number {
    font-size: 200px;
    color: rgba(0, 0, 0, 0.26);
    top: 30%;
  }

  .dots {
    gap: 5px;
  }

  .dots span {
    width: 12px;
    height: 12px;
  }

  .bubble {
  width: 200px;
  background: #fff;
  padding: 10px;

}
}


/* ===== CONTACT SECTION ===== */

 .contact-section{
      position:relative;
      min-height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:60px 20px;
      overflow:hidden;
      background-color: rgba(223, 223, 223, 0.863)
    }

    /* paint splash background */
    .contact-section::before,
    .contact-section::after{
      content:"";
      position:absolute;
      width:220px;
      height:220px;
      background:radial-gradient(circle, rgba(0, 140, 255, 0.486), transparent 70%);
      border-radius:50%;
      z-index:0;
    }

    .contact-section::before{
      top:10%;
      left:5%;
    }

    .contact-section::after{
      bottom:5%;
      right:37%;
    }

    .splash{
      position:absolute;
      width:13px;
      height:13px;
      background:#ff6b00;
      border-radius:50%;
      opacity:.6;
      z-index:0;
    }

    .splash.blue{ background:#2bb0ff; }
    .splash.green{ background:#36c96f; }

    .contact-wrapper{
      position:relative;
      width:100%;
      display: flex;
      /* display:grid;
      grid-template-columns: 1fr 1fr;
      gap:60px;
      */
      justify-content: space-around;
      flex-wrap: wrap;
      align-items:center;
      z-index:1;
    }

    /* form side */
    .contact-form{
      width: 40%;
    }
    .contact-form h2{
      font-size:32px;
      margin-bottom:30px;
      color:#111;
    }

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

    .form-group label{
      display:block;
      font-size:14px;
      color:#444;
      margin-bottom:6px;
    }

    .form-group input,
    .form-group textarea{
      width:100%;
      padding:14px 16px;
      border:1px solid #e4e4e4;
      border-radius:6px;
      font-size:15px;
      outline:none;
      transition:.2s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus{
      border-color:#019b01;
      box-shadow:0 0 0 3px rgba(43,176,255,.15);
    }

    textarea{
      resize:none;
      min-height:120px;
    }

    .submit-btn{
      width:100%;
      padding:14px;
      background: linear-gradient(to right, #6af736 0%, #034603 100%);
      border:none;
      border-radius:6px;
      font-size:17px;
      color:#e6e6e6;
      cursor:pointer;
      transition:  2s ease-in-out;
      font-weight: 700;
      
    }

    .submit-btn:hover{
      background:linear-gradient(to left, #6af736 0%, #034603 130%);
      transition:  2s ease-in-out;
    }

    /* image side */
    .contact-visual{
      display:flex;
      flex-flow: column;
      align-items:center;
      justify-content:center;
      width: 50%;
    }

    .contact-visual::before{
      content:"";
      position:absolute;
      width:200px;
      height:200px;
      background:radial-gradient(circle, #34c96f, transparent 70%);
      border-radius:50%;
      top:-1%;
      right:2%;
      z-index:-1;
    }

    .contact-visual h1{
      position: relative;
      top: 50px;
      z-index: 0;
      font-size:6rem;
      width: 650px;
      margin-bottom:20px;
      color:#044101;
      line-height: 70px;
      font-family: "Monoton", sans-serif;
      font-weight: 400;
      font-style: normal;
      word-spacing:  8px;

    }

    

    .contact-visual img{
      max-width:100%;
      height:auto;
      z-index: 10;
      position: relative;
      bottom: 20px;
    }

    /* responsive */
    @media(max-width:900px){
      .contact-wrapper{
        margin: 0;
        width: 90%;
        grid-template-columns:1fr;
        gap:10px;
      }

      .contact-form{
        width: 98%;
        margin: auto;
      }
      .contact-visual{
        width: 85%;
      }


      .contact-visual h1{
      position: relative;
      font-size:4rem;
      width: 270px;
      margin-bottom:20px;
      color:#044101;
      line-height: 70px;
      font-family: "Monoton", sans-serif;
      font-weight: 400;
      font-style: normal;
      word-spacing:  8px;

    }


      .contact-visual{
        order:-1;
      }
    }



    /* TEAM SECTION */


  .ux-team-marquee {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
  color: #fff;
  width: 100%;
}

.ux-team-bg span {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(124, 255, 77, 0.12);
  filter: blur(120px);
  animation: bgFloat 10s infinite alternate;
}

.ux-team-bg span:nth-child(1){top:10%;left:10%;}
.ux-team-bg span:nth-child(2){bottom:20%;right:15%;animation-delay:2s;}
.ux-team-bg span:nth-child(3){top:40%;right:40%;animation-delay:4s;}

@keyframes bgFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-60px); }
}

.ux-team-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.ux-team-title {
  text-align: center;
  font-size: 42px;
}

.ux-team-subtitle {
  text-align: center;
  color: #b7b7b7;
  margin-top: 10px;
}

.ux-team-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0 40px;
}

.ux-team-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #7CFF4D;
  font-size: 28px;
  cursor: pointer;
}

.ux-team-marquee-wrap {
  overflow: hidden;
  position: relative;
}

.ux-team-marquee-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: teamMarquee 40s linear infinite;
}

@keyframes teamMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ux-team-card {
  width: 170px;
  height: 320px;
  border-radius: 90px;
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.ux-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
  .ux-team-card {
    width: 140px;
    height: 260px;
  }
}


/* FOOTER SECTION */

.cf-footer {
  position: relative;
  background: linear-gradient(180deg, #071b18 0%, #000 60%);
  color: #eaeaea;
  padding: 4rem 1.5rem 2rem;
  overflow: hidden;
  font-family: system-ui, sans-serif;
}

/* GHOST BRAND TEXT */
.cf-footer-ghost {
  position: absolute;
  top: -10rem;
  font-size: clamp(9rem, 22vw, 19rem);
  font-weight: 900;
  pointer-events: none;
  z-index: 0;
  color:#ffffff;
  opacity:0.9;
  background:linear-gradient(to bottom, rgba(255,255,255,0.45), rgba(255, 255, 255, 0.041) 55%, rgba(0,0,0,0) 80%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  pointer-events:none;
}

/* CTA BAR */
.cf-footer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  position: relative;
}

.cf-footer-cta h3{
  font-size: 5vw;
}

.cf-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  background-color: transparent;
  color: rgb(219, 219, 219);
}

.cf-cta-btn span{
  background:linear-gradient(to right, #42e208 0%, #034603 130%);
  padding: 0.6rem 1.2rem;
}

.cf-cta-btn i{
  background:linear-gradient(to left, #42e208 0%, #034603 130%);
  padding: 0.6rem 1rem;
  border: none;
  margin-left: 10px;
}


/* BRAND ROW */
.cf-footer-brandrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 2rem;
  position: relative;
  z-index: 2;
}
.cf-logo-mark {
  position: relative;
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.cf-logo-mark span {
  content: '';
  width: 40px;
  height: 140px;
   background:linear-gradient(to left, #6af736 0%, #034603 130%)
}




.cf-footer-company {
  font-size: 10vw;
  font-weight: 700;
  font-family: "Monoton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

/* MAIN GRID */
.cf-footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  z-index: 2;
  position: relative;
  border-top: 1px solid #222;
  padding: 20px 0px 0px 0px;
}

.cf-footer-col h4 {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #aaa;
}

.cf-footer-col a {
  text-decoration: none;
  color: #e2e2e2d8;


}

.cf-footer-col {
  color: #e2e2e2d8;

}
.cf-muted {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* NEWSLETTER */
.cf-newsletter {
  display: flex;
  border: 1px solid #333;
}
.cf-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.6rem;
  width: 250px;
  color: #fff;
}
.cf-newsletter button {
  background: #fff;
  border: none;
  padding: 0 2rem;
  font-weight: 700;
  font-size: 0.9rem;
}

/* CIRCLE BADGE */
.cf-circle-badge {
  width: 120px;
  height: 120px;
  position: relative;
}
.cf-circle-badge svg {
  width: 100%;
  animation: spin 14s linear infinite;
}
.cf-circle-badge text {
  font-size: 18px;
  letter-spacing: 2px;
  fill: #c5c5c5;
}
.cf-badge-icon {
  display: flex;
  justify-content: center;
  position: absolute;
  inset: 0;
  place-items: center;
}

.cf-badge-icon img {
  width: 50px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* NAV BAR */
.cf-footer-nav {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.cf-footer-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 700;
}

/* BOTTOM */
.cf-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cf-footer-main {
    grid-template-columns: 1fr;
  }
  .cf-footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .cf-cta-btn{
    margin-top: 20px;
    width: 95%;
  }

  

  .cf-footer-company {
  font-size: 11vw;
  letter-spacing: 30px;

}


.cf-footer-cta {
  justify-content: center;
  
}

}


@media (max-width: 955px) {
  .cf-logo-mark{
    display: none;
  }
}


#toast {
  position: fixed;
  top: 40px;
  right: 40%;
  background-color: #4caf50; /* green for success */
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  transform: translateY(-20px);
}
#toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}