@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Absolutely no scrolling on the body */
}

body {
  font-family: "Poppins", sans-serif;
  color: #000;
  background-color: #fff;
}

.blurry-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  background-color: rgba(6, 148, 148, 0.2);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
  filter: blur(10px);
}

/* ... (shape styles remain the same) ... */
.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 5%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.shape:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 90%;
  animation-delay: 3s;
  animation-duration: 20s;
}

.shape:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 80%;
  left: 60%;
  animation-delay: 8s;
  animation-duration: 18s;
}

.shape:nth-child(4) {
  width: 50px;
  height: 50px;
  top: 90%;
  left: 10%;
  animation-delay: 12s;
  animation-duration: 22s;
}

.shape:nth-child(5) {
  width: 70px;
  height: 70px;
  top: 40%;
  left: 80%;
  animation-delay: 1s;
  animation-duration: 28s;
}

.shape:nth-child(6) {
  width: 30px;
  height: 30px;
  top: 20%;
  left: 20%;
  animation-delay: 6s;
  animation-duration: 15s;
}

.shape:nth-child(7) {
  width: 45px;
  height: 45px;
  top: 70%;
  left: 90%;
  animation-delay: 9s;
  animation-duration: 23s;
}

.shape:nth-child(8) {
  width: 55px;
  height: 55px;
  top: 50%;
  left: 15%;
  animation-delay: 4s;
  animation-duration: 19s;
}

.shape:nth-child(9) {
  width: 65px;
  height: 65px;
  top: 85%;
  left: 85%;
  animation-delay: 11s;
  animation-duration: 26s;
}

.shape:nth-child(10) {
  width: 40px;
  height: 40px;
  top: 15%;
  left: 40%;
  animation-delay: 7s;
  animation-duration: 17s;
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  50% {
    transform: translateY(-150px) translateX(100px) scale(1.1);
  }
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 1200px;
  gap: 80px;
}

.content {
  text-align: center;
  padding: 30px;
  flex-basis: calc(40% - 40px);
}

.logo {
  width: 300px;
  margin-bottom: 10px;
}

h1 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 15px;
}

p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.time {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.time span {
  font-size: 2rem;
  font-weight: 600;
  color: #069494;
}

.time p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.newsletter {
  margin-bottom: 20px;
}

.newsletter h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.newsletter form {
  display: flex;
  justify-content: center;
}

.newsletter input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  width: 250px;
}

.newsletter button {
  padding: 8px 15px;
  border: none;
  background-color: #069494;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.social-media a {
  margin: 0 8px;
}

.social-media img {
  width: 35px;
}

.image-container {
  flex-basis: calc(60% - 40px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .container {
    overflow-y: auto; /* Allow vertical scroll inside container ONLY if needed */
  }

  .content-wrapper {
    flex-direction: column;
  }

  .content {
    padding: 15px;
  }

  .logo {
    width: 200px;
    margin-bottom: 5px;
  }

  h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .countdown {
    gap: 10px;
    margin-bottom: 15px;
  }

  .time {
    padding: 10px;
  }

  .time span {
    font-size: 1.5rem;
  }

  .newsletter input {
    width: 200px;
  }

  .image-container {
    display: none;
  }
}
