body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
}

/* Hero Section */
.hero-section {
  background: url('https://res.cloudinary.com/bhiwandi/image/upload/v1761723383/shvosm_kbk2qr.jpg') center/cover no-repeat;
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn-primary {
  background-color: #393186;
  border: none;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #4e43a2;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(57,49,134,0.3);
}

/* Text colors */
.text-primary {
  color: #393186 !important;
}

/* Navbar link hover */
.nav-link:hover,
.nav-link.active {
  color: #393186 !important;
  transition: color 0.3s ease-in-out;
}

/* Footer */
footer {
  background: var(--bs-dark);
  color: var(--bs-light);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease-out;
}
.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Dark mode */
[data-bs-theme="dark"] {
  background-color: #121212;
  color: #eaeaea;
}

/* Custom color overrides for dark mode */
[data-bs-theme="dark"] .btn-primary {
  background-color: #4e43a2;
}
[data-bs-theme="dark"] .btn-primary:hover {
  background-color: #5f52c0;
}
[data-bs-theme="dark"] .text-primary {
  color: #726bf8 !important;
}

  #photoPreview img, #aadharPreview img {
    display: block;
    margin-top: 8px;
    border-radius: 8px;
    border: 1px solid #ddd;
  }