body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #ffffff;
}

.hero {
  height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #1984ba 0%, #e6f7ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}




.overlay {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 3rem 4rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.overlay h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn {
  background: #00aaff;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 1rem;
  display: inline-block;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0077aa;
}

/* Animated Dots */
.dots {
  display: flex;
  justify-content: center;
  margin: 10px 0;
  gap: 8px;
}

.dots span {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  animation: bounce 1s infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.6); opacity: 1; }
}

footer {
  text-align: center;
  padding: 20px;
  background: #001F3F;
  color: white;
}

/* Animated Balls */
.ball {
  position: absolute;
  width: 80px;
  transition: transform 0.3s ease;
}

.ball1 {
  top: 10%;
  left: 10%;
  animation: move1 3s infinite alternate ease-in-out;
}

.ball2 {
  bottom: 20%;
  right: 10%;
  animation: move2 4s infinite alternate ease-in-out;
}

.logo {
  position: absolute;
  top: 75%;
  left: 50%;
  width: 400px; /* Adjust size as needed */
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0.95;
}


@keyframes move1 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 100px) rotate(360deg); }
}

@keyframes move2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-80px, -60px) rotate(-360deg); }
}
