
    :root {
      --primary: #6C5CE7;
      --secondary: #A29BFE;
      --accent: #FD79A8;
      --electric: #00CEC9;
      --dark: #0A0A0A;
      --light: #FFFFFF;
      --surface: #1A1A1A;
      --muted: #74AFFF;
      --glass: rgba(255, 255, 255, 0.05);
      --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --gradient-secondary: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
      --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      --gradient-electric: linear-gradient(135deg, #667eea 0%, #00CEC9 100%);
      --font-primary: 'Inter', sans-serif;
      --font-display: 'Space Grotesk', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

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

    body {
      font-family: var(--font-primary);
      background: var(--dark);
      color: var(--light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Custom Cursor */
    .cursor {
      position: fixed;
      width: 20px;
      height: 20px;
      border: 2px solid var(--primary);
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    }

    .cursor-follower {
      position: fixed;
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 50%;
      pointer-events: none;
      z-index: 10001;
      transition: all 0.1s ease;
    }

    .cursor.hover {
      transform: scale(2);
      background: rgba(108, 92, 231, 0.1);
      backdrop-filter: blur(10px);
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(10, 10, 10, 0.8);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 1000;
      padding: 1rem 0;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(10, 10, 10, 0.95);
      padding: 0.5rem 0;
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    .nav-link {
      color: var(--light);
      text-decoration: none;
      font-weight: 500;
      position: relative;
      transition: all 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }
    
    /* Logo Image Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between image and text, if both are shown */
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.logo-img {
  height: 40px; /* Adjust based on your image size */
  width: auto;
  object-fit: contain; /* Ensures image scales without distortion */
  vertical-align: middle;
  transition: filter 0.3s; /* Smooth theme transition */
}

/* Optional: Hide text logo if image is primary */
.logo-text {
  display: none; /* Change to 'none' to hide text */
}

/* Theme-specific adjustments */
body.light .logo-img {
  filter: brightness(1); /* Ensure image is clear in light mode */
}

body.dark .logo-img {
  filter: brightness(1.2); /* Slightly brighten in dark mode for contrast */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-img {
    height: 32px; /* Smaller logo on mobile */
  }

  .logo {
    font-size: 1.2rem; /* Adjust text size if shown */
  }
}

    .cta-button {
      background: var(--gradient-primary);
      padding: 0.8rem 2rem;
      border-radius: 50px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.6s;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger {
      width: 25px;
      height: 3px;
      background: var(--light);
      margin: 3px 0;
      transition: 0.3s;
    }

    .theme-toggle {
      background: none;
      border: none;
      color: var(--light);
      font-size: 1.5rem;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .theme-toggle:hover {
      transform: rotate(20deg);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: radial-gradient(ellipse at center, rgba(108, 92, 231, 0.1) 0%, var(--dark) 70%);
      overflow: hidden;
    }

    .hero-content {
      text-align: center;
      max-width: 1200px;
      padding: 0 2rem;
      z-index: 2;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 3rem;
      font-weight: 300;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gradient-primary);
      padding: 1rem 2.5rem;
      border-radius: 50px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
      position: relative;
      overflow: hidden;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(108, 92, 231, 0.4);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      padding: 1rem 2.5rem;
      border-radius: 50px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
    }

    /* Floating Elements */
    .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
    }

    .floating-element {
      position: absolute;
      background: var(--gradient-primary);
      border-radius: 50%;
      opacity: 0.1;
      animation: float 20s infinite linear;
    }

    @keyframes float {
      0% { transform: translateY(100vh) rotate(0deg); }
      100% { transform: translateY(-100px) rotate(360deg); }
    }

    /* Stats Section */
    .stats {
      padding: 8rem 0;
      background: var(--surface);
      position: relative;
    }

    .stats-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 4rem;
    }

    .stat-item {
      text-align: center;
      position: relative;
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: 4rem;
      font-weight: 800;
      background: var(--gradient-electric);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
    }

    .stat-label {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
    }

    /* Services Grid */
    .services {
      padding: 8rem 0;
      background: var(--dark);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: 3rem;
      background: var(--gradient-secondary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

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

    .service-card {
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 3rem 2rem;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transition: transform 0.6s ease;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-card:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 25px 50px rgba(108, 92, 231, 0.2);
    }

    .service-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      background: var(--gradient-electric);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .service-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--light);
    }

    .service-description {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
    }

    /* Testimonials */
    .testimonials {
      padding: 8rem 0;
      background: var(--surface);
      position: relative;
      overflow: hidden;
    }

    .testimonials-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 3rem;
      margin-top: 4rem;
    }

    .testimonial-card {
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 3rem;
      position: relative;
      transition: all 0.4s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .testimonial-text {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gradient-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .author-info h4 {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .author-info p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
      padding: 8rem 0;
      background: var(--dark);
      text-align: center;
      position: relative;
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 800;
      margin-bottom: 2rem;
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta-description {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 3rem;
      line-height: 1.6;
    }

    /* Footer */
    .footer {
      background: var(--surface);
      padding: 4rem 0 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
    }

    .footer-section h3 {
      font-family: var(--font-display);
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: var(--light);
    }

    .footer-section p,
    .footer-section a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      line-height: 1.8;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      margin-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
    }

    /* Contact Form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 400px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group input,
    .form-group textarea {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      padding: 0.8rem;
      color: var(--light);
      font-family: var(--font-primary);
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      background: rgba(255, 255, 255, 0.15);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-message {
      color: var(--accent);
      font-size: 0.9rem;
      text-align: center;
      margin-top: 1rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .form-message.show {
      opacity: 1;
    }

    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 10002;
      align-items: center;
      justify-content: center;
      display: none; /* Default hidden */
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .modal.active {
      display: flex; /* Show when active */
      opacity: 1;
    }

    .modal-content {
      background: var(--surface);
      border-radius: 20px;
      padding: 3rem;
      max-width: 600px;
      width: 90%;
      position: relative;
      transform: translateY(50px);
      transition: transform 0.3s ease;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .modal.active .modal-content {
      transform: translateY(0);
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 2rem;
      cursor: pointer;
      color: var(--light);
      transition: color 0.3s ease;
    }

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

    .modal-icon {
      font-size: 4rem;
      margin-bottom: 1.5rem;
      background: var(--gradient-electric);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
    }

    .modal-title {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: var(--light);
      text-align: center;
    }

    .modal-description {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      text-align: center;
    }

    .modal-cta {
      display: block;
      text-align: center;
      width: fit-content;
      margin: 0 auto;
    }

    /* Mobile Menu */
    .nav-links.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      padding: 2rem;
      text-align: center;
      z-index: 999;
    }

    .nav-links.active .nav-link {
      margin: 1rem 0;
    }

    .mobile-menu.active {
      transform: rotate(90deg);
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: var(--gradient-primary);
      color: var(--light);
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
    }

    /* Light Theme */
    body.light {
      --dark: #F5F5F5;
      --light: #1A1A1A;
      --surface: #FFFFFF;
      --glass: rgba(0, 0, 0, 0.05);
      --gradient-primary: linear-gradient(135deg, #4B4BFF 0%, #8B46FF 100%);
      --gradient-secondary: linear-gradient(135deg, #4B4BFF 0%, #E573E5 100%);
      --gradient-accent: linear-gradient(135deg, #4B4BFF 0%, #8B46FF 50%, #E573E5 100%);
      --gradient-electric: linear-gradient(135deg, #4B4BFF 0%, #00A6A3 100%);
      --primary: #4B4BFF;
      --secondary: #8B46FF;
      --accent: #E573E5;
      --electric: #00A6A3;
      --muted: #4B4BFF;
    }

    body.light .navbar {
      background: rgba(255, 255, 255, 0.8);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    body.light .navbar.scrolled {
      background: rgba(255, 255, 255, 0.95);
    }

    body.light .nav-link {
      color: var(--light);
    }

    body.light .nav-link::after {
      background: var(--gradient-primary);
    }

    body.light .nav-links.active {
      background: rgba(255, 255, 255, 0.95);
      border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    body.light .hamburger {
      background: var(--light);
    }

    body.light .logo {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    body.light .theme-toggle {
      color: var(--light);
    }

    body.light .hero {
      background: radial-gradient(ellipse at center, rgba(75, 75, 255, 0.1) 0%, #F5F5F5 70%);
    }

    body.light .hero-title {
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    body.light .hero-subtitle {
      color: rgba(26, 26, 26, 0.8);
    }

    body.light .btn-primary {
      background: var(--gradient-primary);
      color: #FFFFFF;
    }

    body.light .btn-primary:hover {
      box-shadow: 0 15px 35px rgba(75, 75, 255, 0.4);
    }

    body.light .btn-secondary {
      background: rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(0, 0, 0, 0.2);
      color: var(--light);
    }

    body.light .btn-secondary:hover {
      background: rgba(0, 0, 0, 0.2);
    }

    body.light .floating-element {
      background: var(--gradient-primary);
      opacity: 0.15;
    }

    body.light .stats {
      background: var(--surface);
    }
    
    body.light .stat-number {
      background: var(--gradient-electric);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    body.light .stat-label {
      color: rgba(26, 26, 26, 0.7);
    }

    body.light .services {
      background: var(--dark);
    }

    body.light .section-title {
      background: var(--gradient-secondary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    body.light .service-card {
      background: rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    body.light .service-card:hover {
      background: rgba(0, 0, 0, 0.08);
      box-shadow: 0 25px 50px rgba(75, 75, 255, 0.2);
    }

    body.light .service-card::before {
      background: var(--gradient-primary);
    }

    body.light .service-icon {
      background: var(--gradient-electric);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    body.light .service-title {
      color: var(--light);
    }

    body.light .service-description {
      color: rgba(26, 26, 26, 0.7);
    }

    body.light .testimonials {
      background: var(--surface);
    }

    body.light .testimonial-card {
      background: rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    body.light .testimonial-card:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    body.light .testimonial-text {
      color: rgba(26, 26, 26, 0.9);
    }

    body.light .author-info p {
      color: rgba(26, 26, 26, 0.6);
    }

    body.light .cta-section {
      background: var(--dark);
    }

    body.light .cta-title {
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    body.light .cta-description {
      color: rgba(26, 26, 26, 0.8);
    }

    body.light .footer {
      background: var(--surface);
      border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    body.light .footer-section h3 {
      color: var(--light);
    }

    body.light .footer-section p,
    body.light .footer-section a {
      color: rgba(26, 26, 26, 0.7);
    }

    body.light .footer-section a:hover {
      color: var(--primary);
    }

    body.light .footer-bottom {
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      color: rgba(26, 26, 26, 0.6);
    }

    body.light .form-group input,
    body.light .form-group textarea {
      background: rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(0, 0, 0, 0.2);
      color: var(--light);
    }

    body.light .form-group input:focus,
    body.light .form-group textarea:focus {
      border-color: var(--primary);
      background: rgba(0, 0, 0, 0.15);
    }

    body.light .back-to-top {
      background: var(--gradient-primary);
    }

    body.light .back-to-top:hover {
      box-shadow: 0 10px 20px rgba(75, 75, 255, 0.3);
    }

    body.light .scroll-indicator {
      background: var(--gradient-primary);
    }

    body.light .cursor {
      border: 2px solid var(--primary);
    }

    body.light .cursor-follower {
      background: var(--primary);
    }

    body.light .cursor.hover {
      background: rgba(75, 75, 255, 0.1);
    }

    body.light .modal {
      background: rgba(0, 0, 0, 0.5);
    }

    body.light .modal-content {
      background: var(--surface);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    body.light .modal-close {
      color: var(--light);
    }

    body.light .modal-close:hover {
      color: var(--primary);
    }

    body.light .modal-title {
      color: var(--light);
    }

    body.light .modal-description {
      color: rgba(26, 26, 26, 0.8);
    }

    body.light .modal-cta {
      background: var(--gradient-primary);
    }

    body.light .modal-cta:hover {
      box-shadow: 0 15px 35px rgba(75, 75, 255, 0.4);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .mobile-menu {
        display: flex;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .services-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .service-card,
      .testimonial-card {
        min-width: unset;
      }

      .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
      
      .cursor,
      .cursor-follower {
        display: none;
      }

      .nav-links.active {
        animation: slideIn 0.3s ease-out;
      }
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }

    @keyframes slideIn {
      from {
        transform: translateY(-20px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .animate-fade-in-up {
      animation: fadeInUp 0.8s ease-out forwards;
    }

    .animate-pulse {
      animation: pulse 2s ease-in-out infinite;
    }

    /* Loading Screen */
    .loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      transition: opacity 0.5s ease;
    }

    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 3px solid rgba(255, 255, 255, 0.1);
      border-top: 3px solid var(--primary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Scroll Indicator */
    .scroll-indicator {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--gradient-primary);
      transform-origin: left;
      transform: scaleX(0);
      z-index: 9999;
    }

/* Hero Section Parallax */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(108, 92, 231, 0.1) 0%, var(--dark) 70%);
  z-index: 0;
  will-change: transform;
}

.floating-elements {
  z-index: 1;
}

.floating-element {
  will-change: transform;
}

/* Light Theme Parallax Background */
body.light .hero-background {
  background: radial-gradient(ellipse at center, rgba(75, 75, 255, 0.1) 0%, #F5F5F5 70%);
}

/* Disable Parallax on Mobile */
@media (max-width: 768px) {
  .hero-background {
    transform: none !important;
  }
  .floating-element {
    transform: none !important;
  }
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

.newsletter-form .form-group input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.8rem;
  color: var(--light);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form .form-group input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

/* Light Theme Newsletter Form */
body.light .newsletter-form .form-group input {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--light);
}

body.light .newsletter-form .form-group input:focus {
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.15);
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1001;
}

.chat-button {
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  color: var(--light);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.4);
}

.chat-box {
  display: none;
  background: var(--surface);
  border-radius: 15px;
  width: 300px;
  max-height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  flex-direction: column;
  margin-bottom: 1rem;
  overflow: hidden;
}

.chat-box.active {
  display: flex;
}

.chat-header {
  background: var(--gradient-primary);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h4 {
  color: var(--light);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.chat-close {
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.chat-close:hover {
  color: var(--accent);
}

.chat-messages {
  padding: 1rem;
  flex-grow: 1;
  overflow-y: auto;
  color: var(--light);
  font-size: 0.9rem;
}

.chat-messages p {
  margin-bottom: 0.5rem;
}

.chat-form {
  display: flex;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
}

.chat-form input {
  flex-grow: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  color: var(--light);
  font-family: var(--font-primary);
  margin-right: 0.5rem;
}

.chat-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.chat-form button {
  padding: 0.5rem 1rem;
}

/* Light Theme Chat Widget */
body.light .chat-button {
  background: var(--gradient-primary);
}

body.light .chat-box {
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body.light .chat-messages {
  color: var(--light);
}

body.light .chat-form input {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--light);
}

body.light .chat-form input:focus {
  border-color: var(--primary);
}

/* FAQ Section */
.faq {
  padding: 8rem 0;
  background: var(--dark);
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 4rem;
}

.faq-item {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--light);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
  color: var(--light);
}

.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Light Theme FAQ */
body.light .faq {
  background: var(--dark);
}

body.light .faq-item {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .faq-question {
  color: var(--light);
}

body.light .faq-question:hover {
  background: rgba(0, 0, 0, 0.08);
}

body.light .faq-answer p {
  color: rgba(26, 26, 26, 0.8);
}


/* Language Switcher */
.language-switcher {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  color: var(--light);
  font-family: var(--font-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-switcher:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

/* Light Theme Language Switcher */
body.light .language-switcher {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--light);
}

body.light .language-switcher:focus {
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.15);
}

    