  
  html {
      scroll-behavior: smooth;
  }
  
  :root {
      --nav-text: #ffffff;
      --nav-muted: rgba(255, 255, 255, 0.7);
      --nav-accent: #00e5ff;
      --nav-bg-glass: rgba(0, 0, 0, 0.35);
  }


  body {
      color: white !important;
      font-family: 'Supreme', sans-serif;
  }

  h1 {
      font-family: 'Clash Display', sans-serif;
  }

  /* HERO */
  .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
  }

  /* VIDEO */
  .bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translate(-50%, -50%);
      z-index: -2;
  }

  /* OVERLAY */
  .hero::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
      z-index: -1;
  }

  /* CONTENT */
  .glass-box {
      background: transparent;
      border-radius: 20px;
      padding: 40px;
      color: white;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
      max-width: auto;
      margin: auto;
  }

  .hero h1 {
      font-size: 3rem;
      font-weight: 600;
  }

  /* BUTTON */
  .btn-custom {
      background: #ff4d5a;
      border: none;
      border-radius: 30px;
  }

  .btn-custom:hover {
      background: #ff1e3c;
  }

  /* SCROLL INDICATOR */
  .scroll-down {
      position: absolute;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      opacity: 0.7;
      animation: bounce 2s infinite;
  }

  @keyframes bounce {

      0%,
      100% {
          transform: translate(-50%, 0);
      }

      50% {
          transform: translate(-50%, 10px);
      }
  }

  /* MOBILE FALLBACK */
  @media (max-width: 768px) {
      .bg-video {
          display: none;
      }

      .hero .glass-box {
        position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
         
      }

      .hero h1 {
          font-size: 2rem;
      }
  }

  /* ==========================
       NAVBAR BASE
    ========================== */
  .app-navbar {
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: transparent;
  }

  .app-navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 40px;
  }

  .app-brand {
      font-size: 22px;
      font-weight: 700;
      color: var(--nav-text);
      text-decoration: none;
      font-family: 'Clash Display', sans-serif;

  }

  .app-brand:hover {
      color: var(--nav-text);
  }

  /* ==========================
       NAV ITEMS
    ========================== */
  .app-nav {
      display: flex;
      gap: 40px;
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .app-nav a {
      color: var(--nav-muted);
      text-decoration: none;
      font-size: 17px;
      display: flex;
      align-items: center;
      gap: 6px;
      position: relative;
      font-family: 'Supreme', sans-serif;
  }

  .app-nav a i {
      font-size: 18px;
      display: none;
  }

  .app-nav a:hover {
      color: var(--nav-text);
  }

  .app-nav a.active {
      color: var(--nav-text);
  }

  .app-nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 2px;
      background: var(--nav-accent);
  }

  /* ==========================
       MOBILE BOTTOM TRANSPARENT NAV
    ========================== */
  @media (max-width: 768px) {
      .app-navbar {
          position: fixed;
          bottom: 0;
          top: auto;
          background: var(--nav-bg-glass);
          backdrop-filter: blur(10px);
      }

      .app-navbar-inner {
          padding: 10px 0;
          justify-content: center;
      }

      .app-brand {
          display: none;
      }

      .app-nav {
          width: 100%;
          justify-content: space-around;
          gap: 0;
      }

      .app-nav a {
          flex-direction: column;
          font-size: 12px;
      }

      .app-nav a i {
          font-size: 20px;
          display: block;
      }

      .app-nav a.active::after {
          display: none;
      }
  }
  #progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, #00c6ff, #0072ff);
      z-index: 9999;
  }
   .bg-video-global {
       position: fixed;
       top: 50%;
       left: 50%;
       min-width: 100%;
       min-height: 100%;
       object-fit: cover;
       transform: translate(-50%, -50%);
       z-index: -3;
       color: white;
   }

   .contact-section {
       background: #050505;
       color: #fff;
       padding: 100px 20px;
       border-top: 1px solid rgba(255, 255, 255, 0.08);
       font-family: 'Supreme', sans-serif;

   }

   .contact-section h2 {
       font-size: 2.2rem;
       margin-bottom: 15px;
   }

   .contact-sub {
       opacity: 0.6;
       max-width: 500px;
       margin: auto;
       margin-bottom: 30px;
   }

   .contact-btn {
       display: inline-block;
       padding: 12px 28px;
       border: 1px solid #fff;
       border-radius: 30px;
       color: #fff;
       text-decoration: none;
       transition: 0.3s;
   }

   .contact-btn:hover {
       background: #fff;
       color: #000;
       box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
   }

   .footer {
       position: relative;
       background: #000;
       color: #fff;
       padding: 70px 20px 30px;
       overflow: hidden;
       font-family: 'Supreme', sans-serif;
       text-align: center;
   }

   /* Glow Background */
   .footer-glow {
       position: absolute;
       width: 400px;
       height: 400px;
       background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
       top: -100px;
       left: -100px;
       filter: blur(80px);
   }

   /* Container */
   .footer-container {
       position: relative;
       display: flex;
       flex-direction: column;
       gap: 40px;
       z-index: 2;
   }

   /* BRAND */
   .footer-brand h2 {
       font-size: 26px;
       letter-spacing: 1px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
   }

   .footer-brand h2 span {
       color: #888;
   }

   .footer-brand p {
       color: #aaa;
       font-size: 15px;
       margin: 10px 0 20px;
   }

   /* CTA Button */
   .footer-cta {
       display: inline-block;
       padding: 10px 18px;
       border: 1px solid #fff;
       font-size: 20px;
       text-decoration: none;
       color: #fff;
       transition: 0.3s;
   }

   .footer-cta:hover {
       background: #fff;
       color: #000;
   }

   /* LINKS */
   .footer-links {
       display: flex;
       flex-wrap: wrap;
       gap: 20px;

   }

   .footer-links a {
       text-decoration: none;
       color: #bbb;
       font-size: 16px;
       position: relative;
       transition: 0.3s;
   }

   .footer-links a::after {
       content: "";
       position: absolute;
       width: 0%;
       height: 1px;
       background: #fff;
       left: 0;
       bottom: -4px;
       transition: 0.3s;
   }

   .footer-links a:hover {
       color: #fff;
   }

   .footer-links a:hover::after {
       width: 100%;
   }

   /* SOCIAL */
   .footer-social {
       display: flex;
       gap: 15px;
   }

   .footer-social a {
       color: #888;
       font-size: 22px;
       transition: 0.3s;
   }

   .footer-social a:hover {
       color: #fff;
       transform: translateY(-3px);
   }

   /* BOTTOM */
   .footer-bottom {
       margin-top: 50px;
       border-top: 1px solid #111;
       padding-top: 20px;
       text-align: center;
       font-size: 12px;
       color: #666;
   }

   /* DESKTOP */
   @media (min-width: 768px) {
       .footer-container {
           flex-direction: row;
           justify-content: space-between;
           align-items: center;
       }

       .footer-links {
           justify-content: center;
       }
   }









/* From Uiverse.io by doniaskima */
.btn-17,
.btn-17 *,
.btn-17 :after,
.btn-17 :before,
.btn-17:after,
.btn-17:before {
    border: 0 solid;
    box-sizing: border-box;
}

.btn-17 {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    background-color: #000;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
        Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 100%;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
    -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
    padding: 0;
    text-transform: uppercase;
}

.btn-17:disabled {
    cursor: default;
}

.btn-17:-moz-focusring {
    outline: auto;
}

.btn-17 svg {
    display: block;
    vertical-align: middle;
}

.btn-17 [hidden] {
    display: none;
}

.btn-17 {
    border-radius: 99rem;
    border-width: 2px;
    padding: 0.8rem 3rem;
    z-index: 0;
}

.btn-17,
.btn-17 .text-container {
    overflow: hidden;
    position: relative;
}

.btn-17 .text-container {
    display: block;
    mix-blend-mode: difference;
}

.btn-17 .text {
    display: block;
    position: relative;

}

.btn-17:hover .text {
    -webkit-animation: move-up-alternate 0.3s forwards;
    animation: move-up-alternate 0.3s forwards;
}

@-webkit-keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

.btn-17:after,
.btn-17:before {
    --skew: 0.2;
    background: #fff;
    content: "";
    display: block;
    height: 102%;
    left: calc(-50% - 50% * var(--skew));
    pointer-events: none;
    position: absolute;
    top: -104%;
    transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
    transition: transform 0.2s ease;
    width: 100%;
}

.btn-17:after {
    --progress: 0%;
    left: calc(50% + 50% * var(--skew));
    top: 102%;
    z-index: -1;
}

.btn-17:hover:before {
    --progress: 100%;
}

.btn-17:hover:after {
    --progress: -102%;
}










.stats-section {
    padding: 120px 0;
    font-family: 'Supreme', sans-serif;

}

.stats-section::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

/* CLEAN GLASS CARD */
.stats-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 18px;
    padding: 40px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    /* LIGHT WHITE SHADOW */
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.05);

    transition: 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.08);
}

/* TEXT */
.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Clash Display', sans-serif;
}

.section-desc {
    font-size: 14px;
    color: #cbd5f5;
    margin-top: 10px;
    max-width: 420px;
}

/* BIG NUMBER */
.main-stat {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
}

/* STATS */
.stat-grid {
    margin-top: 35px;
}

.stat-item {
    padding: 10px;
}

.stat-value {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.stat-label {
    font-size: 12px;
    color: #94a3b8;
}

/* BUTTON */
.cta-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 22px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* MOBILE */
@media(max-width:768px) {
    .main-stat {
        text-align: left;
        margin-top: 20px;
    }
}

.graph-note {
    font-size: 12px;
    color: #94a3b8;
    text-align: right;
}

@media(max-width:768px) {
    .graph-note {
        text-align: left;
        margin-top: 10px;
    }
}

#growthChart {
    width: 100%;
    height: 160px !important;
}

.graph-note {
    font-size: 12px;
    color: #94a3b8;
    text-align: right;
}

@media(max-width:768px) {
    .graph-note {
        text-align: left;
    }
}





















.featured-section {
    background: rgba(102, 102, 102, 0);
    backdrop-filter: blur(3px);
    font-family: 'Supreme', sans-serif;
}

.image-box img {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease;
}

.image-box img:hover {
    transform: scale(1.03);
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.03);
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.8;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .feature-card {
        text-align: center;
    }
}

/* Live Preview Button */
.live-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    letter-spacing: 0.5px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.822);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.05);

    transition: all 0.3s ease;
}

.live-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}










.process-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
    font-family: 'Supreme', sans-serif;
    border-radius: 15px;
}

.timeline {
    position: relative;
    width: 85%;
    margin: auto;
}

/* CENTER LINE */
.line {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.progress {
    width: 100%;
    height: 0%;
    background: #fff;
    box-shadow: 0 0 15px #fff;
}

/* STEPS */
.step {
    position: relative;
    width: 50%;
    padding: 50px;
}

.step.left {
    left: 0;
    text-align: right;
}

.step.right {
    left: 50%;
}

/* CARDS */
.cardp {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    max-width: 320px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    
}

.cardp:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* CONNECTOR LINE */
.step::after {
    content: "";
    position: absolute;
    top: 60px;
    width: 70px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.step.left::after {
    right: 0;
}

.step.right::after {
    left: 0;
}

/* 🔥 TABLET (IMPORTANT BREAKPOINT) */
@media (max-width: 992px) {
    .timeline {
        width: 95%;
    }

    .cardp {
        max-width: 280px;
    }
}

/* 🔥 MOBILE (MAIN FIX) */
@media (max-width: 768px) {

    .line {
        left: 20px;
        /* move line to left */
    }

    .step {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        margin-bottom: 40px;
        text-align: left !important;
    }

    .step.left,
    .step.right {
        left: 0;
    }

    .cardp {
        max-width: 100%;
    }

    /* connector becomes small dot line */
    .step::after {
        left: 20px;
        width: 25px;
    }
}



.services-section {
    background: linear-gradient(135deg, #0000023d, #00000060);
    backdrop-filter: blur(7px);
    color: #fff;
    position: relative;
    border-radius: 25px;
    font-family: 'Supreme', sans-serif;
}

/* Titles */
.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    font-family: 'Clash Display', sans-serif;

}

.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: auto;
}

/* GLASS CARD (MORE TRANSPARENT) */
.service-card {
    background: rgba(255, 255, 255, 0.089);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.171);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover smooth lift */
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* LIGHT TRACKING EFFECT */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x) var(--y),
            rgba(255, 255, 255, 0.12),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

/* Icon */
.icon {
    font-size: 26px;
    margin-bottom: 12px;
}

/* Text */
.service-card h4 {
    font-weight: 500;
    font-family: 'Clash Display', sans-serif;

}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

/* List */
.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-card ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

/* WHITE BUTTON (PREMIUM LOOK) */
.btn-custom {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 20px;
    border-radius: 8px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}












.why-us {
    padding: 100px 8%;
    background-color: #000911b4;
    color: white;
    position: relative;
    overflow: hidden;
    font-family: 'Supreme', sans-serif;
    font-weight: 500;
}

/* Mouse glow effect */
.why-us::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: 0.1s;
}

.tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 10px;
    font-family: 'Clash Display', sans-serif;
}

.why-us h2 {
    font-size: 36px;
    margin-bottom: 50px;

}

.why-us h2 span {
    color: #fff;
    font-family: 'Clash Display', sans-serif;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARDS */
.cards {
    background: rgba(10, 10, 10, 0.85);
    /* deeper dark */
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cards p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

/* Hover upgrade */
.cards:hover {
    transform: translateY(-8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.06);
}




/* Wide card */
.wide {
    grid-column: span 2;
}

/* Highlight Card */
.highlight {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    border: none;
}

.highlight button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: white;
    color: black;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.highlight button:hover {
    transform: scale(1.05);
}

/* Responsive */
@media(max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .wide {
        grid-column: span 1;
    }
}

/* REMOVE this from .card */
.cards {
    opacity: 1;
    transform: translateY(0);
}

/* MINI GRAPH */
.mini-graph {
    margin-top: 20px;
    height: 80px;
    overflow: hidden;
}

.mini-graph svg {
    width: 100%;
    height: 100%;
}

.mini-graph polyline {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawGraph 2s ease forwards;
}

@keyframes drawGraph {
    to {
        stroke-dashoffset: 0;
    }
}

.features {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.features li {
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.sub-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

