/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
#sabhi-body-main {
  font-family: 'Segoe UI', sans-serif;
  background: #828385; /* ✅ Your color */
  color: #222;
  overflow-x: hidden;
}

/* 🌌 Background */
#sabhi-bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

/* ⭐ Stars */
#sabhi-stars-layer {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(rgba(255,255,255,0.7) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: sabhiStarsMove 90s linear infinite;
}

/* 🧊 Cubes */
.sabhi-cube {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  animation: sabhiCubeFloat 12s infinite ease-in-out;
}

/* Different cube positions */
.sabhi-cube-1 {
  top: 20%;
  left: 10%;
}
.sabhi-cube-2 {
  top: 60%;
  left: 80%;
  animation-delay: 3s;
}
.sabhi-cube-3 {
  top: 80%;
  left: 30%;
  animation-delay: 6s;
}

/* Animations */
@keyframes sabhiStarsMove {
  from { transform: translate(0, 0); }
  to { transform: translate(-400px, -400px); }
}

@keyframes sabhiCubeFloat {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

/* 📄 Container */
#sabhi-container-main {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

/* Header */
#sabhi-header-title {
  text-align: center;
  margin-bottom: 30px;
}

#sabhi-header-title h1 {
  font-size: 2.5rem;
  color: white;
  text-shadow: 7px 7px 11px #060505;
}

#sabhi-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: bold;
}

/* Cards */
.sabhi-card-block {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.sabhi-card-block:hover {
  transform: translateY(-6px) scale(1.01);
}

/* Text */
.sabhi-card-block h2 {
  margin-bottom: 10px;
  color: #000;
}

.sabhi-card-block p {
  font-size: 15px;
  line-height: 1.6;
}

/* Footer */
#sabhi-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #222;
}

/* 📱 Responsive */
@media (max-width: 600px) {
  #sabhi-header-title h1 {
    font-size: 1.8rem;
  }

  .sabhi-cube {
    width: 25px;
    height: 25px;
  }
}