/* Reset & basic styling */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body, html { 
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    background: #0f172a;
    color: #f8fafc;
}


  /* Center content */
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
  }

  .container img {
    width: 50%;
  }
  /* Hero heading animation */
  h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s forwards 0.2s;
  }

  /* Subheading animation */
  p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s forwards 0.5s;
  }

  /* Background animation */
  body {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(270deg, #6366f1, #03065e, #011324, #6366f1);
    background-size: 800% 800%;
    z-index: -1;
    animation: gradientBG 15s ease infinite;
  }


  footer {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  footer a{
    color: #04969b;
    text-decoration: none;
    font-weight: 500;
  }

  /* Keyframes */
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Footer note animation */
  footer {
    width: 100%;
    position: absolute;
    bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.2s;
  }