body {
  background-color: #f8f9fa;
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(to right, #f3f4f7, #e6ecff);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hindi-text {
	font-family: 'Mukta', sans-serif;
}
.program-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.error-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.error-code {
  font-size: 8rem;
  font-weight: 900;
  color: #dc3545;
}
.error-message {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.home-link {
  margin-top: 1rem;
}

.project-card img {
  object-fit: cover;
  height: 200px;
}

.project-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.donate-hero {
  background: url('../images/banners/donate-hero.jpg') center center / cover no-repeat;
  height: 280px;
  position: relative;
  color: #fff;
}
.donate-hero::before {
  content: '';
  background-color: rgba(0,0,0,0.6);
  position: absolute;
  inset: 0;
}
.donate-hero .container {
  position: relative;
  z-index: 2;
}
.donation-box {
  transition: 0.3s;
  border: 2px solid #eee;
}
.donation-box:hover {
  border-color: #0d6efd;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.donation-form input, .donation-form textarea {
  border-radius: 0.5rem;
}
.thank-you {
  padding: 80px 20px;
  text-align: center;
}
.thank-you img {
  max-width: 120px;
}

.volunteer-hero {
  background: url('../images/banners/volunteer-banner.jpg') center/cover no-repeat;
  height: 280px;
  position: relative;
  color: white;
}

.volunteer-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.volunteer-hero .container {
  position: relative;
  z-index: 2;
}

.form-control, .form-select {
  border-radius: 0.5rem;
}

.contact-hero {
  background: url('../images/banners/contact-banner.jpg') center/cover no-repeat;
  height: 280px;
  position: relative;
  color: white;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.contact-hero .container {
  position: relative;
  z-index: 2;
}
.contact-info-box {
  background-color: #f8f9fa;
  border-left: 5px solid #0d6efd;
  padding: 20px;
  border-radius: 5px;
}
.login-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}
.login-box {
  max-width: 400px;
  width: 100%;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.login-box .form-control {
  border-radius: 8px;
}
.brand-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
footer {
  background: #001f3f;
  color: white;
  padding: 30px 0;
}
.footer-link a {
  color: #ccc;
  text-decoration: none;
}
.footer-link a:hover {
  color: #fff;
}
.team-section {
  padding: 60px 0;
  background: #f9f9f9;
}
.team-card {
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.team-card img {
  height: 260px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.team-card .card-body {
  text-align: center;
}
.team-card .name {
  font-weight: 600;
  font-size: 1.2rem;
}
.team-card .role {
  font-size: 0.95rem;
  color: #555;
}
.volunteer-scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.volunteer-scroll {
  display: flex;
  flex-wrap: nowrap;
  animation: scrollLoop 40s linear infinite;
}

.volunteer-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.volunteer-card:hover {
  transform: translateY(-5px);
}

.volunteer-card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Hide scrollbar (cross-browser) */
.volunteer-scroll::-webkit-scrollbar {
  display: none;
}
.volunteer-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Animation */
@keyframes scrollLoop {
  0% {
	transform: translateX(0%);
  }
  100% {
	transform: translateX(-50%);
  }
}
.donor-scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.donor-scroll {
  display: flex;
  flex-wrap: nowrap;
  animation: donorScroll 30s linear infinite;
}

/* Donor card style */
.donor-card {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  color: #333;
  flex-shrink: 0;
  white-space: nowrap;
  transition: transform 0.3s ease;
}
.donor-card:hover {
  transform: scale(1.05);
}

/* Hide scrollbar */
.donor-scroll::-webkit-scrollbar {
  display: none;
}
.donor-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Auto scroll keyframes */
@keyframes donorScroll {
  0% {
	transform: translateX(0%);
  }
  100% {
	transform: translateX(-50%);
  }
}

.event-img {
  height: 200px;
  object-fit: cover;
}