/* Full background image */
body {
  background: url("Assets/images/bg.jpg") no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow-x: hidden;
}

/* Global dark overlay */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.70); 
  backdrop-filter: blur(2px);
  z-index: -1;
}

/* --- GLASS CARD --- */
.glass {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 45px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 45px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  margin: 100px;
  animation: fadeUp 0.6s ease;
}

/* Smooth fade effect */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Headings */
h4, h5, h6 {
  color: #fff;
}

/* Step indicator */
.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  padding: 0 20px;
}

.step {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.3s ease;
}

.step.active {
  background: #0d6efd;
  box-shadow: 0 0 15px #0d6efd;
  transform: scale(1.15);
}

/* Summary */
.summary {
  background: rgba(255,255,255,0.08);
  border-radius: 15px;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Inputs */
.form-label { color: white; }
.small { color: #fff; }

.form-control,
.form-select {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  transition: 0.3s ease;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.75);
}

/* --- Input Focus Effect --- */
.form-control:focus,
.form-select:focus {
  background: rgba(255,255,255,0.25);
  border-color: #0d6efd;
  box-shadow: 0 0 10px rgba(13,110,253,0.5);
  color: #fff;
}

/* BUTTONS */
.btn.custom {
  background: #0d6efd;
  border: none;
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.custom:hover {
  background: #0057d9;
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border: none;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.32);
}

/* Success Box */
.success-box {
  background: rgba(40,167,69,0.22);
  border: 1px solid rgba(40,167,69,0.4);
  padding: 25px;
  border-radius: 15px;
  color: #c3f3d4;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .glass{
    padding: 25px;
    margin: 35px 15px;
  }
  .step-indicator {
    flex-direction: column;
    gap: 10px;
  }
}
