body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #000;
}

#bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  object-fit: cover;
}

/* GLASS EFFECT */
.glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  margin: 25px;
  border: 1px solid rgba(255,255,255,0.2);
  animation: fadeIn 1.5s ease;
}

/* SPLASH LOADER */
#splash {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:#000;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  z-index:10;
}
.loader {
  width:50px; height:50px;
  border:5px solid #444;
  border-top-color:#fff;
  border-radius:50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* GRADIENT TITLES */
.gradient-title {
  font-size: 28px;
  background: linear-gradient(45deg, #ff00f0, #00ffe7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SERVICE CARDS */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}
.service-card {
  padding: 15px;
  background: rgba(0,0,0,0.4);
  border-radius: 15px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.2);
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}
.service-card:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.2);
}

.coming {
  margin-top: 15px;
  color: #00eaff;
  font-style: italic;
  text-align:center;
}

/* ORDER FORM */
.order-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-form input, select {
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
}
.order-form button {
  padding: 14px;
  background: linear-gradient(45deg,#ff00f0,#00ffe7);
  color:#000;
  font-weight:700;
  border:none;
  border-radius:10px;
  cursor:pointer;
}

/* TEAM */
.team-grid {
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}
.member {
  text-align:center;
}
.member img {
  width:120px; height:120px;
  border-radius:50%;
  border:3px solid #fff;
}

/* COUNTER */
#live-count {
  font-size: 45px;
  font-weight: bold;
  color: #00ffe7;
  text-align:center;
}
.logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dp {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 0 15px rgba(0,255,255,0.7);
}
/* 3D Bounce Animation + Glow */
.bounce {
  animation: bounce3D 2.2s infinite ease-in-out;
  transform-style: preserve-3d;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.8),
              0 0 40px rgba(255, 0, 255, 0.5);
}

/* Animation Keyframes */
@keyframes bounce3D {
  0% {
    transform: translateY(0) scale(1) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translateY(-10px) scale(1.04) rotateX(8deg) rotateY(-8deg);
  }
  50% {
    transform: translateY(0px) scale(1) rotateX(0deg) rotateY(0deg);
  }
  75% {
    transform: translateY(-6px) scale(1.03) rotateX(-6deg) rotateY(6deg);
  }
  100% {
    transform: translateY(0) scale(1) rotateX(0deg) rotateY(0deg);
  }
}

