 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      height: 100vh;
      background: url("Banner-2.jpg") no-repeat center center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      color: #fff;
    }

    /* Overlay */
    body::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.65);
      z-index: 0;
    }

    .container {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 730px;
      padding: 20px;
    }

    .logo {
      font-size: 34px;
      font-weight: bold;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .headline {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .desc {
      font-size: 14px;
      margin-bottom: 30px;
      color: #ddd;
    }

    /* Countdown */
    .countdown {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      margin-bottom: 25px;
    }

    .time {
      width: 85px;
      height: 85px;
      border: 2px solid #fff;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .time span {
      font-size: 20px;
      font-weight: bold;
    }

    .time small {
      font-size: 12px;
      text-transform: uppercase;
      color: #fdd835;
    }

    /* Subscription */
    .subscribe {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .subscribe input {
      padding: 12px;
      width: 65%;
      border: none;
      outline: none;
      border-radius: 5px 0 0 5px;
      font-size: 14px;
    }

    .subscribe button {
      padding: 12px 20px;
      border: none;
      background: #fdd835;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      border-radius: 0 5px 5px 0;
      transition: 0.3s;
    }

    .subscribe button:hover {
      background: #ffca28;
    }

    /* Social Icons */
    /* .social {
      margin-top: 15px;
    }

    .social a {
      margin: 0 10px;
      text-decoration: none;
      color: #fff;
      font-size: 18px;
      transition: 0.3s;
    }

    .social a:hover {
      color: #fdd835;
    } */

    /* Responsive */
    @media (max-width: 600px) {
      .logo { font-size: 26px; }
      .headline { font-size: 16px; }
      .desc { font-size: 12px; }
      .time { width: 70px; height: 70px; }
      .subscribe input { width: 100%; border-radius: 5px; margin-bottom: 10px; }
      .subscribe button { width: 100%; border-radius: 5px; }
      .subscribe { flex-direction: column; }
    }





    .social a {
  margin: 0 8px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  border: 1px solid #fff;
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social a:hover {
  background: #fdd835;
  color: #000;
  border-color: #fdd835;
}
