@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1920&q=80')
              no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* 🔹 remove blur overlay, just slight dark fade for readability */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 20, 0.25); /* faint tint */
  z-index: -1;
}

/* 🌟 Main title */
.title {
  text-align: center;
  font-size: 3em;
  margin-top: 50px;
  letter-spacing: 3px;
  font-weight: 700;
  text-shadow: 0 0 15px #00ffff, 0 0 25px #ff00ff;
  animation: glowTitle 5s infinite alternate;
}

@keyframes glowTitle {
  0% { color: #ff4747; text-shadow: 0 0 20px red, 0 0 60px orange; }
  50% { color: #00ffd5; text-shadow: 0 0 20px lime, 0 0 60px cyan; }
  100% { color: #ff80ff; text-shadow: 0 0 20px violet, 0 0 60px pink; }
}

/* 🧊 Boxes section */
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 20px;
}

/* 💎 Subtle box with clean style (no blur, soft dark color) */
.box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  border-radius: 20px;
  text-decoration: none;
  background: rgba(25, 25, 45, 0.8);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.box span {
  animation: rgbText 5s infinite linear;
  font-size: 1.5em;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(255,255,255,0.4);
}

/* 🌈 RGB animated name text */
@keyframes rgbText {
  0% { color: #ff0040; }
  20% { color: #ff9900; }
  40% { color: #ffee00; }
  60% { color: #00ffea; }
  80% { color: #ff00ff; }
  100% { color: #00ff66; }
}

/* 🔙 Back button */
.back {
  position: absolute;
  top: 25px;
  left: 25px;
  text-decoration: none;
  color: #fff;
  font-size: 1.1em;
  background: rgba(25, 25, 45, 0.7);
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: 0.3s;
}

.back:hover {
  background: rgba(50, 50, 80, 0.9);
  color: #00ffff;
  box-shadow: 0 0 25px rgba(0,255,255,0.6);
}

/* 🇮🇳 About title */
.about-title {
  text-align: center;
  margin-top: 100px;
  font-size: 3em;
  letter-spacing: 3px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff9933 0%, #ffffff 50%, #138808 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* 📦 Info box (neat, no blur, soft transparency) */
.info-box {
  width: 75%;
  margin: 70px auto;
  padding: 45px;
  border-radius: 25px;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.6;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(25, 25, 45, 0.7);
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.info-box span {
  background: linear-gradient(90deg, #ff9933 0%, #ffffff 50%, #138808 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .title { font-size: 2.3em; }
  .about-title { font-size: 2.3em; }
  .box { height: 150px; }
  .info-box { width: 90%; padding: 25px; }
  }
