/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Body setup */
body {
  overflow-x: hidden;
  color: #fff;
}

/* Background video */
video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  filter: brightness(60%);
}

/* Header */
header {
  width: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header img {
  width: 150px;
}

/* Main Content */
main {
  text-align: center;
  padding-top: 150px;
}

main h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1.5s ease;
}

main p {
  font-size: 1.2rem;
  margin-top: 10px;
  animation: fadeInUp 2s ease;
}

main img {
  width: 180px;
  margin: 20px;
  transition: transform 0.3s ease;
}

main img:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.7);
  color: #ddd;
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  position: relative;
  bottom: -270px;
  margin-top: 80px;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Floating animation for logos */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

main img:nth-child(3) {
  animation: float 4s ease-in-out infinite;
}

main img:nth-child(4) {
  animation: float 5s ease-in-out infinite;
}
