/* ------------------- Custom Color Classes ------------------- */
.text-bhagwa {
  color: #e65100;
}

.bg-bhagwa {
  background-color: #e65100;
}

.btn-bhagwa {
  background-color: #e65100;
  color: white;
  border: none;
}

.btn-bhagwa:hover {
  background-color: #bf360c;
  color: #fff;
}
/* ------------------- Custom Color Classes End ------------------- */




/* ------------------- Top Bar Section Start ------------------- */
.bg-bhagwa {
  background-color: #e65100; /* saffron */
}

.topbar {
  font-size: 14px;
}

.topbar a {
  transition: 0.3s;
}

.topbar a:hover {
  color: #ffe082;
}
/* ------------------- Top Bar Section End ------------------- */

/* ------------------- Header Section Start ------------------- */
.main-header {
  background-color: #fff7e0;
  border-bottom: 2px solid #e65100;
}

.logo-img {
  max-height: 75px;
  width: 75px;
  border-radius: 50%;
  background-color: white;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #e65100;
}

.navbar-nav .nav-link {
  padding: 8px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: #e65100;
  color: white !important;
  border-radius: 5px;
}

.navbar-nav {
  gap: 12px; /* Adds space between nav links */
}

.navbar-nav .nav-item {
  margin-left: 6px;
  margin-right: 6px;
}

.navbar-nav .nav-link {
  padding: 10px 16px;
  font-size: 16px;
  transition: 0.3s;
  border-radius: 6px;
}

.navbar-nav .nav-link:hover {
  background-color: #e65100;
  color: #fff !important;
}

/* ------------------- Header Section End ------------------- */

/* ------------------- Hero Section Final Start ------------------- */
.hero-section {
  margin-top: 10px;
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(230, 81, 0, 0.45); /* saffron semi-transparent */
  z-index: 2;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 2.8rem;
}

.hero-overlay p {
  font-size: 1.25rem;
}
/* ------------------- Hero Section Final End ------------------- */


/* ------------------- Registration Section Start ------------------- */
.register-section {
  background-color: #fff7e0;
}

.register-section h2 {
  font-weight: 600;
}

.register-section .form-control:focus {
  border-color: #e65100;
  box-shadow: none;
}
/* ------------------- Registration Section End ------------------- */



/* ------------------- Volunteer Form UI Enhancements Start ------------------- */
.register-section {
  background: linear-gradient(to bottom, #fff3e0, #fff7e0);
}

.registration-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid #ffe0b2;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.registration-card:hover {
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
}

.registration-card .form-label {
  font-weight: 500;
  color: #444;
}

.registration-card .form-control:focus,
.registration-card .form-select:focus {
  border-color: #e65100;
  box-shadow: 0 0 0 0.2rem rgba(230, 81, 0, 0.25);
}

.section-title h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #e65100;
}
/* ------------------- Volunteer Form UI Enhancements End ------------------- */

/* ------------------- Thank You Page Styling Start ------------------- */
.thankyou-wrapper {
  background: linear-gradient(to bottom, #fff3e0, #fff7e0);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.thankyou-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 100%;
  animation: slideIn 0.8s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.thankyou-card .check-icon {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.thankyou-card h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #e65100;
}

.thankyou-card p {
  font-size: 1.1rem;
  margin-top: 10px;
  margin-bottom: 25px;
}

.thankyou-card .btn-home {
  background-color: #e65100;
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.thankyou-card .btn-home:hover {
  background-color: #bf360c;
}
/* ------------------- Thank You Page Styling End ------------------- */

