/* ====== GLOBAL STYLES ====== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', Arial, sans-serif;
      background: url('about_bg.jpg') no-repeat center center/cover;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

/* ====== OVERLAY EFFECT ====== */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Lighter and more elegant overlay with gradient */
  background: linear-gradient(
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.25)
  );
  z-index: 0;
}


    /* ====== MAIN CONTENT BOX ====== */
    .main {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 50px 60px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      backdrop-filter: blur(8px);
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
      animation: fadeIn 1.2s ease-in-out;
      max-width: 900px;
    }

    h2 {
      font-size: 34px;
      color: #00b4d8;
      font-weight: 700;
      margin-bottom: 15px;
      letter-spacing: 1px;
    }

    h3 {
      font-size: 26px;
      font-weight: 700;
      color: #ff0000;
      margin-bottom: 25px;
      animation: pop 1s infinite ease-in-out;
    }

    p {
      font-size: 16px;
      line-height: 1.8;
      color: #f1f1f1;
      text-align: justify;
    }

    .under-construction {
      margin-top: 30px;
      display: inline-block;
      background: linear-gradient(45deg, #ffd166, #ffb703);
      color: #212529;
      padding: 15px 25px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 18px;
      box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
      animation: glow 1.5s infinite ease-in-out;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .under-construction:hover {
      transform: scale(1.05);
    }

    /* ====== KEYFRAME ANIMATIONS ====== */
    @keyframes pop {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.8; }
      100% { transform: scale(1); opacity: 1; }
    }

    @keyframes glow {
      0% { box-shadow: 0 0 10px rgba(255, 193, 7, 0.4); }
      50% { box-shadow: 0 0 25px rgba(255, 193, 7, 0.9); }
      100% { box-shadow: 0 0 10px rgba(255, 193, 7, 0.4); }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ====== MEDIA RESPONSIVE ====== */
    @media (max-width: 768px) {
      .main {
        padding: 30px 20px;
      }
      h2 { font-size: 26px; }
      h3 { font-size: 20px; }
      p { font-size: 15px; }
    }