    :root{
      --bg: #000;
      --muted: #bdbdbd;
    }

    html,body{height:100%;}
    body{
      background-color: #000;
      color:#fff;
      font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }


/* ================= HERO SECTION ================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  padding: 4rem 40px !important;
  gap: 5rem !important;
}

.hero .copy {
  flex: 1 1 500px;
  z-index: 2;
}

.hero .copy h1 {
  font-weight: 400;
  font-size: 54px !important;
  line-height: 1.23;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  display: inline-block;

}

/* Gradient text per character */
.hero .copy h1 span.char {
  display: inline-block;
  background: linear-gradient(180deg, #f7f5f5 50%, #dfdddd 40%, #696868 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.02);
}

/* Lines */
.hero .copy h1 .line {
  display: block;
}

.hero .copy p {
  color: #cfcfcf;
  max-width: 560px;
  font-size: 16px;
  margin-bottom: 1.5rem;
}

/* Play Button */
.playbtn {
  position: relative;
  display: inline-block;
  padding: 0.6rem 1.1rem;
  margin: 40px 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  font-weight: 600;
  letter-spacing: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.playbtn:hover {
  background: #fff;
  color: #000;
}

/* Animated borders */
.playbtn span {
  position: absolute;
  display: block;
}

.playbtn span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff);
  animation: animate1 1s linear infinite;
}
@keyframes animate1 {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.playbtn span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #fff);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}
@keyframes animate2 {
  0% { top: -100%; }
  50%, 100% { top: 100%; }
}

.playbtn span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #fff);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}
@keyframes animate3 {
  0% { right: -100%; }
  50%, 100% { right: 100%; }
}

.playbtn span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #fff);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}
@keyframes animate4 {
  0% { bottom: -100%; }
  50%, 100% { bottom: 100%; }
}

/* ============= HERO IMAGE FIX ============= */
.hero-art {
  flex: 1 1 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-art img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  transform: none;
  background-repeat: no-repeat;
  background-position: center;
}


    /* Make layout similar to screenshot: large left padding */
    .hero-container{
      width:100%;
      max-width:1180px;
    }

    /* Responsive tweaks */
    @media (min-width:1200px){
      .hero .copy h1{font-size:6rem}
      .hero{min-height:720px}
    }
    @media (max-width:991.98px){
      .hero{padding:3rem 0}
      .hero .copy h1{font-size:3rem}
      .hero-art img{max-width:520px; transform: translateX(0)}
    }
    @media (max-width:575.98px){
      .hero{padding:2rem 0}
      .hero .copy h1{font-size:1.25rem}
      .hero .copy p{font-size:.95rem}
    }


     .process-section {
      text-align: center;
      padding: 100px 20px;
    }

    .process-section h2 {
      font-weight: 600;
      margin-bottom: 80px;
       display: inline-block;
      background: linear-gradient(180deg,#f7f5f5 50%, #dfdddd 40%, #696868 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 2px 20px rgba(255,255,255,0.02);
    }

    .step {
      opacity: 0;
      transform: translateY(100px);
      transition: all 0.8s ease-out;
      position: relative;
    }

    .step.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .circle-number {
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .step h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .step h3 {
      font-weight: 500;
      color: #fff;
    }

    .step h4 {
      font-weight: 400;
      margin-bottom: 20px;
       display: inline-block;
      background: linear-gradient(180deg,#f7f5f5 50%, #dfdddd 40%, #696868 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 2px 20px rgba(255,255,255,0.02);
    }

    .step p {
      color: #ccc;
      font-size: 16px;
      line-height: 1.7;
      width: 350px;
    }

    .step img {
      width: 50%;
      border-radius: 12px;
      margin-left: 150px !important;
    }
    
    

    .step .row {
      align-items: center;
    }

    .step-line {
      width: 1px;
      height: 60px;
      margin: 40px auto;
    }

      @media (max-width: 768px) {
  .step img {
          margin-bottom: 20px;
        margin-left: 20px !important;
  }

  
}

    .tag-container {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      justify-content: center;
    }

    .tag {
      background-color: #1a1a1a;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .tag:hover {
      background-color: #1c2bff;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(28, 43, 255, 0.3);
    }
    
    
    /* ========== PORTFOLIO SECTION ========== */
    .portfolio-section {
      padding: 80px 0 60px;
      background: #000;
      position: relative;
      overflow: hidden;
      text-align: center;
      margin-top: 80px;
    }

    /* ========== PORTFOLIO HEADING ========== */
      .portfolio-heading {
      font-size: 72px;
      font-weight: 700;
      text-transform: uppercase;
      display: inline-block;
      background: linear-gradient(180deg, #f7f5f5 50%, #dfdddd 40%, #696868 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-align: center;
      text-shadow: 0 2px 20px rgba(255, 255, 255, 0.02);
      letter-spacing: 2px;
      line-height: 1.2;
      margin-bottom: 80px !important;

      
    }


    /* ========== PORTFOLIO SLIDER ========== */
    .portfolio-container {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .portfolio-track {
      display: flex;
      width: max-content;
      will-change: transform;
    }

    .portfolio-slide {
      width: 420px;
      height: 360px;
      position: relative;
      margin: 0 20px;
      flex-shrink: 0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }

    .portfolio-slide:hover {
      transform: scale(1.05);
    }

    .portfolio-image {
      width: 100%;
      height: 100%;
    }

    .portfolio-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .portfolio-slide:hover img {
      transform: scale(1.1);
    }

    /* Text inside image */
    .portfolio-info {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 15px 20px;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
      color: #fff;
      text-align: left;
    }

    .portfolio-info h4 {
      font-size: 18px;
      font-weight: 600;
      margin: 0 0 5px 0;
    }

    .portfolio-info p {
      font-size: 13px;
      margin: 0;
      opacity: 0.85;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .portfolio-heading {
        font-size: 40px;
        margin-bottom: 40px;
      }

      .portfolio-slide {
        width: 300px;
        height: 200px;
      }

      .portfolio-info h4 {
        font-size: 16px;
      }
      .portfolio-info p {
        font-size: 12px;
      }
    }
    
    
    .integration-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 100px 80px;
      min-height: 100vh;
    }

    .integration-text h1 {
      font-weight: 700;
      font-size: 3rem;
      line-height: 1.2;
    }

    .integration-text p {
      font-size: 1.1rem;
      color: #cfcfcf;
      margin-top: 20px;
      max-width: 480px;
    }

    .integration-text .btn {
      background-color: #1e1e1e;
      border: none;
      color: #fff;
      padding: 12px 28px;
      border-radius: 50px;
      margin-top: 30px;
      transition: all 0.3s ease;
    }

    .integration-text .btn:hover {
      background-color: #333;
    }

    /* Logos Section */
    .integration-logos {
      display: flex;
      gap: 60px;
      position: relative;
      width: 40%;
      overflow: hidden;
      height: 400px;
    }

    .logo-column {
      display: flex;
      flex-direction: column;
      gap: 40px;
      animation: scrollLoop 18s linear infinite;
    }

    /* Alternate direction for even columns (sync scroll) */
    .logo-column:nth-child(even) {
      animation: scrollLoopReverse 18s linear infinite;
    }

    .logo-column > div {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .logo-column img {
  width: 50px;
  filter: grayscale(100%) brightness(50%); /* makes logos grey/black */
  transition: all 0.3s ease;
}

/* .logo-column img:hover { */
  /* filter: grayscale(0%) brightness(100%); optional: color on hover */
/* } */


    /* Keyframes for smooth synced scroll */
    @keyframes scrollLoop {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    @keyframes scrollLoopReverse {
      0% { transform: translateY(-50%); }
      100% { transform: translateY(0); }
    }

    @media (max-width: 992px) {
      .integration-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
      }
      .integration-logos {
        margin-top: 60px;
        width: 80%;
        justify-content: center;
        height: 300px;
      }
    }
    