/* Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
    margin: 0;
    padding: 0;
}

  :root {
  /* Galaxy-Inspired Color System */
  --space-900: #0a0a0f;          /* Deepest space */
  --space-800: #0f0f1a;          /* Dark space */
  --space-700: #1a1a2e;          /* Medium space */
  --space-600: #16213e;          /* Lighter space */
  --space-500: #0f3460;          /* Even lighter */
  
  /* Bright Orange - WCAG Compliant */
  --orange-primary: #FF6B35;     /* Bright orange for better contrast */
  --orange-light: #FF8A65;       /* Light orange */
  --orange-dark: #E55A2B;        /* Dark orange */
  --orange-accent: #FFB74D;      /* Accent orange */
  --orange-glow: rgba(255, 107, 53, 0.3);
  
  /* Galaxy Text Colors - High Contrast */
  --text-primary: #ffffff;       /* Pure white */
  --text-secondary: #e2e8f0;     /* Light gray */
  --text-muted: #94a3b8;         /* Muted gray */
  --text-subtle: #64748b;        /* Subtle gray */
  
  /* Galaxy Background System */
  --bg-primary: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f172a 100%);
  --bg-secondary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --bg-surface: rgba(15, 23, 42, 0.6);
  --bg-glass: rgba(26, 26, 46, 0.3);
  
  /* Galaxy Effects */
  --star-field: radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.4), transparent),
                radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.3), transparent),
                radial-gradient(0.5px 0.5px at 90px 40px, rgba(255,255,255,0.5), transparent),
                radial-gradient(0.5px 0.5px at 130px 80px, rgba(255,255,255,0.3), transparent);
  
  /* Semantic Colors */
  --primary-color: var(--orange-primary);
  --primary-light: var(--orange-light);
  --primary-dark: var(--orange-dark);
  --accent-color: var(--orange-light);
  
  /* Galaxy Background System */
  --dark-bg: var(--space-900);
  --dark-surface: var(--space-800);
  --dark-surface-2: var(--space-700);
  --dark-text: var(--text-primary);
  --dark-text-secondary: var(--text-secondary);
  
  /* Surface colors */
  --surface: var(--dark-surface);
  --background: var(--dark-bg);
  --text-primary: var(--dark-text);
  --text-secondary: var(--dark-text-secondary);
  --text-on-primary: #ffffff;
  
  /* Elevation */
  --elevation-1: 0 4px 20px rgba(0, 0, 0, 0.3);
  --elevation-2: 0 8px 30px rgba(0, 0, 0, 0.4);
  --elevation-3: 0 12px 40px rgba(0, 0, 0, 0.5);
  --elevation-4: 0 16px 50px rgba(0, 0, 0, 0.6);
  
  /* Border Radius */
  --border-radius-small: 8px;
  --border-radius-medium: 16px;
  --border-radius-large: 24px;
  --border-radius-xl: 32px;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  
  /* Animation */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Fonts */
  --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  font-family: var(--font-family);
  color: white;
  background: #0F172A;
  background-image: var(--star-field);
  background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px;
     line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
  animation: starfield-move 20s linear infinite;
}

html {
  color: white;
  scroll-behavior: smooth;
}

/* Enhanced smooth scrolling and page flow */
* {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Galaxy Animation Keyframes */
@keyframes starfield-move {
  0% { background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px; }
  25% { background-position: 100px 100px, -150px 150px, 75px -75px, -125px 125px; }
  50% { background-position: 200px 200px, -300px 300px, 150px -150px, -250px 250px; }
  75% { background-position: 300px 300px, -450px 450px, 225px -225px, -375px 375px; }
  100% { background-position: 400px 400px, -600px 600px, 300px -300px, -500px 500px; }
}

@keyframes starfield-twinkle {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

@keyframes galaxy-drift {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(8px) translateY(-4px); }
  50% { transform: translateX(0) translateY(0); }
  75% { transform: translateX(-8px) translateY(4px); }
  100% { transform: translateX(0) translateY(0); }
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: var(--spacing-m);
  font-weight: 600;
    line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 4rem;
  margin-bottom: var(--spacing-l);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(110, 86, 207, 0.3);
}

h2 {
    font-size: 2.5rem;
  color: var(--primary-light);
  position: relative;
}

h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
}

p {
  margin-bottom: var(--spacing-m);
}

a {
  color: #03a9f4;
    text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #7e57c2;
  text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  padding: 0 var(--spacing-l);
}

/* Animated Links */
.learn-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  color: var(--secondary-color);
  padding: 4px 0;
}

.learn-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.learn-more:hover::after {
  transform: scaleX(1);
}

.learn-more:hover {
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

/* Glass Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-normal);
  background: linear-gradient(180deg, #0F172A, #1E293B);
  border-bottom: 1px solid rgba(249, 115, 22, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
  height: 60px;
  filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.5));
}

.logo span {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.desktop-nav ul {
    display: flex;
  list-style: none;
  align-items: center;
  height: 100%;
}

.desktop-nav li {
  margin-left: var(--spacing-xl);
  height: 100%;
  display: flex;
  align-items: center;
}

.desktop-nav a {
    font-weight: 500;
  position: relative;
  padding: var(--spacing-xs) 0;
  color: var(--text-primary);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.desktop-nav a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.desktop-nav a.active {
  color: var(--secondary-color);
}

.desktop-nav a.active::after {
  transform: scaleX(1);
}

.mobile-menu-btn {
    display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
    cursor: pointer;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition-fast);
}

.mobile-nav {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(15, 14, 23, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  transition: var(--transition-slow);
  box-shadow: var(--elevation-2);
  padding: var(--spacing-l);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: var(--spacing-l);
}

.mobile-nav a {
  font-size: 1.4rem;
    font-weight: 500;
  color: var(--text-primary);
  display: block;
  padding: var(--spacing-s) 0;
}

.mobile-nav a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
  background: #0F172A;
  background-image: var(--star-field);
  background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: galaxy-drift 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 0%, rgba(249, 115, 22, 0.02) 50%, transparent 100%),
    linear-gradient(-45deg, transparent 0%, rgba(249, 115, 22, 0.01) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  animation: galaxy-drift 8s ease-in-out infinite reverse;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(10, 10, 40, 0.6), rgba(10, 10, 40, 0.8)), url('images/Header.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  animation: fadeInUp 1s ease-out;
  text-align: left;
  margin: 0;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 8px 30px rgba(0, 0, 0, 0.9), 0 0 0 2px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 6px 20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--elevation-2);
  border: none;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease-out;
  z-index: -1;
}

.btn:hover {
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
  transform: translateY(-3px);
}

.btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.primary-btn {
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  color: var(--text-on-primary);
}

.primary-btn:hover {
  background-image: linear-gradient(90deg, #EA580C, #DC2626);
  color: #FFFFFF;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--text-on-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.6);
  color: #FFFFFF;
}

/* Section Styling */
section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  margin-bottom: var(--spacing-m);
  position: relative;
  display: inline-block;
  padding-bottom: var(--spacing-m);
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
}

.section-header p {
  max-width: 700px;
  margin: var(--spacing-m) auto;
  color: var(--text-secondary);
    font-size: 1.2rem;
}

/* AI Agents Section */
.ai-agents {
    padding: 80px 0;
  background: linear-gradient(135deg, #0a0a1a, #1a1a2a);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ai-agents::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(64, 84, 178, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(78, 84, 200, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.ai-agents .container {
  position: relative;
  z-index: 2;
}

.ai-agents .section-header {
  margin-bottom: 50px;
  text-align: center;
}

.ai-agents .section-header h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.ai-agents .section-header .arrow-text {
  color: #6a78ff;
  display: inline-block;
  transform: translateY(2px);
}

.ai-agents .section-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

/* AI Agents Carousel */
.carousel-section {
    padding: 40px 0;
    background-color: #f5f7fa;
    overflow: hidden;
}

.carousel-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.carousel-container {
    position: relative;
    padding: 40px 0 60px;
    margin: 0 auto;
    max-width: 1000px;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

.carousel-track {
    position: relative;
    height: 460px;
    margin: 0 auto;
    transform-style: flat;
    -webkit-transform-style: flat;
}

.agent-card {
    position: absolute;
    width: 300px;
    background: rgba(26, 25, 39, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(110, 86, 207, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 0;
    overflow: hidden;
    transform-origin: center;
    -webkit-transform-origin: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transition: transform 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s ease-out;
    -webkit-transition: -webkit-transform 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s ease-out;
    will-change: transform, opacity;
    left: 50%;
    margin-left: -150px;
    top: 0;
}

.agent-card.active {
    z-index: 10;
    transform: translate3d(0, 0, 0) scale(1) !important;
    -webkit-transform: translate3d(0, 0, 0) scale(1) !important;
    background: rgba(30, 30, 50, 0.85);
    border: 1px solid rgba(110, 86, 207, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(110, 86, 207, 0.2);
    filter: brightness(1.1);
    -webkit-filter: brightness(1.1);
}

.agent-card:not(.active) {
    filter: brightness(0.7);
    -webkit-filter: brightness(0.7);
    cursor: pointer;
}

.agent-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    padding-top: 30px;
    background: linear-gradient(135deg, rgba(26, 25, 39, 0.8), rgba(30, 30, 50, 0.9));
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.agent-icon {
    font-size: 40px;
    color: #4a6cf7;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    will-change: transform;
    filter: drop-shadow(0 0 10px rgba(74, 108, 247, 0.6));
    -webkit-filter: drop-shadow(0 0 10px rgba(74, 108, 247, 0.6));
}

.agent-card.active .agent-icon {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(74, 108, 247, 0.8));
    -webkit-filter: drop-shadow(0 0 15px rgba(74, 108, 247, 0.8));
}

.agent-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.agent-card p {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
    line-height: 1.4;
}

.carousel-navigation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.carousel-button {
    background: rgba(74, 108, 247, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #4a6cf7;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    outline: none;
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
}

.carousel-button:hover {
    background: rgba(74, 108, 247, 0.2);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    max-width: 100%;
    overflow: hidden;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.carousel-dot.active {
    background: #4a6cf7;
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
}

/* Show only the first 6 dots on mobile */
@media screen and (max-width: 768px) {
    .carousel-dot:nth-child(n+7) {
        display: none;
    }
    
    .carousel-dot {
        margin: 0 4px;
    }
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .carousel-container {
        padding: 30px 0 60px;
    }
    
    .carousel-track {
        height: 430px;
    }
    
    .agent-card {
        width: 260px;
        margin-left: -130px;
    }
    
    .agent-icon-wrapper {
        min-height: 120px;
    }
    
    .agent-content {
        padding: 15px;
    }
    
    .carousel-button {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .carousel-container {
        padding: 20px 0 50px;
    }
    
    .carousel-track {
        height: 400px;
    }
    
    .agent-card {
        width: 240px;
        margin-left: -120px;
    }
    
    .agent-icon-wrapper {
        min-height: 100px;
        padding-top: 20px;
    }
    
    .agent-content {
        padding: 12px;
    }
    
    .agent-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .agent-description {
        font-size: 13px;
        max-height: 110px;
    }
}

/* Compatibility fixes for Safari, iOS, and older browsers */
@supports (-webkit-touch-callout: none) {
    /* iOS specific fixes */
    .carousel-track {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    
    .agent-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Workaround for Android browser issues */
@supports (overflow:-webkit-marquee) and (justify-content:inherit) {
    .carousel-container {
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    .agent-card {
        transition: -webkit-transform 0.4s ease-out, transform 0.4s ease-out;
    }
}

/* How It Works Section */
.how-it-works {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  color: var(--text-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.9) 100%);
  z-index: 1;
}

.how-it-works .container {
  position: relative;
  z-index: 2;
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-it-works .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #F97316, #EA580C);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.how-it-works .section-header p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.how-it-works-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.mockup-showcase {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-mockup-main {
    max-width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(249, 115, 22, 0.2);
}

.app-mockup-main:hover {
    transform: translateY(-10px);
}

.steps-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-vertical {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-text {
    flex: 1;
}

.step {
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(90, 90, 120, 0.3);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(122, 104, 255, 0.5);
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #F97316, #EA580C);
  color: white;
  width: 60px;
  height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
  align-items: stretch;
}

.service-card {
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(90, 90, 120, 0.3);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(122, 104, 255, 0.5);
}

.service-icon-wrapper {
  margin-bottom: 20px;
}

.service-icon {
  font-size: 2rem;
  color: #4f46e5;
  margin-bottom: 15px;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.service-description {
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-description p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.service-cta {
  margin-top: auto;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}

.stat-card {
  background: rgba(26, 25, 39, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-large);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 86, 207, 0.3);
  box-shadow: 0 10px 30px rgba(110, 86, 207, 0.2);
}

/* Platform Showcase - Apple Style */
.platform-showcase {
  display: flex;
  gap: 80px;
  align-items: center;
  margin: 60px 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.platform-mockup {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}

.platform-mockup-img {
  max-width: 280px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(110, 86, 207, 0.4);
  transition: transform 0.3s ease;
}

.platform-mockup-img:hover {
  transform: translateY(-5px);
}

.agents-vertical-carousel {
  flex: 1;
  position: relative;
}

.agents-carousel-container {
  height: 500px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  background: rgba(15, 14, 23, 0.5);
  backdrop-filter: blur(10px);
}

.agents-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.5s ease;
}

.agent-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  min-height: 120px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.agent-item:hover {
  background: rgba(110, 86, 207, 0.1);
  transform: translateX(10px);
}

.agent-item.active {
  background: rgba(110, 86, 207, 0.2);
  border-left: 4px solid #6e56cf;
}

.agent-icon {
  flex: 0 0 60px;
  height: 60px;
  background: linear-gradient(45deg, #6e56cf, #00f0ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 8px 25px rgba(110, 86, 207, 0.3);
}

.agent-info h4 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.3rem;
  font-weight: 600;
}

.agent-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.carousel-indicators {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #6e56cf;
  transform: scale(1.2);
}

/* Mockup Integration Styles */
.app-mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.app-mockup-preview {
  max-width: 60px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.app-mockup-preview:hover {
  transform: scale(1.1);
}

.app-mockup-showcase {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-mockup {
  max-width: 80px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(110, 86, 207, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-mockup:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(110, 86, 207, 0.5);
}


/* Responsive styles */
@media (max-width: 992px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    width: 100%;
    max-width: 400px;
  }
  
  .how-it-works .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 0;
  }
  
  .how-it-works .section-header {
    margin-bottom: 40px;
  }
  
  .how-it-works .section-header h2 {
    font-size: 2rem;
  }
  
  .how-it-works .section-header p {
    font-size: 1rem;
  }
  
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .step h3 {
    font-size: 1.2rem;
  }
}

/* Media queries for How It Works section */
@media (max-width: 992px) {
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .how-it-works-content,
  .data-content,
  .leaders-content,
  .mission {
    flex-direction: column;
  }
  
  .steps-image,
  .data-image,
  .leaders-image,
  .mission-image,
  .steps,
  .data-text,
  .leaders-text,
  .mission-text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 140px 0 80px;
  }
  
  section {
    padding: var(--spacing-xl) 0;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 var(--spacing-m);
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .agents-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* AI Agents Compact Grid */
.agents-compact-container {
  margin: 3rem 0;
}

.agents-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.agent-compact-item {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.agent-compact-item:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.agent-compact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.agent-compact-icon i {
  font-size: 1.5rem;
  color: white;
}

.agent-compact-text h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.agent-compact-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive adjustments for agents grid */
@media (max-width: 768px) {
  .agents-compact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .agent-compact-item {
    padding: 1rem 0.75rem;
  }
  
  .agent-compact-icon {
    width: 50px;
    height: 50px;
  }
  
  .agent-compact-icon i {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .agents-compact-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* For AI Teams Section */
.ai-teams {
  padding: 80px 0;
  background: linear-gradient(135deg, #1E293B, #334155);
  position: relative;
  overflow: hidden;
}

.ai-teams::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.ai-teams-content {
  position: relative;
  z-index: 2;
}

.ai-teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.ai-teams-item {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.ai-teams-item:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.ai-teams-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.ai-teams-icon i {
  font-size: 1.5rem;
  color: white;
}

.ai-teams-text h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ai-teams-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.ai-teams-cta {
  text-align: center;
}

.ai-teams-cta .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive adjustments for AI Teams */
@media (max-width: 768px) {
  .ai-teams-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .ai-teams-item {
    padding: 1.5rem;
  }
  
  .ai-teams-icon {
    width: 70px;
    height: 70px;
  }
  
  .ai-teams-icon i {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .ai-teams {
    padding: 60px 0;
  }
  
  .ai-teams-item {
    padding: 1.25rem;
  }
  
  .ai-teams-text h3 {
    font-size: 1.25rem;
  }
  
  .ai-teams-text p {
    font-size: 0.9rem;
  }
}

/* For Employers Section */
.employers {
  padding: 80px 0;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  position: relative;
  overflow: hidden;
}

.employers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.employers-content {
  position: relative;
  z-index: 2;
}

.employers-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.employers-feature {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.employers-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.employers-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.employers-icon i {
  font-size: 1.75rem;
  color: white;
}

.employers-text h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.employers-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.employers-benefit {
  text-align: center;
  margin-bottom: 2.5rem;
}

.benefit-highlight {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.benefit-highlight h3 {
  color: #f97316;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.employers-cta {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.employers-cta .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  min-width: 180px;
}

/* Responsive adjustments for Employers */
@media (max-width: 768px) {
  .employers-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .employers-feature {
    padding: 1.5rem;
  }
  
  .employers-icon {
    width: 60px;
    height: 60px;
  }
  
  .employers-icon i {
    font-size: 1.5rem;
  }
  
  .employers-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-highlight h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .employers {
    padding: 60px 0;
  }
  
  .employers-feature {
    padding: 1.25rem;
  }
  
  .employers-text h3 {
    font-size: 1.1rem;
  }
  
  .employers-text p {
    font-size: 0.9rem;
  }
  
  .benefit-highlight {
    padding: 1.5rem;
  }
}

/* Worker Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #1E293B, #334155);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-content {
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-item {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(249, 115, 22, 0.3);
  font-family: serif;
  line-height: 1;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.testimonial-quote {
  margin-bottom: 1.5rem;
}

.testimonial-quote p {
  color: #ffffff;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  color: #f97316;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-location {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 400;
}

/* Responsive adjustments for Testimonials */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-item {
    padding: 1.5rem;
  }
  
  .testimonial-item::before {
    font-size: 3rem;
    top: -5px;
    left: 15px;
  }
  
  .testimonial-quote p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonial-item {
    padding: 1.25rem;
  }
  
  .testimonial-item::before {
    font-size: 2.5rem;
    top: 0;
    left: 10px;
  }
  
  .testimonial-quote p {
    font-size: 0.95rem;
  }
  
  .author-name {
    font-size: 0.9rem;
  }
  
  .author-location {
    font-size: 0.8rem;
  }
}

/* Blog Page Styles */
.blog-hero {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
}

.blog-hero h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 8px 30px rgba(0, 0, 0, 0.9);
}

.blog-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-articles {
  padding: 80px 0;
  background: linear-gradient(135deg, #1E293B, #334155);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.blog-card-content {
  padding: 2rem;
}

.blog-category {
  display: inline-block;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.blog-card h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.blog-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.read-time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.blog-card .btn {
  width: 100%;
  text-align: center;
}

/* Blog Post Page Styles */
.blog-post-hero {
  padding: 120px 0 60px 0;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  position: relative;
  overflow: hidden;
}

.blog-post-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.blog-post-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.blog-post-content h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 8px 30px rgba(0, 0, 0, 0.9);
}

.blog-excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.blog-post-article {
  padding: 80px 0;
  background: linear-gradient(135deg, #1E293B, #334155);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
  line-height: 1.8;
  font-size: 1.1rem;
}

.article-content p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.article-content h2 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.article-content ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.article-content li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.article-content li::before {
  content: '•';
  color: #f97316;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.article-content strong {
  color: #f97316;
  font-weight: 600;
}

.related-articles {
  padding: 60px 0;
  background: linear-gradient(135deg, #0F172A, #1E293B);
}

.related-articles h2 {
  color: #ffffff;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.related-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.related-category {
  display: inline-block;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.related-content h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Responsive blog styles */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-card-content {
    padding: 1.5rem;
  }
  
  .blog-hero {
    padding: 100px 0 60px 0;
  }
  
  .blog-articles {
    padding: 60px 0;
  }
  
  .blog-post-hero {
    padding: 100px 0 40px 0;
  }
  
  .blog-post-article {
    padding: 60px 0;
  }
  
  .article-content {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .blog-card-content {
    padding: 1.25rem;
  }
  
  .blog-card h2 {
    font-size: 1.25rem;
  }
  
  .blog-card p {
    font-size: 0.9rem;
  }
}

/* Additional futuristic components */

/* Glass cards */
.glass-card {
  background: rgba(26, 25, 39, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-large);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--elevation-2);
  transition: var(--transition-normal);
}

.glass-card:hover {
  border: 1px solid rgba(110, 86, 207, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(110, 86, 207, 0.2);
}

/* Neon text */
.neon-text {
  color: var(--secondary-color);
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3);
}

/* Glow effect */
.glow {
  animation: glow 3s infinite;
}

/* Floating animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Pulse effect */
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 240, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
  }
}

/* Ripple effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.8s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* FAQ Styles */
.faq-section {
  padding: 120px 0 80px;
  background-color: var(--dark-bg);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item, .privacy-section-item, .terms-section-item {
  margin-bottom: 15px;
  border: 1px solid rgba(126, 87, 194, 0.1);
    border-radius: 10px;
  background: rgba(15, 15, 25, 0.6);
    overflow: hidden;
}

.faq-question, .privacy-section-header, .terms-section-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(15, 15, 25, 0.6);
  font-weight: 500;
  color: #f0f0f0;
}

.faq-question i, .privacy-section-header i, .terms-section-header i {
  color: #03a9f4;
  margin-right: 15px;
  font-size: 24px;
}

.faq-answer, .privacy-section-content, .terms-section-content {
  padding: 0 20px 20px 60px;
  color: #d0d0d0;
  line-height: 1.6;
}

/* Remove problematic transition and max-height properties */
.faq-answer, .privacy-section-content, .terms-section-content {
    display: block;
  opacity: 1;
  visibility: visible;
}

.faq-answer p, .privacy-section-content p, .terms-section-content p {
  margin-bottom: 15px;
  color: #d0d0d0;
}

.faq-answer ul, .privacy-section-content ul, .terms-section-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.faq-answer li, .privacy-section-content li, .terms-section-content li {
  margin-bottom: 8px;
  color: #d0d0d0;
}

/* Custom sections */
.data-section,
.leaders-section {
  background: linear-gradient(rgba(15, 14, 23, 0.9), rgba(15, 14, 23, 0.95)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%236e56cf" stroke-width="0.5" stroke-opacity="0.05"/></svg>');
  background-size: 50px 50px;
}

.data-content,
.leaders-content,
.mission {
  position: relative;
  z-index: 1;
}

.data-image,
.leaders-image,
.mission-image {
  border-radius: var(--border-radius-large);
    overflow: hidden;
  box-shadow: var(--elevation-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-image::before,
.leaders-image::before,
.mission-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
    width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(110, 86, 207, 0.2), rgba(0, 240, 255, 0.2));
  z-index: 1;
}

.data-image img,
.leaders-image img,
.mission-image img {
  filter: brightness(0.9) saturate(1.2);
  transition: transform var(--transition-slow);
}

.data-image:hover img,
.leaders-image:hover img,
.mission-image:hover img {
  transform: scale(1.03);
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.feature {
  background: rgba(26, 25, 39, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-large);
  padding: var(--spacing-l);
    text-align: center;
  transition: var(--transition-normal);
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(110, 86, 207, 0.2);
  border: 1px solid rgba(110, 86, 207, 0.3);
}

.feature i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--spacing-m);
}

.feature h4 {
  color: var(--secondary-color);
  margin-bottom: var(--spacing-s);
}

.feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive adjustments for these sections */
@media (max-width: 992px) {
  .data-content,
  .leaders-content,
  .mission {
    flex-direction: column;
    gap: 30px;
  }
  
  .data-image,
  .leaders-image,
  .mission-image,
  .data-text,
  .leaders-text,
  .mission-text {
    width: 100%;
  }
  
  .leaders-content {
    flex-direction: column;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .how-it-works-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .app-mockup-main {
    max-width: 220px;
  }
  
  .platform-showcase {
    flex-direction: column;
    gap: 40px;
  }
  
  .platform-mockup {
    flex: none;
  }
  
  .platform-mockup-img {
    max-width: 250px;
  }
  
  .agents-carousel-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .data,
  .leaders,
  .about {
    padding: 60px 0;
  }
  
  .mission {
    margin-bottom: 40px;
}

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .data-text,
  .leaders-text,
  .mission-text,
  .delivers,
.feature {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Update footer branding as well */
footer .logo-img {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  transition: 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(110, 86, 207, 0.5));
}

.mission {
    display: flex;
  flex-direction: column;
    align-items: center;
  margin-bottom: 70px;
  position: relative;
}

.mission-text {
  width: 100%;
  padding: 30px;
  background: rgba(30, 30, 50, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: all 0.3s ease;
  text-align: center;
}

.mission-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(110, 86, 207, 0.3);
  border-color: rgba(110, 86, 207, 0.3);
}

.data-text {
  flex: 1;
  padding: 30px;
  background: rgba(30, 30, 50, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.data-text.full-width {
  width: 100%;
  max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.leaders-text.full-width {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: rgba(30, 30, 50, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #0F172A, #1E293B);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Footer Banners */
.footer-banners {
  background: linear-gradient(135deg, #1E293B, #334155);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.footer-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-banner {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-banner:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.banner-text h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.banner-text h3 i {
  color: #f97316;
  font-size: 1.1rem;
}

.banner-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

.banner-cta .btn {
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* Footer Main Content */
.footer-main {
  padding: 3rem 0 2rem 0;
  background: #0F172A;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo .logo-img {
  max-width: 140px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.3));
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #f97316;
  transform: translateY(-2px);
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #f97316, #ea580c);
  border-radius: 2px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #f97316;
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(249, 115, 22, 0.2);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-banner-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-sections {
    grid-template-columns: 1fr;
  }
  
  .footer-banner {
    padding: 1.5rem;
  }
  
  .banner-text h3 {
    font-size: 1.1rem;
  }
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23ffffff" stroke-width="0.5" stroke-opacity="0.03"/></svg>');
  background-size: 50px 50px;
  opacity: 0.4;
  pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.footer-column h3 {
  color: white;
  margin-bottom: var(--spacing-m);
    font-size: 1.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: var(--spacing-s);
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: var(--spacing-s);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
  display: inline-block;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
    text-decoration: none;
}

.copyright {
    text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--spacing-l);
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.coming-soon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 84, 84, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.agent-content {
    padding: 20px;
    position: relative;
}

.agent-title {
    margin: 0 0 15px;
    font-size: 20px;
    color: white;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(90deg, #ffffff, #00f0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.agent-card.active .agent-title {
    background: linear-gradient(90deg, #ffffff, #6e56cf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(110, 86, 207, 0.3);
}

.agent-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
    max-height: 120px;
    overflow-y: auto;
}

/* Mobile responsive styles for carousel */
@media screen and (max-width: 768px) {
    .carousel-container {
        padding: 20px 0 60px;
        overflow: visible;
        max-width: 100%;
    }
    
    .carousel-track {
        height: 480px;
        overflow: visible;
    }
    
    .agent-card {
        width: 280px;
        max-width: 85vw;
    }
    
    .agent-card.active {
        transform: translateZ(60px) !important;
    }
    
    .agent-icon-wrapper {
        min-height: 120px;
        padding-top: 20px;
    }
    
    .agent-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .agent-content {
        padding: 15px;
    }
    
    .agent-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .carousel-navigation {
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .carousel-track {
        height: 450px;
    }
    
    .agent-card {
        width: 260px;
        max-width: 85vw;
    }
    
    .agent-icon-wrapper {
        min-height: 100px;
    }
    
    .agent-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Additional specific fixes for iPhone and iOS devices */
@media screen and (max-width: 428px) {
    .carousel-container {
        padding: 30px 0 70px;
        overflow: hidden;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        -webkit-perspective: 1000;
        perspective: 1000;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .carousel-track {
        height: 420px;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
    }
    
    .agent-card {
        width: 240px;
        max-width: 90vw;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    
    .agent-card.active {
        transform: translate3d(0, 0, 30px) !important;
        -webkit-transform: translate3d(0, 0, 30px) !important;
    }
    
    .agent-icon-wrapper {
        min-height: 110px;
        padding-top: 20px;
    }

    .agent-content {
        padding: 12px;
    }
    
    .agent-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .agent-description {
        font-size: 13px;
        max-height: 105px;
    }
}

/* iPhone 13 specific fixes (390x844) */
@media screen and (device-width: 390px), 
       screen and (device-width: 428px),
       screen and (device-width: 375px) {
    .carousel-container {
        width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .carousel-track {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    /* Force hardware acceleration */
    .agent-card {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        will-change: transform, opacity;
    }
    
    /* Reduce the amount of transform for more stability */
    .carousel-button {
        transform: none !important;
        font-size: 16px;
        width: 36px;
        height: 36px;
    }
}

/* Countdown Timer Styles */
.download-timer {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-variant));
    border-radius: var(--border-radius-medium);
    text-align: center;
    box-shadow: var(--elevation-2);
}

.timer-text {
    color: var(--text-on-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: var(--border-radius-small);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.time-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-on-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.time-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Mobile responsiveness for timer */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .time-number {
        font-size: 24px;
    }
    
    .time-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        padding: 10px 12px;
        min-width: 60px;
    }
    
    .time-number {
        font-size: 20px;
    }
    
    .time-label {
        font-size: 9px;
    }
}

/* Download CTA Button Styling */
.download-cta {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.download-cta:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  color: white !important;
}

.download-cta i {
  font-size: 0.9rem;
}

/* Mobile download CTA adjustments */
@media (max-width: 768px) {
  .mobile-nav .download-cta {
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }
}

/* Coming Soon Popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #0F172A, #1E293B);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.popup-content h3 {
  color: var(--orange-primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.popup-content p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: var(--orange-primary);
}

/* Employer Form Popup Styles */
.employer-form-popup {
  max-width: 500px;
  width: 90%;
}

.contact-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-light);
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .btn {
  width: 100%;
  margin-top: 10px;
}

/* Privacy Policy Table Styles */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table th {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
  font-weight: 600;
  font-size: 0.9rem;
}

.data-table td {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.data-table tr:hover {
  background: rgba(249, 115, 22, 0.05);
}

@media (max-width: 768px) {
  .data-table {
    font-size: 0.8rem;
  }
  
  .data-table th,
  .data-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Timer in popup */
.popup-content .download-timer {
  margin: 1.5rem 0;
}

.popup-content .timer-text {
  color: #f97316;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.popup-content .countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.popup-content .time-unit {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  min-width: 70px;
}

.popup-content .time-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 0.25rem;
}

.popup-content .time-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
