 :root {
      --primary: #7f5af0;
      --background: #05010d;
      --text-light: #d4d4f5;
      --accent: #ffbc00;
      --dark-glass: rgba(5, 1, 13, 0.75);
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--background) url('https://uploads-ssl.webflow.com/611b20cf886bf5ca1bd46dcd/611e0d4f7e07a5272d70f545_bg-grid.svg') top center/cover no-repeat;
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
    }
     html {
      scroll-behavior: smooth;
    }
    header {
      padding: 1.5rem 2rem;
      background: var(--dark-glass);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      backdrop-filter: blur(10px);
      z-index: 10;
    }
    header h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: 1rem;
      color: var(--accent);
      text-shadow: 0 0 10px var(--accent);
    }
    nav {
      display: flex;
      gap: 1.5rem;
      transition: all 0.3s ease-in-out;
    }
    nav a {
      color: var(--text-light);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }
    nav a:hover {
      color: var(--accent);
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    .menu-toggle span {
      height: 1px;
      width: 20px;
      background: var(--text-light);
      margin: 4px 0;
      transition: 0.4s;
    }
    .work{
        width: 100%;
    }
    .social-icons {
      margin-top: 1rem;
    }
    .social-icons a {
      color: #888;
      margin: 0 0.5rem;
      font-size: 1.3rem;
      text-decoration: none;
    }
    .social-icons a:hover {
      color: var(--accent);
    }
    @media (max-width: 768px) {
        .hero h2{
            font-size: 2rem!important;
        }
        .hero p{
            font-size: 1rem!important;
        }
      nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: #0c011b;
        flex-direction: column;
        width: 100%;
        text-align: right;
        padding: 1rem;
      }
      nav.active {
        display: flex;
      }
      .menu-toggle {
        display: flex;
      }
    }
    .hero {
         text-align: center;
    padding: 6rem 2rem;
    background: url(assets/bcg7.gif);
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    align-items: center;
    }
    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100vw;
      height: 100%;
      background: url('https://uploads-ssl.webflow.com/611b20cf886bf5ca1bd46dcd/611e0e03534bce3be6902064_bg-light.svg') no-repeat center top;
      background-size: cover;
      opacity: 0.12;
      z-index: 0;
    }
    .hero h2 {
      font-size: 3rem;
      color: white;
      text-shadow: 0 0 20px var(--accent);
      position: relative;
      z-index: 1;
    }
    .hero p {
      margin-top: 1rem;
      font-size: 1.3rem;
      max-width: 720px;
      margin-inline: auto;
      color: #d6faff;
      position: relative;
      z-index: 1;
    }
    .stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin-top: 3rem;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }
    .stat {
      font-size: 1.2rem;
      text-align: center;
    }
    .stat h3 {
      font-size: 2.2rem;
      color: var(--accent);
    }
    .cta-btns {
      margin-top: 3rem;
      position: relative;
      z-index: 1;
    }
    .cta-btns button {
      margin: 0.5rem;
      background: var(--accent);
      color: #000;
      padding: 1rem 2rem;
      font-weight: bold;
      border-radius: 40px;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }
    .cta-btns button:hover {
      background: #ffffff;
    }
    .features {
      background: linear-gradient(to bottom, #0c011b, #0a001a);
      padding: 5rem 2rem;
      text-align: center;
    }
    .features h3 {
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: white;
    }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: auto;
    }
    .feature {
      background: #12022c;
      padding: 2rem;
      border-radius: 1.25rem;
      box-shadow: 0 0 16px rgba(127, 90, 240, 0.25);
      transition: transform 0.3s;
    }
    .feature:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 0 24px rgba(0, 255, 231, 0.4);
    }
    .feature h4 {
      color: var(--accent);
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }
    .split-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 5rem 2rem;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .split-section:nth-child(even) {
      flex-direction: row-reverse;
    }
    .split-section img {
      width: 100%;
      max-width: 500px;
      border-radius: 1rem;
    }
    .split-text {
      flex: 1;
      color: white;
    }
    .footer {
      background: #000;
      color: #888;
      text-align: center;
      padding: 2rem;
      font-size: 0.95rem;
    }