html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.circle {
  background-color: #ffe401;
  border-radius: 50%;
  position: absolute;
  animation: zoomEffect 2s infinite ease-in-out;
}
@keyframes zoomEffect {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.1);
  }
}
@keyframes smallCircleZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.half-circle-top,
.half-circle-bottom {
  animation: smallCircleZoom 2s infinite ease-in-out;
}
.half-circle-top {
  width: 150px;
  height: 150px;
  top: -75px;
  left: -75px;
}

.half-circle-bottom {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
}

.big-circle {
  width: 950px;
  height: 950px;
  top: 45%;
  right: -120px;
  transform: translateY(-50%);
  clip-path: ellipse(50% 75% at 50% 50%);
  animation: zoomEffect 2s infinite ease-in-out;
}

.circle-image {
  position: absolute;
  left: 20%;
  top: 40%;
  transform: translateX(-50%);
  width: 20vw;
  height: auto;
  z-index: 2;
}

.card-container {
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  width: 320px;
  z-index: 3;
}

.custom-card {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-height: 500px;
}

.card-img {
  width: 140px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0px;
}
.Link {
  text-decoration: none;
}
/* Responsive Styling */
@media (max-width: 768px) {
  body {
    overflow: auto;
  }

  .circle {
    display: none;
  }

  .position-relative {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
  }

  .circle-image {
    position: static;
    width: 120px;
    margin-bottom: 20px;
    transform: none;
  }

  .card-container {
    position: static;
    transform: none;
    width: 90%;
    max-width: 350px;
  }

  .custom-card {
    min-height: auto;
    padding: 30px;
  }
}
