body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
 background: linear-gradient(to right, #093028, #237a57);
  color: #fff;
}
.flag-icon {
  width: 70px;
  height: 70px;
  vertical-align: middle;
}

#celebration-overlay {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#celebration-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#celebration-text {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
#content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.text-xl {
  font-size: 20px;
  font-weight: 800;
}
p{
    font-size: 16px;
  font-weight: 700;
}
.step {
  position: absolute;
  width: 100%;
  max-width: 850px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px) saturate(1.3);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.7s ease;
  pointer-events: none;
}

.step.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.btn {
  background: linear-gradient(135deg, #006d2c, #00a859);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 25px;
  box-shadow: 0 5px 20px rgba(0, 168, 89, 0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 168, 89, 0.55);
}

.btn:active {
  transform: scale(0.97);
}
.tag {
  display: inline-block;
  background: rgba(0, 109, 44, 0.2);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
    font-size: 16px;
  font-weight: 700;
  margin: 20px;
  border: 1px solid rgba(0, 109, 44, 0.3);
}
.tag1 {
  display: inline-block;
  background: rgba(0, 109, 44, 0.2);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
    font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(0, 109, 44, 0.3);
}
.card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 15px;
    margin: 15px;
  padding: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 3px solid rgba(255, 255, 255, 0.25);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 109, 44, 0.25);
}
.urdu {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 25px;
  direction: rtl;
  color: #0cebeb;
}
@media (max-width: 768px) {
  .step {
    padding: 20px;
  }
  .btn {
    width: 100%;
  }
  .flag-icon {
    width: 50px;
    height: 50px;
  }
}
