/* Home Page Futuristic Styles */

/* Home Main */
.home-main {
    position: relative;
    overflow: hidden;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 140px 0;
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #ffffff;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.2), transparent 70%);
    z-index: -1;
    animation: particles 20s linear infinite;
  }
  
  .hero-title {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #00ddeb, #ff00ff, #00ddeb);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientText 5s linear infinite;
  }
  
  .hero-subtitle {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 32px;
    opacity: 0.9;
    color: #c5cae9;
  }
  
  .hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  /* Buttons */
  .btn-primary {
    background: linear-gradient(45deg, #00ddeb, #ff00ff);
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .btn-primary:hover {
    transform: translateY(-4px) rotateX(10deg);
    box-shadow: 0 8px 20px rgba(0, 221, 235, 0.5), 0 0 30px rgba(255, 0, 255, 0.3);
  }
  
  .btn-outline {
    border: 2px solid #00ddeb;
    color: #00ddeb;
    background: transparent;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
  }
  
  .btn-outline:hover {
    color: #ffffff;
    border-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
  }
  
  .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .btn-outline:hover::before {
    left: 100%;
  }
  
  /* Features Section */
  .features {
    padding: 70px 0;
    background: #0d1b2a;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    background: #1b263b;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 221, 235, 0.2);
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 221, 235, 0.3), 0 0 20px rgba(255, 0, 255, 0.2);
  }
  
  .feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #00ddeb;
    filter: drop-shadow(0 0 10px rgba(0, 221, 235, 0.5));
  }
  
  .feature-card h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .feature-card p {
    color: #c5cae9;
    font-size: 16px;
  }
  
  .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 221, 235, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .feature-card:hover .card-glow {
    opacity: 0.5;
  }
  
  /* Animations */
  @keyframes particles {
    0% { transform: scale(1) translateY(0); opacity: 0.8; }
    50% { transform: scale(1.2) translateY(20px); opacity: 0.4; }
    100% { transform: scale(1) translateY(0); opacity: 0.8; }
  }
  
  @keyframes gradientText {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slideIn {
    from { transform: translateY(60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes cardReveal {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
  }
  
  @keyframes neonPulse {
    0% { box-shadow: 0 0 5px #00ddeb, 0 0 10px #00ddeb; }
    50% { box-shadow: 0 0 10px #00ddeb, 0 0 20px #00ddeb; }
    100% { box-shadow: 0 0 5px #00ddeb, 0 0 10px #00ddeb; }
  }
  
  .animate-3d-hover {
    perspective: 1000px;
  }
  
  .animate-neon-pulse {
    animation: neonPulse 2s infinite ease-in-out;
  }
  
  .animate-particles {
    animation: particles 20s linear infinite;
  }
  
  .animate-fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .animate-slide-in {
    animation: slideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 40px;
  }
  
  .animate-card-reveal {
    animation: cardReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Scroll Animation Trigger */
  [data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-animate].visible {
    opacity: 1;
    transform: translateY(0);
  }