    :root {
      /* Updated Color System - Core Palette */
      --primary: #0157ff;
      --primary-dark: #0045d8;
      --primary-light: #4a86ff;
      --primary-gradient: linear-gradient(135deg, #0157ff, #3d7aff);
      
      --secondary: #ff113b;
      --secondary-dark: #e01036;
      --secondary-light: #ff4d6d;
      --secondary-gradient: linear-gradient(135deg, #ff113b, #ff4d6d);
      
      /* Combined gradient */
      --combined-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
      --combined-gradient-reverse: linear-gradient(135deg, var(--secondary), var(--primary));
      --multi-gradient: linear-gradient(to right, #2563eb, #c026d3, #ff113b);
      
      /* Cool Background Gradients */
      --cool-gradient-soft: linear-gradient(120deg, #f0f7ff 0%, #eef6ff 35%, #e5f2ff 65%, #ecf5ff 100%);
      --cool-gradient-blue: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 50%, #d9ecff 100%);
      --cool-gradient-subtle: linear-gradient(120deg, #f5f9ff 0%, #edf6ff 35%, #e8f4ff 65%, #f2f8ff 100%);
      
      --dark: #111827;
      --dark-secondary: #1f2937;
      --dark-gradient: linear-gradient(135deg, #111827, #374151);
      
      --light: #f9fafb;
      --light-secondary: #f3f4f6;

      /* Combined gradients */
            --combined-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --combined-tech-gradient: linear-gradient(90deg, #0157ff, #06b6d4, #c026d3);

    
      
      --white: #ffffff;
      --neutral-50: #f9fafb;
      --neutral-100: #f3f4f6;
      --neutral-200: #e5e7eb;
      --neutral-300: #d1d5db;
      --neutral-400: #9ca3af;
      --neutral-500: #6b7280;
      --neutral-600: #4b5563;
      --neutral-700: #374151;
      --neutral-800: #1f2937;
      --neutral-900: #111827;
      
      --text-primary: #111827;
      --text-secondary: #374151;
      --text-tertiary: #6b7280;

      /* Tech-themed enhanced gradients */
      --tech-gradient-blue: linear-gradient(135deg, #2563eb, #818cf8);
      --tech-gradient-purple: linear-gradient(135deg, #6366f1, #c026d3);
      --tech-gradient-neo: linear-gradient(135deg, #06b6d4, #3b82f6);
      --tech-accent: #06b6d4;
      --tech-dark-gradient: linear-gradient(135deg, #001547, #1e293b);

      
      /* Typography Scale */
      --font-xs: clamp(0.694rem, calc(0.655rem + 0.20vw), 0.833rem);
      --font-sm: clamp(0.833rem, calc(0.775rem + 0.29vw), 1rem);
      --font-base: clamp(1rem, calc(0.92rem + 0.40vw), 1.2rem);
      --font-md: clamp(1.2rem, calc(1.089rem + 0.56vw), 1.6rem);
      --font-lg: clamp(1.44rem, calc(1.288rem + 0.76vw), 2.125rem);
      --font-xl: clamp(1.728rem, calc(1.523rem + 1.03vw), 2.827rem);
      --font-2xl: clamp(2.074rem, calc(1.798rem + 1.38vw), 3.767rem);
      --font-3xl: clamp(2.488rem, calc(2.119rem + 1.85vw), 5.018rem);
      --font-4xl: clamp(3.2rem, calc(2.6rem + 2.4vw), 6.5rem);
      
      /* Space Scale */
      --space-3xs: clamp(0.25rem, calc(0.23rem + 0.10vw), 0.313rem);
      --space-2xs: clamp(0.5rem, calc(0.46rem + 0.20vw), 0.625rem);
      --space-xs: clamp(0.75rem, calc(0.69rem + 0.30vw), 0.938rem);
      --space-sm: clamp(1rem, calc(0.92rem + 0.40vw), 1.25rem);
      --space-md: clamp(1.5rem, calc(1.38rem + 0.60vw), 1.875rem);
      --space-lg: clamp(2rem, calc(1.84rem + 0.80vw), 2.5rem);
      --space-xl: clamp(3rem, calc(2.77rem + 1.15vw), 3.75rem);
      --space-2xl: clamp(4rem, calc(3.69rem + 1.55vw), 5rem);
      --space-3xl: clamp(6rem, calc(5.54rem + 2.3vw), 7.5rem);
      
      /* Shadows */
      --shadow-sm: 0px 2px 4px rgba(16, 24, 40, 0.06), 0px 1px 2px rgba(16, 24, 40, 0.08);
      --shadow-md: 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
      --shadow-lg: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.05);
      --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
      --shadow-glow: 0 0 20px rgba(1, 87, 255, 0.3);
      --shadow-glow-red: 0 0 20px rgba(255, 17, 59, 0.3);
      --shadow-soft: 0 10px 50px -12px rgba(0, 0, 0, 0.05);
      
      /* Border Radius */
      --radius-sm: 0.5rem;
      --radius-md: 0.75rem;
      --radius-lg: 1rem;
      --radius-full: 9999px;
      
      /* Transitions */
      --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
      --transition-normal: 250ms cubic-bezier(0.16, 1, 0.3, 1);
      --transition-slow: 350ms cubic-bezier(0.16, 1, 0.3, 1);
      
      /* Z-index */
      --z-negative: -1;
      --z-elevate: 1;
      --z-dropdown: 10;
      --z-sticky: 100;
      --z-drawer: 200;
      --z-modal: 300;
      --z-tooltip: 600;
    }
    
    /* Reset */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
      font-size: 16px;
      scroll-padding-top: 80px;
    }
    
    body {
      font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.5;
      color: var(--text-primary);
      background-color: var(--white);
      overflow-x: hidden;
      font-weight: 400;
      font-size: var(--font-base);
    }
    
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 var(--space-md);
      position: relative;
    }
    
    .section {
      padding: var(--space-2xl) 0;
      position: relative;
    }
    
    /* Hero Section Styles */
    .hero-section {
      position: relative;
      min-height: 100vh;
      width: 100%;
      background: var(--cool-gradient-blue);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      padding-top: 5rem;
    }
    
    /* Background gradient sphere */
    .gradient-sphere {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.5;
      z-index: var(--z-negative);
    }
    
    .gradient-sphere-1 {
      width: 40vw;
      height: 40vw;
      top: -10%;
      right: -5%;
      background: radial-gradient(circle at center, rgba(1, 87, 255, 0.15), rgba(1, 87, 255, 0.05), transparent 70%);
      animation: float 20s ease-in-out infinite alternate;
    }
    
    .gradient-sphere-2 {
      width: 30vw;
      height: 30vw;
      bottom: -5%;
      left: 10%;
      background: radial-gradient(circle at center, rgba(255, 17, 59, 0.08), rgba(255, 17, 59, 0.03), transparent 70%);
      animation: float 25s ease-in-out infinite alternate-reverse;
    }
    
    .gradient-sphere-3 {
      width: 20vw;
      height: 20vw;
      top: 30%;
      left: -5%;
      background: radial-gradient(circle at center, rgba(193, 38, 211, 0.07), rgba(193, 38, 211, 0.02), transparent 70%);
      animation: float 18s ease-in-out infinite alternate;
    }
    
    @keyframes float {
      0% {
        transform: translate(0, 0);
      }
      100% {
        transform: translate(2%, 2%);
      }
    }
    
    /* Cursor Tracked Glow Effect */
    .glow-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: var(--z-elevate);
      pointer-events: none;
      opacity: 0.6;
    }
    
    .glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(
        circle at center,
        rgba(1, 87, 255, 0.15) 0%,
        rgba(1, 87, 255, 0.08) 20%,
        rgba(255, 255, 255, 0) 70%
      );
      will-change: transform;
      transform: translate(-50%, -50%);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.6s ease;
    }
    
    .glow.active {
      opacity: 1;
    }
    
    /* Crystalline mesh background */
    .mesh-grid {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: var(--z-negative);
      opacity: 0.3;
      background-size: 30px 30px;
      background-image: 
        linear-gradient(to right, rgba(1, 87, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(1, 87, 255, 0.03) 1px, transparent 1px);
      transform: perspective(1000px) rotateX(60deg) scale(1.8) translateY(-20%);
      transform-origin: center center;
      pointer-events: none;
    }
    
    /* Glass panel elements */
    .glass-panel {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow: var(--shadow-soft);
      border-radius: var(--radius-md);
    }
    
    /* Grain Overlay */
    .grain-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.3;
      z-index: var(--z-negative);
      pointer-events: none;
    }
    
    /* Breadcrumbs */
    .breadcrumbs {
      padding: var(--space-md) 0;
      z-index: var(--z-elevate);
      display: flex;
      align-items: center;
    }
    
    .breadcrumbs ul {
      list-style: none;
      display: flex;
      gap: var(--space-2xs);
    }
    
    .breadcrumbs li {
      display: flex;
      align-items: center;
      font-size: var(--font-xs);
      font-weight: 500;
      color: var(--text-tertiary);
      transition: color var(--transition-fast);
    }
    
    .breadcrumbs li:not(:last-child)::after {
      content: "/";
      margin-left: var(--space-2xs);
      color: var(--neutral-400);
    }
    
    .breadcrumbs a {
      color: var(--text-tertiary);
      text-decoration: none;
      position: relative;
      transition: color var(--transition-normal);
    }
    
    .breadcrumbs a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--combined-gradient);
      transition: width var(--transition-normal);
    }
    
    .breadcrumbs a:hover {
      color: var(--primary);
    }
    
    .breadcrumbs a:hover::after {
      width: 100%;
    }
    
    .breadcrumbs li:last-child {
      color: var(--primary);
      font-weight: 600;
    }
    
    /* Hero Content */
    .hero-content-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-2xl);
      align-items: center;
      min-height: calc(100vh - 90px);
      position: relative;
      z-index: var(--z-elevate);
    }
    
    .hero-content {
      max-width: 800px;
      padding: var(--space-lg) 0;
    }
    
    .hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(1, 87, 255, 0.15);
      color: var(--primary);
      font-size: var(--font-xs);
      font-weight: 600;
      padding: var(--space-3xs) var(--space-sm);
      border-radius: var(--radius-full);
      margin-bottom: var(--space-md);
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s forwards 0.3s;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    
    .hero-badge::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
      );
      animation: shimmer 3s infinite;
    }
    
    .hero-badge span {
      background: var(--multi-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
      font-weight: 700;
    }
    
    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 200%; }
    }
    
    .hero-title-container {
      margin-bottom: var(--space-xl);
      position: relative;
    }
    
    .hero-title {
      font-family: 'Inter', sans-serif;
      color: var(--text-primary);
      font-size: var(--font-4xl);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin-bottom: var(--space-md);
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s forwards 0.5s;
      position: relative;
    }
    
    .hero-title-impact {
      display: block;
      margin-bottom: 0.2em;
    }
    
    .gradient-text {
      display: inline-block;
      background: var(--multi-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
      position: relative;
    }
    
    .gradient-text::after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      background: var(--multi-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
      filter: blur(12px);
      opacity: 0.4;
    }
    
    .hero-subtitle {
      font-size: var(--font-md);
      font-weight: 500;
      color: var(--text-secondary);
      margin-bottom: var(--space-lg);
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s forwards 0.7s;
      width: 100%;
      max-width: 600px;
    }
    
    /* Animated Highlight Words */
    .highlight-word {
      position: relative;
      display: inline-block;
      color: var(--primary);
      font-weight: 700;
      transition: color var(--transition-normal);
    }
    
    .highlight-word::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 0.12em;
      bottom: 0.05em;
      left: 0;
      background: var(--combined-gradient);
      z-index: -1;
      transform: scaleX(0);
      transform-origin: left;
      animation: highlightReveal 0.8s forwards 1.5s;
    }
    
    @keyframes highlightReveal {
      to {
        transform: scaleX(1);
      }
    }
    
    .hero-buttons {
      display: flex;
      gap: var(--space-md);
      margin-top: var(--space-xl);
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s forwards 0.9s;
    }
    
    /* Glass effect buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-xs) var(--space-md);
      border-radius: var(--radius-full);
      font-weight: 600;
      font-size: var(--font-base);
      text-decoration: none;
      position: relative;
      overflow: hidden;
      z-index: 5;
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      font-family: 'Plus Jakarta Sans', sans-serif;
      transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    }
    
    .btn-primary {
      background: var(--multi-gradient);
      color: white !important;
      min-width: 200px;
    }
    
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
      );
      animation: shine 3s infinite;
      animation-delay: 2s;
    }
    
    @keyframes shine {
      0% { left: -100%; }
      100% { left: 200%; }
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md), var(--shadow-glow);
    }
    
    .btn-primary:active {
      transform: translateY(0);
      box-shadow: var(--shadow-sm);
    }
    
    .btn-outline {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: none;
      color: var(--primary);
      border: 1px solid rgba(1, 87, 255, 0.3);
      min-width: 180px;
    }
    
    .btn-outline:hover {
      background: rgba(1, 87, 255, 0.05);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
      border-color: var(--primary);
    }
    
    .btn-outline:active {
      transform: translateY(0);
    }
    
    .btn-icon {
      margin-left: var(--space-xs);
      transition: transform var(--transition-normal);
    }
    
    .btn:hover .btn-icon {
      transform: translateX(4px);
    }
    
    /* Animated Scroll Indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      z-index: var(--z-elevate);
      opacity: 0;
      animation: fadeIn 1s forwards 2s;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .scroll-indicator span {
      font-size: var(--font-xs);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: var(--space-xs);
      background: var(--combined-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    
    .scroll-indicator-line {
      width: 2px;
      height: 60px;
      background: var(--combined-gradient);
      position: relative;
      overflow: hidden;
    }
    
    .scroll-indicator-line::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      animation: scrollLine 2s infinite;
    }
    
    @keyframes scrollLine {
      0% { transform: translateY(-100%); }
      50% { transform: translateY(100%); }
      100% { transform: translateY(300%); }
    }
    
    /* Highlighted feature circles */
    .feature-circle {
      position: absolute;
      z-index: var(--z-negative);
      border-radius: 50%;
      opacity: 0;
      animation: fadeIn 1s forwards;
    }
    
    .feature-circle-1 {
      width: 300px;
      height: 300px;
      right: -100px;
      top: 20%;
      border: 1px dashed rgba(1, 87, 255, 0.2);
      animation-delay: 1.2s;
    }
    
    .feature-circle-2 {
      width: 150px;
      height: 150px;
      right: 150px;
      top: 40%;
      border: 1px dashed rgba(255, 17, 59, 0.15);
      animation-delay: 1.5s;
    }
    
    /* Glowing dots */
    .glowing-dot {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 10px 2px rgba(1, 87, 255, 0.3);
      z-index: var(--z-negative);
      opacity: 0;
      animation: pulse 3s infinite, fadeIn 0.5s forwards;
    }
    
    .dot-1 {
      top: 25%;
      right: 15%;
      animation-delay: 0.5s, 1.8s;
    }
    
    .dot-2 {
      top: 40%;
      right: 25%;
      animation-delay: 1.2s, 2s;
    }
    
    .dot-3 {
      top: 60%;
      right: 10%;
      animation-delay: 0.8s, 2.2s;
    }
    
    @keyframes pulse {
      0% {
        transform: scale(0.8);
        box-shadow: 0 0 10px 2px rgba(1, 87, 255, 0.3);
      }
      50% {
        transform: scale(1.2);
        box-shadow: 0 0 15px 3px rgba(1, 87, 255, 0.4);
      }
      100% {
        transform: scale(0.8);
        box-shadow: 0 0 10px 2px rgba(1, 87, 255, 0.3);
      }
    }
    
    /* ====== TRUSTED BY COMPANIES SECTION ====== */
  .trusted-section {
    position: relative;
    padding: var(--space-2xl) 0;
    background: var(--cool-gradient-subtle);
    overflow: hidden;
  }
  
  /* Section Header */
  .section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
  }
  
  
  
  .gradient-text {
    background: var(--multi-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
  }
  
  .section-subtitle {
    font-size: var(--font-md);
    color: var(--text-tertiary);
    max-width: 600px;
    margin: var(--space-sm) auto 0;
  }
  
  .gradient-bar {
    width: 120px;
    height: 4px;
    background: var(--combined-gradient);
    margin: var(--space-xs) auto;
    border-radius: var(--radius-full);
  }
  
  /* Trust Metrics */
  .trust-metrics {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
  }
  
  .metric {
    text-align: center;
    position: relative;
  }
  
  .metric:not(:last-child):after {
    content: '';
    position: absolute;
    right: calc(-1 * var(--space-lg));
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--neutral-300);
  }
  
  .metric-value {
    font-size: var(--font-2xl);
    font-weight: 700;
    background: var(--combined-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--space-2xs);
  }
  
  .metric-label {
    font-size: var(--font-sm);
    color: var(--text-tertiary);
  }
  
  /* Logo Showcase */
  .logo-showcase-container {
    position: relative;
    width: 100%;
    padding: var(--space-md) 0;
    margin: var(--space-lg) 0;
    overflow: hidden;
  }
  
  .logo-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cool-gradient-blue);
    opacity: 0.3;
    z-index: 0;
  }
  
  .logo-carousel-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .logo-track {
    display: flex;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: logoScroll;
  }
  
  .track-1 {
    animation-duration: 30s;
  }
  
  .track-2 {
    animation-duration: 40s;
    animation-direction: reverse;
    margin-top: var(--space-md);
  }
  
  .logo-slide {
    flex: 0 0 auto;
    padding: 0 var(--space-sm);
  }
  
  .logo-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    filter: grayscale(100%);
  }
  
  .logo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    filter: grayscale(0%);
    background: var(--white);
  }
  
  .logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  /* Edge Fade Effect */
  .edge-fade {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
  }
  
  .left-fade {
    left: 0;
    background: linear-gradient(to right, var(--cool-gradient-subtle), transparent);
  }
  
  .right-fade {
    right: 0;
    background: linear-gradient(to left, var(--cool-gradient-subtle), transparent);
  }
  
  /* Trusted Footer */
  .trusted-footer {
    text-align: center;
    margin-top: var(--space-lg);
  }
  
  .industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs);
  }
  
  .industry-tag {
    font-size: var(--font-sm);
    color: var(--text-tertiary);
    background: rgba(255, 255, 255, 0.7);
    padding: var(--space-2xs) var(--space-sm);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
  }
  
  .industry-tag:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    transform: translateY(-2px);
  }
  
  /* Animation */
  @keyframes logoScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Decorative Elements */
  .section-decoration {
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 0;
  }
  
  .wave-top {
    top: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='white'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='white'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='white'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    transform: rotate(180deg);
  }
  
  .wave-bottom {
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='white'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='white'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='white'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .trusted-section {
      padding: var(--space-xl) 0;
    }
    
    
    
    .trust-metrics {
      flex-direction: column;
      gap: var(--space-md);
    }
    
    .metric:not(:last-child):after {
      content: none;
    }
    
    .logo-card {
      width: 150px;
      height: 80px;
      padding: var(--space-sm);
    }
  }
    /* Testimonials Section Styling */
    .testimonials {
        position: relative;
        padding: var(--space-2xl) 0;
        background: var(--cool-gradient-subtle);
        overflow: hidden;
    }
    
    .testimonials .section-title-wrapper {
        text-align: center;
        margin-bottom: var(--space-xl);
    }
    
    .testimonials .section-title {
        font-size: var(--font-xl);
        color: var(--text-primary);
        margin-bottom: var(--space-xs);
        position: relative;
        display: inline-block;
    }
    
    .testimonials .section-subtitle {
        font-size: var(--font-md);
        color: var(--text-tertiary);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .testimonials-wrapper {
        position: relative;
        padding: var(--space-lg) 0;
    }
    
    /* Decorative elements */
    .testimonial-decoration {
        position: absolute;
        border-radius: 50%;
        z-index: var(--z-negative);
        filter: blur(60px);
        opacity: 0.5;
    }
    
    .gradient-orb {
        width: 300px;
        height: 300px;
    }
    
    .gradient-orb.left {
        background: var(--primary-light);
        top: -100px;
        left: -150px;
    }
    
    .gradient-orb.right {
        background: var(--secondary-light);
        bottom: -100px;
        right: -150px;
    }
    
    /* Testimonial Cards */
    .testimonial-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: var(--space-lg);
        box-shadow: var(--shadow-soft);
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: transform var(--transition-normal), box-shadow var(--transition-normal);
        overflow: hidden;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }
    
    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--combined-gradient);
    }
    
    /* Testimonial Header */
    .testimonial-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: var(--space-md);
    }
    
    .quote-icon {
        line-height: 0;
    }
    
    .testimonial-stars {
        display: flex;
        gap: 2px;
    }
    
    /* Testimonial Content */
    .testimonial-text {
        font-size: var(--font-base);
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: var(--space-lg);
        flex-grow: 1;
    }
    
    /* Testimonial Footer */
    .testimonial-footer {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        margin-top: auto;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid var(--primary-light);
    }
    
    .client-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .client-info {
        display: flex;
        flex-direction: column;
    }
    
    .client-name {
        font-size: var(--font-md);
        font-weight: 600;
        color: var(--text-primary);
        margin: 0;
    }
    
    .client-position {
        font-size: var(--font-sm);
        color: var(--text-tertiary);
        margin: 0;
    }
    
    /* Swiper Styling */
    .testimonials-swiper {
        width: 100%;
        padding: var(--space-md) var(--space-xs) var(--space-xl);
    }
    
    .testimonials-swiper .swiper-slide {
        height: auto;
        padding: var(--space-xs);
    }
    
    /* Pagination Styling */
    .testimonials-swiper .swiper-pagination {
        position: relative;
        bottom: 0;
        margin-top: var(--space-lg);
    }
    
    .testimonials-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: var(--neutral-300);
        opacity: 0.7;
        margin: 0 5px;
        transition: all 0.3s ease;
    }
    
    .testimonials-swiper .swiper-pagination-bullet-active {
        width: 30px;
        border-radius: 10px;
        background: var(--combined-gradient);
        opacity: 1;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .testimonials {
            padding: var(--space-xl) 0;
        }
        
        .testimonial-card {
            padding: var(--space-md);
        }
    }
    
    
    
    /* Animations */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
    
    /* Observer animations */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s ease-out;
    }
    
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
      .hero-content-wrapper {
        gap: var(--space-lg);
      }
      
      .hero-title {
        font-size: var(--font-3xl);
      }
      
      .hero-content {
        max-width: 600px;
      }
      
      .feature-circle-1 {
        width: 200px;
        height: 200px;
        right: -80px;
      }
      
      .gradient-sphere-1,
      .gradient-sphere-2,
      .gradient-sphere-3 {
        opacity: 0.4;
      }
    }
    
    @media (max-width: 768px) {
      .container {
        padding: 0 var(--space-sm);
      }
      
      .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        min-height: calc(90vh - 70px);
        text-align: center;
      }
      
      .hero-content {
        max-width: 100%;
        order: 1;
      }
      
      .hero-visual-container {
        order: 2;
        margin-top: var(--space-lg);
      }
      
      .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
      }
      
      .btn {
        width: 100%;
      }
      
      .feature-circle-1,
      .feature-circle-2 {
        display: none;
      }
      
      .testimonials-container {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 576px) {
      .container {
        padding: 0 var(--space-xs);
      }
      
      .breadcrumbs {
        padding: var(--space-sm) 0;
      }
      
      .hero-badge {
        font-size: var(--font-xs);
        padding: var(--space-3xs) var(--space-xs);
      }
      
      .hero-title {
        font-size: var(--font-2xl);
      }
      
      .hero-subtitle {
        font-size: var(--font-sm);
      }
      
      .mesh-grid {
        opacity: 0.15;
      }
      
      .section-title h2 {
        font-size: var(--font-xl);
      }
      
      .logo-slide {
        flex: 0 0 200px;
      }
    }
/* ====== COMMON SECTION STYLES ====== */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}



.section-title h2 {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-2xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s forwards;
}

.section-title .gradient-bar {
  width: 120px;
  height: 4px;
  background: var(--multi-gradient);
  margin: 0 auto;
  border-radius: var(--radius-full);
  opacity: 0;
  transform: scaleX(0);
  animation: scaleIn 0.8s forwards 0.3s;
}



/* ====== RESEARCH AREAS SECTION ====== */
  .research-areas-section {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
  }
  
  /* Section Header */
  .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
  }
  
  .section-title {
    font-size: var(--font-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
  }
  
  .gradient-text {
    background: var(--multi-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
  }
  
  .section-subtitle {
    font-size: var(--font-md);
    color: var(--text-tertiary);
    max-width: 600px;
    margin: var(--space-sm) auto 0;
  }
  
  .gradient-bar {
    width: 120px;
    height: 4px;
    background: var(--combined-gradient);
    margin: var(--space-xs) auto;
    border-radius: var(--radius-full);
  }
  
  /* Areas Container */
  .areas-container {
    position: relative;
    z-index: 2;
  }
  
  /* Grid Layout */
  .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
  }
  
  /* Card Styling */
  .area-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all var(--transition-slow);
    height: 100%;
    z-index: 1;
  }
  
  .area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
  }
  
  .card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(1, 87, 255, 0.03), transparent 80%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
  }
  
  .area-card:hover .card-background {
    opacity: 1;
  }
  
  .card-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  
  /* Icon Styling */
  .area-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    position: relative;
  }
  
  .area-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(1, 87, 255, 0.1), rgba(255, 17, 59, 0.1));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-normal);
  }
  
  .area-card:hover .area-icon::before {
    opacity: 1;
    transform: scale(1);
  }
  
  .area-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
    transition: transform var(--transition-normal), stroke var(--transition-normal);
  }
  
  .area-card:hover .area-icon svg {
    stroke: url(#icon-gradient);
    transform: translateY(-3px);
  }
  
  /* Category Badge */
  .area-category {
    display: inline-block;
    padding: var(--space-3xs) var(--space-xs);
    font-size: var(--font-xs);
    font-weight: 500;
    color: var(--white);
    background: var(--tech-gradient-blue);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
    align-self: flex-start;
    transition: all var(--transition-normal);
  }
  
  .area-card:hover .area-category {
    background: var(--combined-gradient);
    box-shadow: var(--shadow-sm);
  }
  
  /* Title and Description */
  .area-title {
    font-size: var(--font-md);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
  }
  
  .area-card:hover .area-title {
    background: var(--multi-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .area-description {
    font-size: var(--font-sm);
    color: var(--text-tertiary);
    line-height: 1.6;
    flex-grow: 1;
  }
  
  /* Floating Elements */
  .floating-element {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(30px);
    opacity: 0.15;
  }
  
  .element-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: 10%;
    left: -50px;
    animation: float 15s infinite ease-in-out;
  }
  
  .element-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary-light);
    bottom: 15%;
    right: -30px;
    animation: float 18s infinite ease-in-out reverse;
  }
  
  .element-3 {
    width: 100px;
    height: 100px;
    background: var(--tech-accent);
    top: 60%;
    left: 10%;
    animation: float 12s infinite ease-in-out 2s;
  }
  
  .element-4 {
    width: 120px;
    height: 120px;
    background: var(--primary);
    top: 20%;
    right: 15%;
    animation: float 20s infinite ease-in-out 1s;
  }
  
  @keyframes float {
    0% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(-15px, 15px);
    }
    50% {
      transform: translate(10px, -20px);
    }
    75% {
      transform: translate(-20px, 10px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .research-areas-section {
      padding: var(--space-xl) 0;
    }
    
    
    
    .areas-grid {
      grid-template-columns: 1fr;
    }
  }

/* ====== LEADERSHIP SECTION ====== */
  /* Leadership Section Styling */
  .leadership-section {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--cool-gradient-subtle);
    overflow: hidden;
  }
  
  /* Section Header */
  .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
  }
  
  
  
  .gradient-text {
    background: var(--multi-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
  }
  
  .section-subtitle {
    font-size: var(--font-md);
    color: var(--text-tertiary);
    max-width: 600px;
    margin: var(--space-sm) auto 0;
  }
  
  .gradient-bar {
    width: 120px;
    height: 4px;
    background: var(--combined-gradient);
    margin: var(--space-xs) auto;
    border-radius: var(--radius-full);
  }
  
  /* Leadership Tabs */
  .leadership-tabs {
    margin-bottom: var(--space-xl);
  }
  
  .tab-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
  }
  
  .tab-button {
    padding: var(--space-xs) var(--space-md);
    background: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--combined-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
  }
  
  .tab-button:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .tab-button:hover::before {
    opacity: 1;
  }
  
  .tab-button.active {
    color: var(--white);
    box-shadow: var(--shadow-md);
  }
  
  .tab-button.active::before {
    opacity: 1;
  }
  
  /* Leadership Grid */
  .leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
  }
  
  /* Leadership Card */
  .leadership-card {
  position: relative;
  min-height: 630px;
  height: auto;
  perspective: 1000px;
  transition: transform 0.3s ease;
}
  
  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .leadership-card.flipped .card-inner {
    transform: rotateY(180deg);
  }
  
  .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--white);
  }
  
  .card-back {
    transform: rotateY(180deg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
  }
  
  /* Leader Image */
  .leader-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
  }
  
  .leader-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-normal);
  }
  
  .leadership-card:hover .leader-image {
    transform: scale(1.05);
  }
  
  .leader-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
  }
  
  /* Leader Content */
  .leader-content {
    padding: var(--space-md);
  }
  
  .leader-name {
    font-size: var(--font-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-2xs);
    font-weight: 600;
  }
  
  .leadership-card:hover .leader-name {
    background: var(--combined-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .leader-title {
    font-size: var(--font-sm);
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-weight: 500;
  }
  
  /* Leader Expertise */
  .leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xs);
    margin-top: var(--space-sm);
  }
  
  .expertise-tag {
    font-size: var(--font-xs);
    padding: var(--space-3xs) var(--space-xs);
    background: var(--neutral-100);
    color: var(--text-tertiary);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
  }
  
  .leadership-card:hover .expertise-tag {
    background: rgba(1, 87, 255, 0.1);
    color: var(--primary);
  }
  
  /* Bio Toggle */
  .bio-toggle {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    z-index: 2;
    animation: pulse 2s infinite;
  }
  
  .bio-toggle::after {
    content: 'Click';
    position: absolute;
    top: -25px;
    right: 0;
    font-size: var(--font-xs);
    color: var(--primary);
    background: var(--white);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    opacity: 0;
    transform: translateY(5px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    pointer-events: none;
  }
  
  .leadership-card:hover .bio-toggle::after {
    opacity: 1;
    transform: translateY(0);
  }
  
  .bio-toggle:hover {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
    animation: none;
  }
  
  .bio-toggle svg {
    animation: bounce 1.5s infinite;
  }
  
  .bio-toggle.back {
    background: var(--primary);
    color: var(--white);
    animation: none;
  }
  
  .bio-toggle.back:hover {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
  }
  
  .bio-toggle.back svg {
    animation: bounce-up 1.5s infinite;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(1, 87, 255, 0.7);
    }
    70% {
      box-shadow: 0 0 0 8px rgba(1, 87, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(1, 87, 255, 0);
    }
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(3px);
    }
    60% {
      transform: translateY(1px);
    }
  }
  
  @keyframes bounce-up {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-3px);
    }
    60% {
      transform: translateY(-1px);
    }
  }
  
  /* Back Content */
  .back-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .leader-bio {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
  }
  
  .leader-achievements {
    font-size: var(--font-sm);
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-style: italic;
  }
  
  .leader-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: auto;
    flex-direction: column;
    position: absolute;
    right: 10px;
    top: 50%;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--neutral-100);
    color: var(--primary);
    border-radius: 50%;
    transition: all var(--transition-normal);
  }
  
  .social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
  }
  
  .social-link svg {
    width: 16px;
    height: 16px;
  }
  
  /* Decorative Elements */
  .decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
  }
  
  .circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(1, 87, 255, 0.1);
    top: -50px;
    left: -100px;
  }
  
  .circle-2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 17, 59, 0.1);
    bottom: -50px;
    right: -80px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .leadership-section {
      padding: var(--space-xl) 0;
    }
    
    
    
    .leadership-grid {
      grid-template-columns: 1fr;
      max-width: 350px;
      margin: 0 auto;
    }
    
    .tab-buttons {
      flex-direction: row;
      overflow-x: auto;
      padding-bottom: var(--space-sm);
    }
    
    .tab-button {
      flex: 0 0 auto;
    }
  }


/* Success Story Section */
        .success-story {
            padding: var(--space-3xl) 0;
            background: var(--tech-dark-gradient);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .success-story::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 30%);
            z-index: 0;
        }
        
        .success-story .container {
            position: relative;
            z-index: 1;
        }

        .success-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-lg);
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        @media (max-width: 768px) {
            .success-card {
                grid-template-columns: 1fr;
            }
        }

        .success-content {
            padding: var(--space-lg);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .success-title {
            color: var(--white);
            margin-bottom: var(--space-sm);
            font-size: var(--font-lg);
            position: relative;
            display: inline-block;
            padding-bottom: var(--space-xs);
        }
        
        .success-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: var(--tech-gradient-neo);
            border-radius: var(--radius-full);
        }

        .success-company {
            font-size: var(--font-sm);
            color: var(--tech-accent);
            margin-bottom: var(--space-md);
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            font-weight: 600;
        }

        .success-metric {
            font-size: var(--font-xl);
            font-weight: 700;
            margin-bottom: var(--space-md);
            background: var(--tech-gradient-purple);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
            display: inline-block;
        }

        .success-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: var(--space-lg);
        }

        .success-image {
            background-color: rgba(255, 255, 255, 0.05);
            display: flex;
            /*align-items: center;*/
            justify-content: center;
            min-height: 300px;
            position: relative;
            overflow: hidden;
        }
        
        .success-image img {
            max-width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .success-image:hover img {
            transform: scale(1.05);
        }
        
        .success-testimonial {
            position: relative;
            margin-top: var(--space-md);
            padding: var(--space-md);
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-md);
            border-left: 3px solid var(--tech-accent);
        }
        
        .success-testimonial::before {
            content: '\201C';
            position: absolute;
            top: -30px;
            left: -10px;
            font-size: 60px;
            font-family: Georgia, serif;
            color: var(--tech-accent);
            opacity: 0.5;
        }
        .success-swiper {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
  /* Smart Decisions Section Styling */
  .smart-decisions-section {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--cool-gradient-subtle);
    overflow: hidden;
  }
  
  /* Section Header */
  .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
  }
  
  
  
  .gradient-text {
    background: var(--multi-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
  }
  
  .section-subtitle {
    font-size: var(--font-md);
    color: var(--text-tertiary);
    max-width: 600px;
    margin: var(--space-sm) auto 0;
  }
  
  .gradient-bar {
    width: 120px;
    height: 4px;
    background: var(--combined-gradient);
    margin: var(--space-xs) auto;
    border-radius: var(--radius-full);
  }
  
  /* Tab Navigation */
  .tab-container {
    position: relative;
    margin-top: var(--space-xl);
  }
  
  .tab-navigation {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    position: relative;
    flex-wrap: wrap;
  }
  
  .tab-button {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border: none;
    background: var(--white);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    font-size: var(--font-base);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--combined-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
  }
  
  .tab-button:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  
  .tab-button:hover::before {
    opacity: 1;
  }
  
  .tab-button.active {
    color: var(--white);
    box-shadow: var(--shadow-md);
  }
  
  .tab-button.active::before {
    opacity: 1;
  }
  
  .tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
  }
  
  .tab-icon svg {
    width: 100%;
    height: 100%;
    transition: stroke var(--transition-normal);
  }
  
  .tab-button:hover .tab-icon svg,
  .tab-button.active .tab-icon svg {
    stroke: var(--white);
  }
  
  /* Tab Content */
  .tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
  }
  
  .tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .tab-header {
    text-align: center;
    margin-bottom: var(--space-lg);
  }
  
  .tab-title {
    font-size: var(--font-lg);
    background: var(--tech-gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--space-xs);
    font-weight: 700;
  }
  
  .tab-description {
    font-size: var(--font-base);
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Column Layout */
  .three-column-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
  }
  
  .column-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .column-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--combined-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
    z-index: -1;
  }
  
  .column-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
  }
  
  .column-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  /* Icon Styling */
  .column-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-md);
  }
  
  .column-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cool-gradient-blue);
    border-radius: var(--radius-full);
    padding: var(--space-sm);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .column-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--combined-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
  }
  
  .column-card:hover .column-icon::before {
    opacity: 1;
  }
  
  .column-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
    transition: stroke var(--transition-normal);
  }
  
  .column-card:hover .column-icon svg {
    stroke: var(--white);
  }
  
  /* Card Content */
  .column-title {
    font-size: var(--font-md);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  
  .column-description {
    font-size: var(--font-sm);
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
  }
  
  /* Stats Section */
  .card-stats {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    margin: var(--space-sm) 0 var(--space-md);
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
  }
  
  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .stat-value {
    font-size: var(--font-lg);
    font-weight: 700;
    background: var(--combined-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .stat-label {
    font-size: var(--font-xs);
    color: var(--text-tertiary);
    margin-top: var(--space-3xs);
  }
  
  
  
  /* Decorative Elements */
  .section-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.3;
  }
  
  .orb-left {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    top: -100px;
    left: -200px;
  }
  
  .orb-right {
    width: 300px;
    height: 300px;
    background: var(--secondary-light);
    bottom: -100px;
    right: -150px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .smart-decisions-section {
      padding: var(--space-xl) 0;
    }
    
    .section-title {
      font-size: var(--font-xl);
    }
    
    .tab-navigation {
      flex-direction: column;
      align-items: center;
    }
    
    .tab-button {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
    
    .three-column-layout {
      grid-template-columns: 1fr;
    }
  }
/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.logo-circle {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 5px;
    margin-left: 4px;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background-color: var(--neutral-200);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar {
    height: 100%;
    width: 0;
    background: var(--combined-gradient);
    transition: width 0.2s;
}

/* Cursor effect */
.cursor-dot, .cursor-circle {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: var(--z-tooltip);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 10px rgba(1, 87, 255, 0.5);
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.cursor-dot.active, .cursor-circle.active {
    opacity: 1;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}