 /* ✅ Keep your background image (from WP.css or inline) */
    /* WP.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: url("assets/img/l2.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  text-align: center;
  overflow: hidden;
}


    .container {
      background: rgb(97, 211, 93); /* semi-transparent overlay */
      padding: 40px;
      border-radius: 20px;
      
      animation: fadeIn 2s ease forwards;
    }

    .logo img {
      width: 130px;
      opacity: 0;
      animation: fadeInLogo 2s ease forwards;
    }

    .logo h2 {
      font-size: 2rem;
      margin-top: 10px;
      letter-spacing: 2px;
      opacity: 0;
      animation: fadeInText 2.5s ease forwards;
      animation-delay: 0.8s;
    }

    h3 {
      margin-top: 25px;
      font-size: 1.3rem;
      opacity: 0;
      animation: fadeInText 3s ease forwards;
      animation-delay: 1.2s;
    }

    p {
      font-size: 1rem;
      line-height: 1.6;
      opacity: 0;
      animation: fadeInText 3.5s ease forwards;
      animation-delay: 1.8s;
    }

    .btn {
      display: inline-block;
      margin-top: 25px;
      padding: 12px 30px;
      background-color: #ffffff;
      color: #198754;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      opacity: 0;
      animation: fadeInText 4s ease forwards;
      animation-delay: 2.2s;
    }

    .btn:hover {
      background-color: #198754;
      color: white;
      box-shadow: 0 0 20px rgba(255,255,255,0.7);
      transform: scale(1.05);
    }

    /* ✨ Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInLogo {
      from { opacity: 0; transform: scale(0.8); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes fadeInText {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Typing effect styling */
    #typing {
      display: inline-block;
      border-right: 3px solid white;
      white-space: nowrap;
      overflow: hidden;
      animation: blink 0.75s infinite;
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }