<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>EternaCloud Clone - Premium UI</title>
  <style>
    body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }
    /* Force all text white in this section */
    #eternacloud-section h1,
    #eternacloud-section h2,
    #eternacloud-section h3,
    #eternacloud-section h4,
    #eternacloud-section h5,
    #eternacloud-section h6,
    #eternacloud-section p,
    #eternacloud-section span,
    #eternacloud-section a,
    #eternacloud-section li,
    #eternacloud-section div,
    #eternacloud-section button {
      color: white !important;
    }
    /* Background glow */
    #eternacloud-section .bg-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(168,85,247,0.25), transparent 70%);
      filter: blur(100px);
      z-index: -1;
      top: -150px;
      left: -150px;
    }
    #eternacloud-section .bg-glow2 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(99,102,241,0.25), transparent 70%);
      filter: blur(80px);
      z-index: -1;
      bottom: -100px;
      right: -100px;
    }
    /* Gradient text */
    #eternacloud-section .text-gradient {
      background: linear-gradient(to right, #a5b4fc, #e879f9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: #a5b4fc;
    }
    /* Cards hover effect */
    #eternacloud-section .card:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 20px 50px rgba(168, 85, 247, 0.4);
    }
    #eternacloud-section .card {
      transition: all 0.4s ease;
    }
    /* Active card look */
    #eternacloud-section .active-card {
      background: linear-gradient(180deg, rgba(80,40,150,0.3) 0%, rgba(30,10,60,0.5) 100%);
      border: 1px solid rgba(168,85,247,0.4);
      box-shadow: 0 20px 50px rgba(168, 85, 247, 0.5);
    }
    #eternacloud-section .active-card button:hover {
      transform: scale(1.05);
    }
    /* Section background */
    #eternacloud-section {
      position: relative;
      background: linear-gradient(135deg, #0b0b18, #1a0b35);
      padding: 5rem 1rem 5rem 1rem;
      overflow: hidden;
    }
  </style>
</head>
<body>
  <!-- EternaCloud Section -->
  <section id="eternacloud-section">
    <!-- Background Glows -->
    <!-- Hero Section -->
      <h1>
        Trusted by Fortune 10 Hyperscalers<br>
        From Concept to Completion
      </h1>
      <p>Proven across 330+ MW of data center builds worldwide</p>
    <!-- Cards Section -->
      <!-- Card 1 -->
           Development
          <h3>From Idea to Solution</h3>
          <p>Streamline planning and reduce busywork.</p>
      <!-- Card 2 (Active) -->
           Onboarding
          <h3>From Evaluation to Approval</h3>
          <p>Simplify processes and avoid juggling multiple tasks.</p>
          <button>
            See What You Get
          </button>
      <!-- Card 3 -->
           Delivery
          <h3>From Request to Delivery</h3>
          <p>Ensure smooth operations without overhead.</p>
      <!-- Card 4 -->
           Deployment
          <h3>From Receiving to Turnover</h3>
          <p>Eliminate friction and deliver efficiently.</p>
  </section>
</body>
</html>