* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  width: 100%;
  background-color: #007b5e;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.orbit-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-card {
  position: absolute;
  width: 220px;
  height: 220px;
  background: #007b5e;
  background-image: url('./images/Logo-bg-img.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 16px;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.logo-card .img-bg {
  /* background: white; */
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.center-card img {
  width: 150px;
  height: auto;
}

.orbit-card {
  position: absolute;
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 16px;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: orbit 20s linear infinite;
}

.orbit-card .img-bg {
  /* background: #e0f7f4; */
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  object-fit: cover;
}

.orbit-card img {
  width: 100px;
  height: auto;
  justify-content: center;
}


@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(250px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(250px) rotate(-360deg);
  }
}

/* Position each card with a delay */
#gas {
  animation-delay: 0s;
}

#wifi {
  animation-delay: 5s;
}

#innbucks {
  animation-delay: 10s;
}

#grocery {
  animation-delay: 15s;
}

.orbit-card h2 {
  color: #007b5e;
  font-size: 1.1rem;
}

.orbit-card p {
  font-size: 0.85rem;
  color: #444;
  margin-top: 0.3rem;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--navy);
  background: rgba(242, 242, 240, 0.95);
}

footer a {
  color: var(--teal);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}