
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #000;
      color: #fff;
      overflow-x: hidden;
      scroll-behavior: smooth; /* smooth scroll globally */
    }



    /* Sticky navbar */
nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.9); /* black theme */
  backdrop-filter: blur(8px);
  z-index: 1000;
  padding: 21px 0;
  transition: background 0.3s ease;
}

/* Opening animation */
.nav-animate {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(-25px);
  transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s ease;
}

.nav-animate.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Nav container */
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Logo */
.logo img {
  height: 50px;
}

/* Nav links */
#nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

#nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

#nav-links li a:hover {
  color: #00e5ff; /* accent */
}

/* CTA button */
.cta {
  padding: 8px 16px;
  background: #00e5ff;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta:hover {
  background: #00bcd4;
}

/* Responsive */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  #nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.95);
    padding: 20px;
    gap: 15px;
    transition: left 0.3s ease;
  }

  #nav-links.show {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: block;
  }
}




    /* Hero Section */
    section.hero {
      position: relative;
      min-height: 100vh; /* ensures full screen */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0px 0px;
      margin: 0; /* remove extra spacing */
    }

    .badge {
      background: rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 999px;
      display: inline-block;
      margin-bottom: 20px;
    }

    .badge span {
      background: #6a4dff;
      color: #fff;
      font-size: 0.75rem;
      padding: 3px 8px;
      border-radius: 999px;
      margin-right: 10px;
    }

    h1 {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.2;
      margin: 0;
    }

    h1 span {
      display: block;
    }

    p {
      margin-top: 20px;
      font-size: 1.1rem;
      color: #555252;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .buttons {
      margin-top: 30px;
    }

    .buttons a {
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 10px;
      font-weight: 600;
      margin: 0 10px;
      display: inline-block;
      transition: 0.3s ease-in-out;
    }

    .buttons .primary {
      background: #fff;
      color: #000;
    }

    .buttons .secondary {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .buttons .primary:hover {
      background: #6a4dff;
      color: #fff;
    }

    .buttons .secondary:hover {
      background: #6a4dff;
      color: #fff;
    }

    .logos {
      margin-top: 50px;
      display: flex;
      justify-content: center;
      gap: 40px;
      opacity: 0.6;
    }

    .logos img {
      height: 30px;
    }

    /* Glow */
    .glow {
      position: absolute;
      bottom: -80px; /* tightened gap */
      left: 50%;
      transform: translateX(-50%);
      width: 130%;
      height: 350px;
      background: radial-gradient(circle at center, rgba(106, 77, 255, 0.6), transparent 70%);
      filter: blur(80px);
      z-index: -1;
    }

    /* Gradient Highlight */
    .highlight {
      background: linear-gradient(90deg, #ffffff, #6a4dff, #f8f9fa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
    }

    /* New Section */
    .section-container {
      min-height: 10vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 10% 80px; /* balanced spacing */
      gap: 50px;
    }

    .spline-box {
      flex: 1;
      height: 500px;
    }

    .spline-box iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .content-box {
      flex: 1;
    }

    .content-box h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .content-box p {
      font-size: 1rem;
      line-height: 1.6;
      color: #ccc;
      margin-bottom: 20px;
    }

    .btn-gradient {
      background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
      color: #000;
      font-weight: 600;
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-gradient:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    .tagline {
      font-size: 0.9rem;
      color: #aaa;
      margin-top: 15px;
      border-left: 2px solid #3b82f6;
      padding-left: 10px;
    }

    /* Scroll Animation */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 1s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .section-container {
        flex-direction: column;
        padding: 60px 20px;
      }
      .spline-box {
        height: 300px;
      }
      .content-box {
        text-align: center;
      }
      .tagline {
        border: none;
        padding-left: 0;
      }
    }









    /* Section Wrapper */
#it-section-platform {
  background-color: #000000;
  color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Container */
.it-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.it-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.it-subtitle {
  font-size: 1.1rem;
  color: #c9c9c9;
  margin-bottom: 50px;
}

/* Cards */
.it-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.it-card {
  background-color: #161b22;
  padding: 25px;
  border-radius: 12px;
  width: 320px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.it-card h3 {
  font-size: 1.4rem;
  margin: 12px 0;
  color: #ffffff;
}

.it-card p {
  color: #d1d1d1;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Badges */
.it-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.it-badge-blue {
  background-color: #0dcaf0;
  color: #000;
}

.it-badge-purple {
  background-color: #6f42c1;
  color: #fff;
}

.it-badge-yellow {
  background-color: #ffc107;
  color: #000;
}

/* Button */
.it-cta {
  margin-top: 40px;
}

.it-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #00e5ff;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.it-btn:hover {
  background-color: #00b8cc;
}





.it-animate {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: all 0.9s ease-out;
}

.it-animate.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}




/* Initial hidden state */
.hero-animate {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(30px);
  transition: all 1s ease-out;
}

/* Active state */
.hero-animate.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Add staggered delay for smooth effect */
.hero .badge { transition-delay: 0.2s; }
.hero h1 { transition-delay: 0.4s; }
.hero p { transition-delay: 0.6s; }
.hero .buttons { transition-delay: 0.8s; }
.hero .logos { transition-delay: 1s; }









/* big text 2 */

.scroll-text-section {
  width: 100%;
  height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.scroll-slide-text {
  font-size: 18vw;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1;
  color: #111;
  background: linear-gradient(to bottom, #222 0%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  transition: transform 0.4s ease, filter 0.4s ease;
}







/* text effect top */
.hero-animate span {
  display: inline-block;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  cursor: pointer;
}

/* Glow effects on hover */
.glow1:hover {
    color: #ffffff;
  text-shadow: 0 0 10px #ffffffc1, 0 0 20px #ffffffc1, 0 0 30px #ffffffc1;
}

.glow2:hover {
  color: #ffffff;
  text-shadow: 
  0 0 5px #e9a8ff,
  0 0 10px #e9a8ff,
  0 0 20px #e9a8ff,
  0 0 40px #ffffff,
  0 0 60px #ffffff,
  0 0 80px #ffffff;
color: #ffffff;

}

.glow3:hover {
  color: #ffffff;
  text-shadow: 
  0 0 5px #e9a8ff,
  0 0 10px #e9a8ff,
  0 0 20px #e9a8ff,
  0 0 40px #ffffff,
  0 0 60px #ffffff,
  0 0 80px #ffffff;
color: #ffffff;

}

.glow4:hover {
    color: #ffffff;
  text-shadow: 0 0 10px #ffffffc1, 0 0 20px #ffffffc1, 0 0 30px #ffffffc1;
}






.shimmer-text {
  font-weight: bold;
  
  text-align: center;
  background: linear-gradient(90deg, #ffffff, #5c95ff, #a6ecff, #f45bff);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}





/* big text 2 */

.scroll-text-section1 {
  width: 100%;
  height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.scroll-slide-text1 {
  font-size: 18vw;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1;
  color: #111;
  background: linear-gradient(to bottom, #222 0%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  transition: transform 0.4s ease, filter 0.4s ease;
}





/* HERO SECTION CSS */




 body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #030304;
      color: #fff;
      overflow-x: hidden;
    }

    .hx9vNqA7sL {
      background-color: #030304;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0rem 10%;
      min-height: 86vh;
      position: relative;
      overflow: hidden;
    }

    /* Background Spline - right aligned */
    .kLp3fB0zQ {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }
    .kLp3fB0zQ iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Content */
    .rT7yXpM1aC {
      flex: 1;
      max-width: 600px;
      z-index: 2;
      position: relative;
    }
    .rT7yXpM1aC h5 {
      color: #aaa;
      font-size: 1.2rem;
      margin-bottom: 1.2rem;
    }
    .rT7yXpM1aC h1 {
      font-size: 3.6rem;
      font-weight: 700;
      line-height: 1.3;
    }
    .uQz2NfK9wE {
      color: #fff;
      position: relative;
    }
    .uQz2NfK9wE::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 6px;
      background: #c832f2;
      border-radius: 6px;
    }
    .rT7yXpM1aC p {
      margin: 1.8rem 0;
      color: #ccc;
      line-height: 1.7;
      font-size: 1.15rem;
    }

    /* Buttons */
    .dL8vRqS5nT {
      margin-top: 2.2rem;
    }
    .bZ1fGhQ8yM {
      background: #c832f2;
      color: #fff;
      padding: 1.1rem 2.2rem;
      font-size: 1.15rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      margin-right: 1rem;
      transition: 0.3s ease;
    }
    .bZ1fGhQ8yM:hover {
      background: #5c0070;
    }
    .mK4yLtD2oP {
      background: transparent;
      border: none;
      color: #fff;
      font-size: 1.15rem;
      border-bottom: 2px solid #fff;
      cursor: pointer;
      padding-bottom: 5px;
      transition: 0.3s ease;
    }
    .mK4yLtD2oP:hover {
      opacity: 0.8;
    }

    /* Logos */
    .xP9jFrQ6wB {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 3rem;
      opacity: 0.8;
      z-index: 2;
    }
    .xP9jFrQ6wB img {
      height: 40px;
      filter: grayscale(1) brightness(0.9);
      transition: 0.3s;
    }
    .xP9jFrQ6wB img:hover {
      filter: none;
    }

    /* Responsive */
    @media(max-width: 992px) {
      .hx9vNqA7sL {
        flex-direction: column;
        text-align: center;
        padding: 3rem 5%;
      }
      .kLp3fB0zQ {
        width: 100%;
        opacity: 0.4;
      }
      .rT7yXpM1aC {
        max-width: 100%;
      }
      .xP9jFrQ6wB {
        flex-wrap: wrap;
        gap: 1.5rem;
      }
    }



    /* logo caurosel */


.logo-carousel {
  position: relative;
  width: 90%; /* gives gap on left & right */
  margin: auto;
  overflow: hidden;
  padding: 30px 0;
}

.logo-track {
  display: flex;
  width: calc(200%); /* because we duplicate */
  animation: scroll 20s linear infinite;
}

.logo-slide {
  display: flex;
  gap: 60px; /* spacing between logos */
}

.logo-slide img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.logo-slide img:hover {
  filter: grayscale(0%);
}

/* Infinite Scroll Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Fade edges */
.fade {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, rgb(0, 0, 0), rgba(255,255,255,0));
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, rgb(0, 0, 0), rgba(255,255,255,0));
}

/* Responsive */
@media (max-width: 768px) {
  .logo-slide {
    gap: 30px;
  }
  .logo-slide img {
    height: 40px;
  }
}

  
/* blur transitionc for brand logos */


/* Logo Carousel Section - Minimal styles for blur effect and carousel functionality */
.logo-carousel {
  position: relative;
  overflow: hidden;
  padding: 40px;
}

.logo-track {
  animation: scroll 20s linear infinite; /* Horizontal carousel animation */
}

.logo-slide img {
  transition: filter 0.5s ease; /* Smooth blur transition */
}

/* Fade Overlays */
.fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px; /* Width of fade effect */
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 1), transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 1), transparent);
}

/* Carousel Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Moves half the track for infinite loop */
  }
}

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}





