/* Optimized Main Stylesheet - Sleek Modern Design
   Condensed for performance and SEO
   ========================================================================== */

   :root {
    /* Color palette */
    --primary: #121026;
    --primary-light: #1c1a36;
    --secondary: #00f7ff;
    --accent: #ff3e78;
    --accent2: #a651ff;
    --dark-gray: #333340;
    --light-gray: #1a1830;
    --white: #f0f2ff;
    --text-color: #e0e6ff;
    --text-secondary: #a0a8dd;
    --border-color: #2d2b4a;
    --card-bg: #272642;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--secondary) 0%, var(--accent2) 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Effects */
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --neon-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
    --radius: 12px;
    --transition: 0.3s ease;
  }
  
  /* Reset & Base */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-gray);
    padding-top: 80px;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
  }
  
  h1 { font-size: 3.5rem; font-weight: 800; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.4rem; }
  
  p { 
    margin-bottom: 1.25rem;
    color: var(--text-color); 
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  ul { list-style: none; }
  
  .container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  /* Utility Classes */
  .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .bg-light { background-color: var(--light-gray); }
  .bg-dark { background-color: var(--primary); color: var(--white); }
  
  section { padding: 6rem 0; }
  
  /* Header & Navigation */
  .header {
    background-color: rgba(18, 16, 38, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 247, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 247, 255, 0.2);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
  }
  
  .logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .nav-menu {
    display: flex;
    gap: 2.5rem;
  }
  
  .nav-menu li a {
    color: var(--white);
    font-weight: 600;
    position: relative;
  }
  
  .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    opacity: 0;
  }
  
  .nav-menu li a:hover,
  .nav-menu li a.active {
    color: var(--secondary);
  }
  
  .nav-menu li a:hover::after,
  .nav-menu li a.active::after {
    width: 100%;
    opacity: 1;
  }
  
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--secondary);
    margin: 5px 0;
  }
  
  /* Hero Section */
  .hero {
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding: 10rem 0 6rem;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(166, 81, 255, 0.3) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(0, 247, 255, 0.3) 0%, transparent 40%);
    z-index: 1;
  }
  
  .hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
  }
  
  .hero-content {
    width: 50%;
    animation: fadeIn 1s ease-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }
  
  .hero h1 span {
    display: block;
    margin-top: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--neon-shadow);
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1.5rem;
  }
  
  .hero-image {
    width: 45%;
    position: relative;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
  }
  
  .hero-image img {
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 247, 255, 0.2);
    border: 1px solid rgba(0, 247, 255, 0.2);
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
  }
  
  .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
  }
  
  .wheel {
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease infinite;
  }
  
  @keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.95rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
  }
  
  .btn-primary {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 247, 255, 0.15), 0 0 15px rgba(0, 247, 255, 0.1);
  }
  
  .btn-primary:hover {
    box-shadow: 0 15px 25px rgba(0, 247, 255, 0.25), 0 0 20px rgba(0, 247, 255, 0.15);
    transform: translateY(-3px);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
  }
  
  .btn-outline:hover {
    background-color: rgba(0, 247, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
  }
  
  /* Services Section */
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .section-tag {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 247, 255, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .section-tag i {
    margin-right: 0.5rem;
  }
  
  /* Grid layouts for different sections */
  .services-grid, 
  .stats-grid,
  .difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
  }
  
  /* Card styles */
  .service-card, 
  .stat-card, 
  .difference-item {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 247, 255, 0.1);
  }
  
  .service-card:hover, 
  .stat-card:hover, 
  .difference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 247, 255, 0.1);
    border-color: var(--secondary);
  }
  
  /* Icon containers */
  .service-icon,
  .stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
  }
  
  .service-icon {
    background: rgba(0, 247, 255, 0.1);
    border-radius: 16px;
  }
  
  .stat-icon {
    background: rgba(0, 247, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1rem;
  }
  
  .service-card:hover .service-icon,
  .stat-card:hover .stat-icon {
    background: var(--secondary);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
  }
  
  .service-icon i,
  .stat-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: var(--transition);
  }
  
  .service-card:hover .service-icon i,
  .stat-card:hover .stat-icon i {
    color: var(--primary);
  }
  
  /* Stats Section */
  .stats-section {
    background-color: #0a0818;
    position: relative;
    padding: 5rem 0;
    color: var(--white);
  }
  
  .stats-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(166, 81, 255, 0.15) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(0, 247, 255, 0.15) 0%, transparent 40%);
    z-index: 1;
  }
  
  .stats-section .container {
    position: relative;
    z-index: 2;
  }
  
  .stat-card {
    text-align: center;
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .stat-label {
    font-weight: 600;
    color: var(--white);
  }
  
  /* Difference Section */
  .difference-section {
    background-color: var(--light-gray);
    background-image: linear-gradient(rgba(0, 247, 255, 0.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(0, 247, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
  }
  
  .difference-item {
    position: relative;
  }
  
  .difference-item:hover {
    background-image: linear-gradient(to bottom right, var(--card-bg), #32304f);
  }
  
  .difference-number {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.3;
    line-height: 1;
  }
  
  .difference-item:hover .difference-number {
    opacity: 0.5;
  }
  
  /* Process Section */
  .process-section {
    background-color: #0f0d20;
    position: relative;
    color: var(--white);
  }
  
  .process-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(166, 81, 255, 0.1) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(0, 247, 255, 0.1) 0%, transparent 40%);
    z-index: 1;
  }
  
  .process-section .container {
    position: relative;
    z-index: 2;
  }
  
  .process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(0, 247, 255, 0.2);
    transform: translateX(-50%);
  }
  
  .process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .process-step:last-child {
    margin-bottom: 0;
  }
  
  .process-step:nth-child(odd) {
    justify-content: flex-start;
  }
  
  .process-step:nth-child(even) {
    justify-content: flex-end;
  }
  
  .process-step:nth-child(odd) .process-number {
    right: -75px;
  }
  
  .process-step:nth-child(even) .process-number {
    left: -75px;
  }
  
  .process-content {
    width: calc(50% - 50px);
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 247, 255, 0.1);
  }
  
  .process-content:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 247, 255, 0.1);
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    position: absolute;
    top: 1.5rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
  }
  
  /* CTA Section */
  .cta-section {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(166, 81, 255, 0.4) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(255, 62, 120, 0.4) 0%, transparent 40%);
    z-index: 1;
  }
  
  .cta-section .container {
    position: relative;
    z-index: 2;
  }
  
  .cta-content h2 {
    margin-bottom: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
  }
  
  .cta-section .btn-primary {
    background: var(--white);
    color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .cta-section .btn-primary:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Footer */
  .footer {
    background-color: #0a0818;
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem;
    width: 100%;
    position: relative;
  }
  
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent, 
      rgba(0, 247, 255, 0.3), 
      transparent
    );
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
  }
  
  .footer-logo a {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  
  .footer-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 247, 255, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .footer-column h4 {
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  .footer-column ul li {
    margin-bottom: 0.8rem;
  }
  
  .footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-column ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 247, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
  }
  
  /* Media Queries - Consolidated */
  @media (max-width: 992px) {
    /* Hero responsive layout */
    .hero .container {
      flex-direction: column;
      text-align: center;
    }
    
    .hero-content, 
    .hero-image {
      width: 100%;
    }
    
    .hero-image {
      margin-top: 3rem;
    }
    
    .hero-buttons {
      justify-content: center;
    }
    
    /* Footer responsive layout */
    .footer-content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    
    /* Process timeline responsive layout */
    .process-timeline {
      padding-left: 50px;
    }
    
    .process-timeline::before {
      left: 25px;
    }
    
    .process-step {
      justify-content: flex-start !important;
    }
    
    .process-step:nth-child(even) .process-number,
    .process-step:nth-child(odd) .process-number {
      left: -50px;
      right: auto;
    }
    
    .process-content {
      width: calc(100% - 50px);
    }
  }
  
  @media (max-width: 768px) {
    /* Mobile navigation */
    .nav-menu {
      display: none;
      position: absolute;
      top: 80px;
      left: 0;
      right: 0;
      flex-direction: column;
      background-color: var(--primary);
      padding: 2rem;
      box-shadow: var(--shadow);
      text-align: center;
      gap: 1.5rem;
      border-bottom: 1px solid rgba(0, 247, 255, 0.2);
    }
    
    .nav-menu.active {
      display: flex;
    }
    
    .nav-toggle {
      display: block;
    }
    
    /* Footer columns on mobile */
    .footer-links {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }