body, html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.prayag-hero {
  background: url('/images/Mahakumbh-2025-1.webp') center center/cover no-repeat;
  height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-outline-light {
  border-radius: 25px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}


.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
}

.logo {
  width: 150px;
  
}

.subtitle {
  letter-spacing: 3px;
  font-size: 0.9rem;
  color: #ccc;
  text-transform: uppercase;
}

.main-title {
  font-size: 3rem;
  letter-spacing: 8px;
  font-weight: 700;
  color: #fff;
  margin: 10px 0;
}

.tagline {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 30px;
}

.progress-wrapper {
  position: relative;
  width: 300px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  border-radius: 10px;
}

.progress-bar-glow {
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, #b23a48, #ffcdd2);
  border-radius: 10px;
  box-shadow: 0 0 15px #ffcdd2;
  transition: width 1s ease;
}

.progress-text {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 0.9rem;
}

footer {
  background: transparent;
  color: #aaa;
  font-size: 0.85rem;
  position: absolute;
  bottom: 10px;
  width: 100%;
  z-index: 3;
}

/* Bird Animation */
.birds-flying::after {
  content: '';
  position: fixed;
  top: 50px;
  left: -300px;
  width: 300px;
  height: 150px;
  background: url('https://tenor.com/view/bird-flying-blue-bird-cute-adorable-gif-16571757893637011819') center/contain no-repeat;
  animation: birdsFly 60s linear infinite;
  opacity: 0.5;
  z-index: 2;
}

.bot-container {
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 10;
  text-align: right;
}

.bot-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bot-icon:hover {
  transform: scale(1.1);
}

.bot-message {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 0.85rem;
  width: 240px;
  box-shadow: 0 0 10px #ffebee;
}

.bot-message a {
  color: #ffcdd2;
  text-decoration: none;
}

.bot-message::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 20px;
  border-width: 8px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}




@keyframes rotate {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

@keyframes birdsFly {
  0% { left: -300px; }
  100% { left: 110%; }
}
