.feature-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .feature-card::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 0;
    height: 0;
    background-color: rgba(88, 101, 242, 0.05);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.6s ease;
  }
  
  .feature-card:hover::before {
    width: 200%;
    height: 200%;
  }
  
  .feature-icon {
    position: relative;
    overflow: hidden;
  }
  
  .feature-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(88, 101, 242, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
  }
  
  .feature-card:hover .feature-icon::after {
    transform: scale(1.2);
  }
  
  /* Services Tabs Animation */
  .service-content {
    position: relative;
  }
  
  .service-image img {
    transition: transform 0.5s ease;
  }
  
  .service-content:hover .service-image img {
    transform: scale(1.05);
  }
  
  .service-features li {
    position: relative;
    padding-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .service-features li:hover {
    transform: translateX(5px);
  }
  
  /* Testimonial Cards Animation */
  .testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .client-avatar,
  .client-avatar-placeholder {
    transition: transform 0.3s ease;
  }
  
  .testimonial-card:hover .client-avatar,
  .testimonial-card:hover .client-avatar-placeholder {
    transform: scale(1.1);
  }
  
  /* CTA Button Animation */
  .cta .btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .cta .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
  }
  
  .cta .btn-primary:hover::before {
    left: 100%;
  }
  
  /* Additional Animations */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.4);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(88, 101, 242, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(88, 101, 242, 0);
    }
  }
  
  .discord-login-btn:hover {
    animation: pulse 1.5s infinite;
  }
  
  .social-links a:hover {
    animation: pulse 1.5s infinite;
  }
  
  /* Hover Effects for Navigation */
  .nav-links a {
    position: relative;
    overflow: hidden;
  }
  
  .nav-links a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
  }
  
  .nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  