  
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #09102a;
      --p: #6c5dd3;
      --pl: #7b6fe0;
      --pg: rgba(108, 93, 211, 0.45);
      --muted: #9da8c7;
      --nav-bg: rgba(12, 18, 45, 0.88);
    }

    html {
      font-size: 16px;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: #fff;
      overflow-x: hidden;
      min-height: 100vh;
    }



    /* ═══════════════════════════════
       CANVAS PARTICLE BG
    ═══════════════════════════════ */
    #bgCanvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    /* ═══════════════════════════════
       NAVBAR
    ═══════════════════════════════ */
    nav {
      position: fixed;
      top: 16px;
      left: 0;
      right: 0;
      margin: 0 auto;
      z-index: 1000;
      width: calc(100% - 48px);
      max-width: 1240px;
      padding: 10px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      animation: navDrop .5s cubic-bezier(.22, 1, .36, 1) both;
    }

    .nav-bg {
      position: absolute;
      inset: 0;
      background: var(--nav-bg);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      z-index: -1;
      pointer-events: none;
    }

    @keyframes navDrop {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .nav-logo {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      position: relative;
    }

    .nav-logo::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--p);
      border-radius: 2px;
      transition: width .3s;
    }

    .nav-logo:hover::after {
      width: 100%;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      /* keep the toggle icon above the sliding panel so the "X" remains visible
         when the mobile menu is open */
      z-index: 10001;
    }

    .nav-hamburger span {
      width: 28px;
      height: 2px;
      background: #fff;
      border-radius: 4px;
      transition: all .3s;
    }

    /* Mobile view styles */
    @media (max-width: 991px) {
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0c122d;
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 20px;
        transition: right .4s cubic-bezier(.4, 0, .2, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        /* make sure hamburger can stack above by keeping this a little lower */
        z-index: 9999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        /* Ensure it's visible if parent has issues */
        display: flex !important;
      }

      .nav-links.active {
        right: 0;
      }

      .nav-hamburger {
        display: flex;
      }

      .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
      }

      .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
      }

      .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
      }

      .nav-links a {
        font-size: 1.1rem;
        padding: 5px 0;
        width: 100%;
      }

      /* close button at top of mobile panel */
      .nav-links .close-menu {
        width: 100%;
        text-align: right;
        margin-bottom: 20px;
      }
      .nav-links .close-menu button {
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
        line-height: 1;
        cursor: pointer;
        padding: 0;
      }

      .nav-btn {
        display: none;
        /* Hide on mobile navbar, add to links if needed */
      }

      .nav-links .mobile-btn {
        display: block !important;
        margin-top: 20px;
        width: 100%;
        text-align: center;
      }
    }

    /* Desktop hide mobile elements */
    @media (min-width: 992px) {

      .mobile-btn,
      .nav-hamburger {
        display: none !important;
      }
    }

    /* Mobile hide desktop elements */
    @media (max-width: 991px) {
      .desktop-btn {
        display: none !important;
      }
    }

    .nav-links a {
      font-size: .875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .7);
      text-decoration: none;
      padding: 7px 14px;
      border-radius: 50px;
      transition: color .2s, background .2s, transform .2s;
      display: flex;
      align-items: center;
      gap: 3px;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: #fff;
      background: rgba(255, 255, 255, .06);
      transform: translateY(-1px);
    }

    .nav-links a.active {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 5px;
    }

    /* Sub-menu styling */
    .has-dropdown {
      position: relative;
    }

    .dropdown-icon {
      font-size: .65rem;
      transition: transform .3s;
    }

    .sub-menu {
      position: absolute;
      top: calc(100% + 15px);
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: #121a36;
      /* More solid background */
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 15px;
      padding: 10px 0;
      min-width: 200px;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transition: all .3s cubic-bezier(.4, 0, .2, 1);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
      z-index: 102;
    }

    .sub-menu::before {
      content: '';
      position: absolute;
      top: -15px;
      /* Match the 15px gap */
      left: 0;
      width: 100%;
      height: 15px;
      background: transparent;
    }

    .has-dropdown:hover .sub-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .sub-menu li a {
      font-size: .9rem;
      color: rgba(255, 255, 255, .8) !important;
      padding: 12px 24px;
      display: block;
      border-radius: 0;
      text-align: left;
      transition: all .2s;
    }

    .sub-menu li a:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #fff !important;
      transform: translateX(5px);
    }

    @media (max-width: 991px) {
      .sub-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        transition: none;
      }

      .has-dropdown.active .sub-menu {
        display: block;
      }

      .has-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
      }
    }

    .nav-btn {
      background: var(--p);
      color: #fff !important;
      font-size: .85rem;
      font-weight: 600;
      padding: 9px 22px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: transform .2s, box-shadow .3s;
      box-shadow: 0 4px 20px var(--pg);
    }

    .nav-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #8b7cf8, #4a90e2);
      opacity: 0;
      transition: opacity .3s;
    }

    .nav-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px var(--pg);
    }

    .nav-btn:hover::before {
      opacity: 1;
    }

    .nav-btn span {
      position: relative;
      z-index: 1;
    }

    /* ═══════════════════════════════
       HERO
    ═══════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 80px 20px 60px;
      z-index: 1;
    }

    .hero-container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      position: relative;
      z-index: 2;
    }

    /* Animated morphing blobs */
    .blob {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(80px);
      animation: blobMorph 6s ease-in-out infinite alternate;
    }

    .blob1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(108, 93, 211, 0.22) 0%, transparent 70%);
      top: 50%;
      right: -100px;
      transform: translateY(-50%);
      animation-duration: 7s;
    }

    .blob2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
      bottom: -80px;
      left: -80px;
      animation-duration: 8s;
      animation-delay: 1.5s;
    }

    .blob3 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(180, 100, 255, 0.1) 0%, transparent 70%);
      top: 10%;
      left: 30%;
      animation-duration: 10s;
      animation-delay: 0.8s;
    }

    @keyframes blobMorph {
      0% {
        border-radius: 50% 50% 50% 50%;
        transform: translateY(-50%) scale(1) rotate(0deg);
      }

      33% {
        border-radius: 60% 40% 55% 45%;
        transform: translateY(-48%) scale(1.05) rotate(5deg);
      }

      66% {
        border-radius: 45% 55% 40% 60%;
        transform: translateY(-52%) scale(0.96) rotate(-3deg);
      }

      100% {
        border-radius: 50% 50% 60% 40%;
        transform: translateY(-50%) scale(1.02) rotate(2deg);
      }
    }

    /* ── LEFT COLUMN ── */
    .hero-left {
      position: relative;
      flex: 1;
      max-width: 580px;
    }

    /* animated gradient badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 50px;
      border: 1px solid rgba(108, 93, 211, 0.35);
      background: rgba(108, 93, 211, 0.1);
      font-size: .78rem;
      font-weight: 600;
      color: rgba(255, 255, 255, .75);
      letter-spacing: .5px;
      margin-bottom: 20px;
      animation: fadeUp .4s ease both;
      position: relative;
      overflow: hidden;
    }

    .hero-badge::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(108, 93, 211, 0.2), transparent);
      transform: translateX(-100%);
      animation: badgeSweep 2.5s ease-in-out infinite 1s;
    }

    @keyframes badgeSweep {
      0% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(200%);
      }
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      background: #6c5dd3;
      border-radius: 50%;
      animation: pulseDot 1.5s ease-in-out infinite;
      box-shadow: 0 0 0 0 var(--pg);
    }

    @keyframes pulseDot {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(108, 93, 211, .6);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(108, 93, 211, 0);
      }
    }

    /* typewriter headline */
    h1 {
      font-size: clamp(2.2rem, 3.2vw, 3.4rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -.8px;
      color: #fff;
      margin-bottom: 20px;
      animation: fadeUp .4s .1s ease both;
    }

    .typed-word {
      color: var(--pl);
      position: relative;
    }

    .typed-word::after {
      content: '|';
      animation: blink .7s step-end infinite;
      color: var(--pl);
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0
      }
    }

    .hero-desc {
      font-size: clamp(.9rem, 1.1vw, 1rem);
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 34px;
      max-width: 480px;
      animation: fadeUp .4s .2s ease both;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-bottom: 50px;
      animation: fadeUp .4s .3s ease both;
    }

    .btn-filled {
      background: var(--p);
      color: #fff;
      font-size: .95rem;
      font-weight: 600;
      padding: 13px 32px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 6px 26px var(--pg);
      position: relative;
      overflow: hidden;
      transition: transform .25s, box-shadow .25s;
    }

    .btn-filled::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #8b7cf8, #5b9cf6);
      opacity: 0;
      transition: opacity .35s;
    }

    .btn-filled:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px var(--pg);
      color: #fff;
    }

    .btn-filled:hover::before {
      opacity: 1;
    }

    .btn-filled span {
      position: relative;
      z-index: 1;
    }

    /* ripple on click */
    .btn-filled .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, .3);
      transform: scale(0);
      animation: ripple .6s linear;
      pointer-events: none;
    }

    @keyframes ripple {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      font-size: .95rem;
      font-weight: 600;
      padding: 12px 32px;
      border-radius: 50px;
      border: 1.5px solid rgba(255, 255, 255, .3);
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }

    .btn-outline::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(108, 93, 211, .15);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }

    .btn-outline:hover {
      border-color: var(--p);
      color: var(--pl);
      transform: translateY(-2px);
    }

    .btn-outline:hover::before {
      transform: scaleX(1);
    }

    .btn-outline span {
      position: relative;
      z-index: 1;
    }

    /* stats */
    .hero-stats {
      display: flex;
      gap: 44px;
      animation: fadeUp .4s .4s ease both;
    }

    .stat-item {
      position: relative;
    }

    .stat-item::after {
      content: '';
      position: absolute;
      right: -22px;
      top: 10%;
      width: 1px;
      height: 80%;
      background: rgba(255, 255, 255, .08);
    }

    .stat-item:last-child::after {
      display: none;
    }

    .stat-num {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--pl);
      line-height: 1;
      margin-bottom: 6px;
      /* number glow pulse */
      animation: numGlow 3s ease-in-out infinite;
    }

    @keyframes numGlow {

      0%,
      100% {
        text-shadow: 0 0 10px rgba(123, 111, 224, 0);
      }

      50% {
        text-shadow: 0 0 20px rgba(123, 111, 224, 0.6);
      }
    }

    .stat-lbl {
      font-size: .8rem;
      color: var(--muted);
      font-weight: 500;
    }

    /* ── RIGHT COLUMN ── */
    .hero-right {
      position: relative;
      flex: 1;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .video-container {
      position: relative;
      width: 100%;
      max-width: 620px;
      animation: fadeLeft .6s .2s ease both;
    }

    /* double rotating rings — conic-gradient with radial fallback for older browsers */
    .video-ring {
      position: absolute;
      inset: -28px;
      top: -28px; right: -28px; bottom: -28px; left: -28px; /* inset fallback */
      border-radius: 30px;
      /* Fallback for browsers without conic-gradient (older Safari, Firefox < 83) */
      background: radial-gradient(ellipse at center, rgba(108, 93, 211, .5) 0%, rgba(80, 160, 255, .3) 50%, transparent 80%);
      /* Modern browsers with conic-gradient support */
      background: conic-gradient(from 0deg,
          transparent 0%, rgba(108, 93, 211, .6) 15%,
          rgba(80, 160, 255, .4) 50%, rgba(108, 93, 211, .6) 85%,
          transparent 100%);
      filter: blur(22px);
      animation: spin 6s linear infinite;
      will-change: transform;
      pointer-events: none;
    }

    .video-ring2 {
      position: absolute;
      inset: -14px;
      top: -14px; right: -14px; bottom: -14px; left: -14px; /* inset fallback */
      border-radius: 26px;
      /* Fallback */
      background: radial-gradient(ellipse at center, rgba(180, 100, 255, .25) 0%, rgba(100, 200, 255, .15) 50%, transparent 80%);
      /* Modern */
      background: conic-gradient(from 180deg,
          transparent 0%, rgba(180, 100, 255, .3) 20%,
          rgba(100, 200, 255, .2) 50%, rgba(180, 100, 255, .3) 80%,
          transparent 100%);
      filter: blur(12px);
      animation: spin 10s linear infinite reverse;
      will-change: transform;
      pointer-events: none;
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    /* animated border via dash offset */
    .video-border {
      position: absolute;
      inset: -2px;
      border-radius: 22px;
      pointer-events: none;
      z-index: 3;
    }

    .video-border svg {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0; /* inset fallback */
      inset: 0;
    }

    .video-border rect {
      fill: none;
      stroke: url(#borderGrad);
      stroke-width: 1.5;
      stroke-dasharray: 30 10;
      animation: dashMove 2.5s linear infinite;
    }

    @keyframes dashMove {
      to {
        stroke-dashoffset: -160;
      }
    }

    .video-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      /* aspect-ratio fallback for Safari < 15 and older browsers */
      padding-top: 62.5%; /* 16/10 = 1.6, so 100/1.6 = 62.5% */
      height: 0;
      border: 1px solid rgba(108, 93, 211, .35);
      box-shadow: 0 0 60px rgba(108, 93, 211, .25), 0 24px 80px rgba(0, 0, 0, .6);
    }

    /* Browsers that support aspect-ratio get the cleaner version */
    @supports (aspect-ratio: 16/10) {
      .video-wrap {
        aspect-ratio: 16/10;
        padding-top: 0;
        height: auto;
      }
    }

    .video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(9, 16, 42, .4) 0%, rgba(108, 93, 211, .1) 100%);
      pointer-events: none;
    }

    /* scan-line sweep over video */
    .scan-line {
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(108, 93, 211, .5), rgba(100, 200, 255, .4), transparent);
      animation: scanMove 2.5s ease-in-out infinite;
      pointer-events: none;
      z-index: 4;
    }

    @keyframes scanMove {
      0% {
        top: -2px;
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        top: 100%;
        opacity: 0;
      }
    }

    /* corner brackets that animate in */
    .corner {
      position: absolute;
      width: 28px;
      height: 28px;
    }

    .corner.tl {
      top: -1px;
      left: -1px;
      border-top: 2px solid var(--p);
      border-left: 2px solid var(--p);
      animation: cornerTL .6s .8s ease both;
    }

    .corner.tr {
      top: -1px;
      right: -1px;
      border-top: 2px solid var(--p);
      border-right: 2px solid var(--p);
      animation: cornerTR .6s .9s ease both;
    }

    .corner.bl {
      bottom: -1px;
      left: -1px;
      border-bottom: 2px solid var(--p);
      border-left: 2px solid var(--p);
      animation: cornerBL .6s 1s ease both;
    }

    .corner.br {
      bottom: -1px;
      right: -1px;
      border-bottom: 2px solid var(--p);
      border-right: 2px solid var(--p);
      animation: cornerBR .6s 1.1s ease both;
    }

    @keyframes cornerTL {
      from {
        opacity: 0;
        transform: translate(-8px, -8px)
      }

      to {
        opacity: 1;
        transform: translate(0, 0)
      }
    }

    @keyframes cornerTR {
      from {
        opacity: 0;
        transform: translate(8px, -8px)
      }

      to {
        opacity: 1;
        transform: translate(0, 0)
      }
    }

    @keyframes cornerBL {
      from {
        opacity: 0;
        transform: translate(-8px, 8px)
      }

      to {
        opacity: 1;
        transform: translate(0, 0)
      }
    }

    @keyframes cornerBR {
      from {
        opacity: 0;
        transform: translate(8px, 8px)
      }

      to {
        opacity: 1;
        transform: translate(0, 0)
      }
    }

    /* orbiting service icons around video */
    .orbit-ring {
      position: absolute;
      inset: -70px;
      border-radius: 50%;
      pointer-events: none;
      animation: orbitSpin 15s linear infinite;
      z-index: 6;
    }

    .orbit-icon {
      position: absolute;
      width: 46px;
      height: 46px;
      background: rgba(12, 18, 45, .92);
      border: 1px solid rgba(108, 93, 211, .35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--pl);
      box-shadow: 0 4px 20px rgba(0, 0, 0, .4), 0 0 10px rgba(108, 93, 211, .2);
      /* counter-rotate so icon stays upright */
      animation: counterSpin 15s linear infinite;
    }

    /* position icons at compass points */
    .orbit-icon.top {
      top: -23px;
      left: 50%;
      transform: translateX(-50%);
    }

    .orbit-icon.right {
      right: -23px;
      top: 50%;
      transform: translateY(-50%);
    }

    .orbit-icon.bottom {
      bottom: -23px;
      left: 50%;
      transform: translateX(-50%);
    }

    .orbit-icon.left {
      left: -23px;
      top: 50%;
      transform: translateY(-50%);
    }

    @keyframes orbitSpin {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes counterSpin {
      to {
        transform: rotate(-360deg);
      }
    }

    /* Fix translateX/Y for counter rotating */
    .orbit-icon.top {
      animation: counterSpinTop 15s linear infinite;
    }

    .orbit-icon.right {
      animation: counterSpinRight 15s linear infinite;
    }

    .orbit-icon.bottom {
      animation: counterSpinBottom 15s linear infinite;
    }

    .orbit-icon.left {
      animation: counterSpinLeft 15s linear infinite;
    }

    @keyframes counterSpinTop {
      to {
        transform: translateX(-50%) rotate(-360deg);
      }
    }

    @keyframes counterSpinRight {
      to {
        transform: translateY(-50%) rotate(-360deg);
      }
    }

    @keyframes counterSpinBottom {
      to {
        transform: translateX(-50%) rotate(-360deg);
      }
    }

    @keyframes counterSpinLeft {
      to {
        transform: translateY(-50%) rotate(-360deg);
      }
    }

    /* floating info cards — enhanced */
    .float-card {
      position: absolute;
      background: rgba(10, 15, 38, .94);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(108, 93, 211, .28);
      border-radius: 14px;
      padding: 12px 17px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 8px 36px rgba(0, 0, 0, .5), 0 0 20px rgba(108, 93, 211, .1);
      white-space: nowrap;
      z-index: 7;
    }

    .float-card.top-left {
      top: -22px;
      left: -22px;
      animation: floatUD1 2.2s ease-in-out infinite;
    }

    .float-card.bot-right {
      bottom: -22px;
      right: -22px;
      animation: floatUD2 2.8s ease-in-out infinite .6s;
    }

    @keyframes floatUD1 {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-9px) rotate(.5deg);
      }
    }

    @keyframes floatUD2 {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-9px) rotate(-.5deg);
      }
    }

    /* pulse border on card */
    .float-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 14px;
      border: 1px solid rgba(108, 93, 211, 0);
      animation: cardPulse 2.5s ease-in-out infinite;
    }

    @keyframes cardPulse {

      0%,
      100% {
        border-color: rgba(108, 93, 211, 0);
        box-shadow: none;
      }

      50% {
        border-color: rgba(108, 93, 211, .5);
        box-shadow: 0 0 12px rgba(108, 93, 211, .2);
      }
    }

    .float-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--p), #4a90e2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .float-title {
      font-size: .65rem;
      color: var(--muted);
      font-weight: 500;
    }

    .float-val {
      font-size: .9rem;
      color: #fff;
      font-weight: 700;
      margin-top: 2px;
    }

    /* live indicator */
    .live-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      background: #2ecc71;
      border-radius: 50%;
      margin-right: 4px;
      animation: livePulse 1.2s ease-in-out infinite;
    }

    @keyframes livePulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, .6);
      }

      50% {
        box-shadow: 0 0 0 5px rgba(46, 204, 113, 0);
      }
    }

    /* mute btn */
    .mute-btn {
      position: absolute;
      bottom: 12px;
      right: 12px;
      width: 34px;
      height: 34px;
      background: rgba(10, 15, 38, .88);
      border: 1px solid rgba(108, 93, 211, .35);
      border-radius: 50%;
      color: #fff;
      font-size: .82rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, transform .2s;
      z-index: 10;
    }

    .mute-btn:hover {
      background: var(--p);
      transform: scale(1.1);
    }

    /* ═══════════════════════════════
       GLOBAL ANIMS
    ═══════════════════════════════ */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeLeft {
      from {
        opacity: 0;
        transform: translateX(55px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* ═══════════════════════════════
       RESPONSIVE
    ═══════════════════════════════ */
    @media (min-width:1400px) {
      h1 {
        font-size: 3.6rem;
      }
    }

    @media (max-width:1199px) {
      .hero {
        padding: 80px 40px 60px 60px;
      }

      h1 {
        font-size: 2.8rem;
      }
    }

    @media (max-width:900px) {
      body {
        cursor: auto;
      }

      #cursor,
      #cursor-ring {
        display: none;
      }

      .hero {
        padding: 100px 30px 60px;
        text-align: center;
      }

      .hero-container {
        flex-direction: column;
        gap: 50px;
      }

      .hero-left {
        flex: none;
        max-width: 100%;
      }

      .hero-desc {
        margin: 0 auto 34px;
      }

      .hero-btns {
        justify-content: center;
      }

      .hero-stats {
        justify-content: center;
      }

      .hero-right {
        width: 100%;
        justify-content: center;
      }

      .video-container {
        max-width: 520px;
        margin: 0 auto;
      }

      .orbit-ring {
        display: none;
      }

      nav {
        width: calc(100% - 32px);
        padding: 10px 20px;
      }
    }

    /* ═══════════════════════════════
       ABOUT SECTION
    ═══════════════════════════════ */
    .about {
      padding: 100px 20px;
      position: relative;
      z-index: 1;
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      width: 100%;
    }

    .about-flex {
      display: flex;
      align-items: center;
      gap: 60px;
    }

    .about-text {
      flex: 1;
    }

    .section-tag {
      color: var(--p);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: .8rem;
      margin-bottom: 15px;
      display: block;
    }

    .section-title {
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 25px;
    }

    .about-desc {
      color: var(--muted);
      line-height: 1.8;
      font-size: 1.05rem;
      margin-bottom: 30px;
    }

    .about-image {
      flex: 1;
      position: relative;
    }

    .about-image img {
      width: 100%;
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(108, 93, 211, 0.2);
    }

    @media (max-width: 991px) {
      .about-flex {
        flex-direction: column;
        text-align: center;
      }
    }

    /* ═══════════════════════════════
       SERVICES SECTION
    ═══════════════════════════════ */
    .services {
      padding: 100px 20px;
      background: rgba(12, 18, 45, 0.4);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 40px;
      border-radius: 20px;
      transition: all .4s cubic-bezier(.4, 0, .2, 1);
      position: relative;
      overflow: hidden;
    }

    .service-card:hover {
      background: rgba(108, 93, 211, 0.08);
      border-color: var(--p);
      transform: translateY(-10px);
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: var(--pg);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--p);
      margin-bottom: 25px;
      transition: all .3s;
    }

    .service-card:hover .service-icon {
      background: var(--p);
      color: #fff;
      transform: scale(1.1);
    }

    .service-card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .service-card p {
      color: var(--muted);
      line-height: 1.6;
      font-size: .95rem;
    }

  /* ═══════════════════════════════
       PACKAGES SECTION - PREMIUM DARK
    ═══════════════════════════════ */
  .packages {
    padding: 120px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
  }

  /* Subtle background glow for the whole section */
  .packages::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(108, 93, 211, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
  }

  .packages-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .packages-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
  }

  .packages-title span {
    background: linear-gradient(135deg, var(--p), var(--pl));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
  }

  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    max-width: 1240px;
    margin: 0 auto;
  }

  .package-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 50px 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  /* Shimmer effect on hover */
  .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(108, 93, 211, 0.05),
        transparent);
    transition: 0.8s;
    pointer-events: none;
  }

  .package-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(108, 93, 211, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(108, 93, 211, 0.1);
  }

  .package-card:hover::before {
    left: 100%;
  }

  .package-icon-wrap {
    margin-bottom: 35px;
    position: relative;
  }

  .package-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(108, 93, 211, 0.1), rgba(123, 111, 224, 0.1));
    border: 1px solid rgba(108, 93, 211, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--pl);
    transition: all 0.5s ease;
    animation: floatIcon 4s ease-in-out infinite;
  }

  @keyframes floatIcon {

    0%,
    100% {
      transform: translateY(0) rotate(0);
    }

    50% {
      transform: translateY(-8px) rotate(3deg);
    }
  }

  .package-card:hover .package-icon {
    background: linear-gradient(135deg, var(--p), var(--pl));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px var(--pg);
    animation: none;
  }

  .package-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 25px;
    min-height: 4.2rem;
    letter-spacing: -0.5px;
  }

  .package-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 35px;
  }

  .package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 45px;
    flex-grow: 1;
  }

  .package-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
  }

  .package-card:hover .package-features li {
    color: rgba(255, 255, 255, 0.9);
  }

  .package-features li::before {
    content: '\F633';
    /* Bootstrap check-circle */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--p);
    font-weight: 400;
    font-size: 1.1rem;
    top: 1px;
  }

  .package-link {
    color: var(--pl);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    position: relative;
  }

  .package-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--p);
    transition: width 0.3s ease;
  }

  .package-link:hover {
    color: #fff;
    gap: 12px;
  }

  .package-link:hover::after {
    width: 100%;
  }

  @media (max-width: 991px) {
    .packages {
      padding: 80px 20px;
    }

    .package-name {
      min-height: auto;
    }

    .packages-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
  }

    

    /* ═══════════════════════════════
       TESTIMONIALS SECTION
    ═══════════════════════════════ */
    .testimonials {
      padding: 100px 20px;
      position: relative;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.03);
      padding: 40px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
    }

    .testimonial-card i.quote-icon {
      font-size: 2.5rem;
      color: rgba(108, 93, 211, 0.2);
      position: absolute;
      top: 20px;
      right: 30px;
    }

    .testimonial-content {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--muted);
      margin-bottom: 25px;
      font-style: italic;
    }

    .testimonial-stars {
      color: #f1c40f;
      margin-bottom: 20px;
      font-size: 0.9rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .author-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--p);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #fff;
    }

    .author-info h4 {
      font-size: 1.1rem;
      font-weight: 700;
    }

    .author-info p {
      font-size: .85rem;
      color: var(--muted);
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    footer {
      padding: 80px 20px 40px;
      background: #060b1e;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 60px;
    }

    .footer-col h4 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 25px;
      color: #fff;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col ul li a {
      color: var(--muted);
      text-decoration: none;
      transition: color .3s;
      font-size: .95rem;
    }

    .footer-col ul li a:hover {
      color: var(--p);
    }

    .footer-bottom {
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      color: var(--muted);
      font-size: .9rem;
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 2rem;
      }

      .hero {
        padding: 90px 20px 50px;
      }

      .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
      }
    }
  
  /* Scroll Top Button */
  .scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(108, 93, 211, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(108, 93, 211, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .scroll-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
  }

  .scroll-top:hover {
    background: var(--p);
    transform: translateY(-5px);
    border-color: var(--pl);
    box-shadow: 0 15px 30px var(--pg);
  }

  
  /* ═══════════════════════════════
     PARTNERS SLIDER
  ═══════════════════════════════ */
  .partners {
    padding: 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
    margin-top: -30px;
    /* Overlap with hero for tighter look */
  }

  .partners-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .partners-content {
    background: rgba(12, 18, 45, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }

  .partners-label {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pl);
    white-space: nowrap;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .marquee {
    flex: 1;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  }

  .marquee-content {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 60px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: marqueeRun 40s linear infinite;
    animation: marqueeRun 40s linear infinite;
    will-change: transform;
  }

  .marquee:hover .marquee-content {
    animation-play-state: paused;
  }

  .partner-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    opacity: .6;
    transition: all .3s ease;
    cursor: default;
  }

  .partner-box i {
    font-size: 1.6rem;
  }

  .partner-box span {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
  }

  .partner-box:hover {
    opacity: 1;
    color: #fff;
    transform: scale(1.05);
  }

  @keyframes marqueeRun {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @media (max-width: 900px) {
    .partners-content {
      flex-direction: column;
      gap: 20px;
      padding: 30px 20px;
      text-align: center;
    }

    .partners-label {
      border-right: none;
      padding-right: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 15px;
      width: 100%;
    }

    .marquee-content {
      gap: 40px;
    }
  }
    /* ═══════════════════════════════
   Truck Section
  ═══════════════════════════════ */
  .trucks{
    padding: 120px 20px;
    background: transparent;
    position: relative;
    z-index: 10;
  }
    .truck-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
  }

  .truck-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
.truck-card::before{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
    background: radial-gradient(circle, rgba(108, 93, 211, 0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.5s;
    opacity: 0;
}
.truck-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--p);
    background: rgba(108, 93, 211, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(108, 93, 211, 0.2);
  }

  .truck-card:hover::before {
    opacity: 1;
  }

  .truck-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(108, 93, 211, 0.15), rgba(74, 144, 226, 0.15));
    border: 1px solid rgba(108, 93, 211, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--p);
    margin-bottom: 25px;
    transition: all 0.5s ease;
  }
  
  .truck-card:hover .truck-icon {
    background: linear-gradient(135deg, var(--p), #4a90e2);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px var(--pg);
  }

  .truck-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
  }

  .truck-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
  }

  /* truck badge for special types */
  .truck-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--p);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px var(--pg);
  }
    /* ═══════════════════════════════
   Contact page
  ═══════════════════════════════ */

       