 :root {
    --primary: #7c4dff;
    --secondary: #00acc1;
    --accent: #7c4dff;
    --primary-dark: #b388ff;
    --text-light: #b0bec5;
  }
    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    
    ::-webkit-scrollbar-track {
      background: #0b0f1a;
    }
    
    ::-webkit-scrollbar-thumb {
      background: #7c4dff;
      border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background:  #7c4dff;
    }
    .dark-veil-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .nav-scrolled {
      backdrop-filter: blur(10px);
      background-color: rgba(17, 17, 17, 0.8);
    }

    #mobile-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }

    #mobile-menu.show {
      max-height: 1000px;
      transition: max-height 0.5s ease-in;
    }

    .dropdown {
      z-index: 1000;
    }

    .mobile-menu-item {
      opacity: 0;
      transform: translateY(-10px);
    }

    .mobile-submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding-left: 1rem;
    }

    .mobile-submenu.show {
      max-height: 500px;
    }

    .mobile-submenu-item {
      opacity: 0;
      transform: translateX(-10px);
    }

    /* Chevron rotation for mobile */
    .mobile-chevron {
      transition: transform 0.3s ease;
    }

    .mobile-chevron.rotate-180 {
      transform: rotate(180deg);
    }

    .mobile-menu-group.active>button {
      color: #f87171;
    }

    .perspective {
      perspective: 1000px;
    }

    .card-inner {
      transform-style: preserve-3d;
      transition: transform 0.3s ease;
    }

    #bg {
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }

    .blur-text p {
      display: inline-block;
      opacity: 0.2;
      transform: translateY(30px);
      will-change: transform, filter, opacity;
    }

    #particles-js {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    #back-to-top {
      transition: all 0.3s ease;
      transform: translateY(10px);
      opacity: 0;
      visibility: hidden;
    }

    #back-to-top.visible {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }

    #back-to-top:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
     .card-glass {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: white;
      transition: all 0.3s ease;
      height: 100%;
    }
    .card-glass-2 {
      background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(139, 92, 246, 0.3));
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: white;
      transition: all 0.3s ease;
      height: 100%;
    }
    .card-glass:hover, .card-glass-2:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
    }
    
    .slider-container {
      width: 100%;
      overflow: hidden;
      position: relative;
    }
    
    .slider-track {
      display: flex;
      width: max-content;
      animation: slide 30s linear infinite;
    }
    
    .slider-track-2 {
      animation: slide-reverse 30s linear infinite;
    }
    
    .slider-item {
      padding: 0 15px;
      width: 300px;
    }
    
    @keyframes slide {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    @keyframes slide-reverse {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }
    
    .review-row {
      margin-bottom: 3rem;
      position: relative;
    }
    .review-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
      padding-left: 1rem;
    }
    
    /* Fog effect styles */
    .fog-overlay {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 200px;
      pointer-events: none;
      z-index: 10;
    }
    
    .fog-left {
      left: 0;
      background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    }
    
    .fog-right {
      right: 0;
      background: linear-gradient(270deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    }
    .section-header {
    text-align: center;
    padding: 60px 0;
  }
  .section-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
  }
  .section-header .header-description {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }

  .process-section {
    padding: 0 0 100px 0;
    position: relative;
   
  }
  .process-container {
    display: flex;
    gap: 60px;
    position: relative;
    min-height: 100vh;
  }
  .text-content {
    flex: 1;
    position: relative;
    z-index: 2;
  }
  .text-slide {
    border-left: 4px solid transparent;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0.6;
    transform: translateY(20px);
    transition: all 0.5s ease;
    margin-left: 65px;
    margin-bottom: 50px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 3px solid white;
  }
  .text-slide.active {
    opacity: 1;
    transform: translateY(0);
    border-left-color: var(--accent);
    box-shadow: 0 8px 30px rgba(124, 77, 255, 0.3);
  }
  .phase-number {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .visual-content {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .process-ring {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .process-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .process-path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
    stroke-dasharray: 1508;
    stroke-dashoffset: 1508;
  }
  .process-progress {
    fill: none;
    stroke: var(--accent);
    stroke-width: 8;
    stroke-dasharray: 1508;
    stroke-dashoffset: 1508;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
  }
  .center-hex {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    user-select: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(94, 53, 177, 0.3);
    z-index: 2;
  }
  .center-hex.active {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(94, 53, 177, 0.5);
  }
  .process-item {
    position: absolute;
    width: 110px;
    height: 110px;
    background: black;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    padding: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%) scale(0.9);
    outline-offset: 3px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .process-item.active,
  .process-item:focus-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(94, 53, 177, 0.5);
    outline: 3px solid var(--accent);
    background: black;
    z-index: 4;
  }
  .process-item svg {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
    fill: var(--primary-dark);
    transition: all 0.3s ease;
  }
  .process-item.active svg {
    fill: var(--accent);
    transform: scale(1.1);
  }
  .process-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    user-select: none;
    transition: all 0.3s ease;
  }
  .process-item.active span {
    color: var(--accent);
    font-weight: 700;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .process-container {
      flex-direction: column;
      gap: 40px;
      min-height: auto;
    }
    .text-content {
      order: 2;
    }
    .visual-content {
      order: 1;
      position: relative;
      height: 70vh;
      width: 100%;
      padding-bottom: 40px;
      top: auto;
    }
    .process-ring {
      max-width: 320px;
      max-height: 320px;
    }
    .center-hex {
      width: 110px;
      height: 110px;
      font-size: 0.9rem;
    }
    .process-item {
      width: 80px;
      height: 80px;
      padding: 6px;
      opacity: 0.6;
      transform: translate(-50%, -50%) scale(0.9);
    }
    .process-item svg {
      width: 26px;
      height: 26px;
      margin-bottom: 5px;
    }
    .process-item span {
      font-size: 0.8rem;
    }
  }