/* Hero Section */
.hero-section {
  height: 100vh;
  background: url("assets/banner.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero-section .container {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease;
}

/* Navbar */
.navbar {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: linear-gradient(90deg, #FF9800, #F57C00);
}
.navbar-brand {
  color: #fff !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* Sections */
.form-section, .results-section {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.form-section:hover, .results-section:hover {
  transform: translateY(-5px);
}
.section-header img {
  border-radius: 50%;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(90deg, #FF9800, #E65100);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #E65100, #BF360C);
  transform: scale(1.05);
}

/* Cards */
.card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.card-title {
  color: #E65100;
  font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating Diyas Animation */
.diya {
  position: absolute;
  bottom: -60px;
  width: 40px;
  height: 40px;
  background: url("assets/diya.png") no-repeat center/contain;
  animation: floatUp 12s linear infinite;
  opacity: 0.8;
}

/* Multiple diyas with delay & scaling */
.diya:nth-child(1) { left: 10%; animation-delay: 0s; transform: scale(0.8); }
.diya:nth-child(2) { left: 25%; animation-delay: 3s; transform: scale(1.1); }
.diya:nth-child(3) { left: 50%; animation-delay: 6s; transform: scale(0.9); }
.diya:nth-child(4) { left: 75%; animation-delay: 9s; transform: scale(1.2); }
.diya:nth-child(5) { left: 90%; animation-delay: 12s; transform: scale(0.7); }

@keyframes floatUp {
  0% { transform: translateY(0) scale(var(--scale,1)); opacity: 0; }
  10% { opacity: 1; }
  50% { opacity: 0.9; }
  100% { transform: translateY(-110vh) scale(var(--scale,1)); opacity: 0; }
}
.hero-section {
  height: 100vh;
  background: url("bright.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3); /* light overlay for contrast */
}
.hero-section .container {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease;
}
.hero-section h1 {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}
.hero-section p {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Particle container */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

/* Particle style */
.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 223, 100, 0.9) 0%, rgba(255, 140, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatUp linear infinite;
  opacity: 0.7;
}

/* Floating effect */
@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-10vh) scale(1.2);
    opacity: 0;
  }
}


/* testing   */

.toggle-options .btn {
  border-radius: 25px;
  font-weight: bold;
  padding: 10px 20px;
  transition: all 0.3s ease;
}
.toggle-options .btn.active {
  background: linear-gradient(90deg, #ff9800, #e65100);
  color: #fff;
  border: none;
  box-shadow: 0 0 12px rgba(255, 152, 0, 0.6);
}


/* Labels */
.form-label {
  font-size: 0.95rem;
  color: #d84315;
  margin-bottom: 6px;
}

/* Inputs */
.form-control, .form-select {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #ffe0b2;
  transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
  border-color: #ff9800;
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
  outline: none;
}

/* Submit Button */
#registerForm button {
  border-radius: 30px;
  font-weight: bold;
  padding: 12px;
}

.location-field input {
  border-radius: 10px 0 0 10px;
}

.location-field .removeLocation {
  border-radius: 0 10px 10px 0;
}

#addLocation {
  border-radius: 20px;
  font-weight: bold;
}
.service-field select,
.language-field select {
  border-radius: 10px 0 0 10px;
}

.service-field .removeService,
.language-field .removeLanguage {
  border-radius: 0 10px 10px 0;
}
.form-control[type="number"] {
  border-radius: 12px;
  padding: 12px;
}


