/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  html, body {
    width: 100%;
    min-height: 100vh;
    background-color: #f4f9ff;
    color: #333;
    line-height: 1.6;
  }
  
  /* --- NAVBAR --- */
  header {
    background-color: #083c74;
    color: #fff;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    font-size: 1.8rem;
    font-weight: 700;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s;
  }
  nav ul li a:hover, nav ul li a.active {
    color: #cce0ff;
  }
  
  /* --- GLOBAL BUTTON --- */
  .btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
  }
  
  /* --- HERO --- */
  .hero {
    padding: 100px 20px;
    text-align: center;
    background: #eef3fa;
  }
  .hero h1 {
    font-size: 2.8rem;
    color: #083c74;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* --- HOW IT WORKS --- */
  .how-it-works {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
  }
  .how-it-works h2 {
    font-size: 2.4rem;
    color: #083c74;
    margin-bottom: 2rem;
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  .step {
    background: #f4f9ff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  .step:hover {
    transform: translateY(-5px);
  }
  .step h3 {
    font-size: 1.3rem;
    color: #083c74;
    margin-bottom: 1rem;
  }
  .step p {
    font-size: 1rem;
    color: #555;
  }
  
  /* --- TESTIMONIALS --- */
  .testimonials {
    background: #eefaff;
    padding: 80px 20px;
    text-align: center;
  }
  .testimonials h2 {
    font-size: 2.4rem;
    color: #083c74;
    margin-bottom: 2rem;
  }
  .testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .card {
    background: #fff;
    padding: 2rem;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  .card:hover {
    transform: translateY(-5px);
  }
  .card img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .card h4 {
    font-weight: 600;
    color: #007bff;
  }
  
  /* --- LOGIN SECTION --- */
  .login-section {
    padding: 80px 20px;
    background: #fafafa;
    text-align: center;
  }
  .login-section h2 {
    font-size: 2.4rem;
    color: #083c74;
    margin-bottom: 1.5rem;
  }
  .login-card {
    background: #fff;
    padding: 2rem;
    max-width: 400px;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .login-form input {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  .login-form input:focus {
    border-color: #007BFF;
    outline: none;
  }
  .login-form button {
    padding: 0.9rem;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  .login-form button:hover {
    background-color: #0056b3;
  }
  
  /* --- CONTACT FORM --- */
  .contact-section {
    padding: 80px 20px;
    background: #eef3fa;
    text-align: center;
  }
  .contact-section h2 {
    font-size: 2.4rem;
    color: #083c74;
    margin-bottom: 1rem;
  }
  .contact-section p {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: auto 0 2rem;
  }
  .contact-form {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  .contact-form label {
    display: block;
    font-weight: 600;
    color: #083c74;
    margin-bottom: 0.5rem;
    text-align: left;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  .contact-form button {
    padding: 0.85rem 1rem;
    background-color: #083c74;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  .contact-form button:hover {
    background-color: #062c56;
  }
  
  /* --- FOOTER --- */
  footer {
    background-color: #083c74;
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 80px;
  }
  footer p {
    font-size: 0.9rem;
  }
  
  /* --- ANIMATIONS --- */
  .fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* --- RESPONSIVE --- */
  @media (max-width: 768px) {
    .steps, .testimonial-cards {
      flex-direction: column;
      align-items: center;
    }
    .nav-container {
      flex-direction: column;
      gap: 1rem;
    }
  }
  /* Navbar Styles */
.navbar {
    background-color: #083c74;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .navbar nav a {
    color: white;
    margin-left: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .navbar nav a:hover {
    color: #cce0ff;
  }
  /* Fix spacing between sections */
section {
    margin-top: 0;
    padding-top: 0;
  }
  
  /* Optional: Add consistent section spacing */
  .how-it-works {
    margin-bottom: 2rem;
  }
  
  .volunteer-cta {
    padding: 2rem;
    background-color: #f0f7ff;
    border-top: 1px solid #ddd;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  .volunteer-cta h2,
  .volunteer-cta p {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .what-we-do {
    padding: 4rem 2rem;
    text-align: center;
    background: #eaf4ff;
  }
  
  .what-we-do h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #083c74;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  }
  
  .service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    color: #083c74;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #555;
  }
  .service img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
  }
  
  .service img:hover {
    transform: scale(1.1);
  }
  .how-we-work {
    padding: 4rem 2rem;
    background-color: #fdfdff;
    text-align: center;
  }
  
  .how-we-work h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #083c74;
  }
  
  .steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .step {
    flex: 1 1 250px;
    max-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  
  .step img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  
  .step h3 {
    color: #083c74;
    margin-bottom: 0.5rem;
  }
  /* How We Work - Upgraded Section */
.how-we-work {
  background: #f9faff;
  padding: 4rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #083c74;
  margin-bottom: 3rem;
}

.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.step {
  max-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.5rem;
  color: #083c74;
  margin-bottom: 1rem;
}

.step p {
  font-size: 1rem;
  color: #444;
}

/* Hover effect */
.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Fade-in Animation */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Why Join Us Section */
.why-join {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.benefit {
  background-color: #f9faff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit img {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
}

.benefit h3 {
  font-size: 1.4rem;
  color: #083c74;
  margin-bottom: 0.8rem;
}

.benefit p {
  font-size: 1rem;
  color: #444;
}
/* Our Impact Section */
.impact-section {
  background-color: #e6f2ff;
  padding: 4rem 2rem;
  text-align: center;
}

.impact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #083c74;
}

.impact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.impact-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.impact-card:hover {
  transform: scale(1.05);
}

.impact-card h3 {
  font-size: 2.5rem;
  color: #083c74;
  margin-bottom: 0.5rem;
}

.impact-card p {
  font-size: 1.1rem;
  color: #333;
}
/* Testimonials Section */
.testimonials {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #083c74;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  font-size: 1.2rem;
  color: #444;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  animation: fade 0.6s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial h4 {
  margin-top: 1rem;
  color: #083c74;
  font-weight: 600;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* CTA Banner */
.cta-banner {
  background: linear-gradient(90deg, #083c74, #0a58a2);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 3rem;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #083c74;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #cce0ff;
  color: #062c56;
  transform: scale(1.05);
}
.about-main {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
}

.about-main section {
  margin-bottom: 3rem;
}

.about-main h2 {
  font-size: 2rem;
  color: #083c74;
  margin-bottom: 1rem;
}

.about-main p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

.about-main ul {
  list-style: none;
  padding-left: 0;
}

.about-main ul li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #444;
}
.stats-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #eaf3ff;
}

.stats-section .section-title {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #083c74;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  width: 200px;
}

.count {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0a58a2;
  margin-bottom: 0.5rem;
}
/* Appear animation when scrolled into view */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}
.testimonials-section {
  padding: 4rem 2rem;
  background-color: #f5faff;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #0b3d91;
}

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  font-size: 1.2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.timeline-section {
  padding: 4rem 2rem;
  background: #ffffff;
  text-align: center;
}

.timeline {
  position: relative;
  margin-top: 2rem;
  padding-left: 20px;
  border-left: 3px solid #0077cc;
}

.timeline-step {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 1rem;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: #0077cc;
  border-radius: 50%;
  position: absolute;
  left: -11px;
  top: 4px;
}

.timeline-content {
  text-align: left;
  background: #f0f7ff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.timeline-step:hover .timeline-content {
  transform: translateY(-5px);
}
.video-banner {
  padding: 4rem 2rem;
  background-color: #e6f2ff;
  text-align: center;
}

.video-thumb {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-top: 1.5rem;
}

.video-thumb img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 50%;
  pointer-events: none;
}

/* Lightbox styles */
.video-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-overlay.active {
  display: flex;
}

.video-container {
  width: 90%;
  max-width: 800px;
}

.video-container iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
}
.progress-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9f9ff;
}

.progress-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.progress-card h2 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.progress-visual {
  margin: 2rem 0;
}

.progress-bar {
  width: 100%;
  background: #eee;
  border-radius: 20px;
  height: 20px;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, #00b894, #0984e3);
  height: 100%;
  width: 0;
  transition: width 2s ease-in-out;
}

.progress-label {
  margin-top: 0.5rem;
  font-weight: bold;
  color: #2d3436;
}

.performance-badge {
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 25px;
  font-weight: bold;
  margin-top: 1rem;
  color: white;
}

.performance-badge.excellent {
  background-color: #00b894;
}

.performance-badge.improved {
  background-color: #fdcb6e;
}

.performance-badge.low {
  background-color: #d63031;
}
.volunteer-page .intro {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #f0f8ff;
}

.volunteer-page .intro h1 {
  color: #1e3a8a;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.volunteer-page .volunteer-benefits {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  background: #fff;
}

.volunteer-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.volunteer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.volunteer-card img {
  width: 80px;
  margin-bottom: 1rem;
}

.volunteer-cta {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #e6f2ff;
}

.volunteer-cta .btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #1e3a8a;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.volunteer-cta .btn-primary:hover {
  background: #163174;
}
/* Volunteer Page Styles */

/* Intro */
.volunteer-page .intro {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(to right, #e0f7fa, #ffffff);
}
.volunteer-page .intro h1 {
  font-size: 2.5rem;
  color: #0a3d62;
}
.volunteer-page .intro p {
  font-size: 1.1rem;
  color: #34495e;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Why Volunteer */
.why-volunteer {
  padding: 4rem 2rem;
  background: #f9fafe;
  text-align: center;
}
.why-volunteer h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 2rem;
}
.reasons-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.reason-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 280px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}
.reason-card:hover {
  transform: translateY(-5px);
}
.reason-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}
.reason-card h3 {
  font-size: 1.2rem;
  color: #333;
}
.reason-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Training Section */
.training-support {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}
.training-support h2 {
  color: #2d3436;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.training-support p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  color: #444;
}

/* Timeline */
.volunteer-timeline {
  padding: 4rem 2rem;
  background-color: #f0f7ff;
}
.volunteer-timeline h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 2rem;
}
.timeline {
  max-width: 600px;
  margin: auto;
  list-style: none;
  padding-left: 0;
  position: relative;
}
.timeline li {
  background: white;
  border-left: 4px solid #1e3a8a;
  margin-bottom: 1rem;
  padding: 1rem 1rem 1rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  position: relative;
}
.timeline li::before {
  content: "📘";
  position: absolute;
  left: -1.3rem;
  top: 1rem;
  font-size: 1rem;
}

/* CTA Section */
.volunteer-cta {
  background: #dbeafe;
  padding: 3rem 2rem;
  text-align: center;
}
.volunteer-cta h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.volunteer-cta .btn-primary {
  background-color: #1e3a8a;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.volunteer-cta .btn-primary:hover {
  background-color: #2744a2;
}

/* FAQ Section */
.volunteer-faq {
  background: #fff;
  padding: 4rem 2rem;
}
.volunteer-faq h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 2rem;
}
.faq {
  max-width: 700px;
  margin: 0 auto;
}
.faq h4 {
  font-size: 1.1rem;
  color: #0a3d62;
  margin-bottom: 0.3rem;
}
.faq p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.5rem;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.appear {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.pro-footer {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #f1f5f9;
  padding: 4rem 1rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  text-align: left;
}

.footer-grid h2,
.footer-grid h4 {
  color: #38bdf8;
  margin-bottom: 1rem;
}

.footer-grid p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin: 0.6rem 0;
}

.footer-links ul li a {
  color: #f1f5f9;
  text-decoration: none;
  position: relative;
  padding-left: 1.2rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-links ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

.footer-links ul li a:hover {
  color: #38bdf8;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-social .social-icons a img {
  width: 26px;
  height: 26px;
  margin-right: 0.7rem;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social .social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(1) saturate(1.2);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ffffff22;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
  color: #cbd5e1;
}
.dashboard-options {
  text-align: center;
  padding: 3rem 1rem;
}

.dashboard-options .options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.dashboard-btn {
  background-color: #0066cc;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.dashboard-btn:hover {
  background-color: #004999;
}
/* =====================
   School Register Page Styling
====================== */

.form-section {
  max-width: 600px;
  margin: 3rem auto;
  background-color: #ffffff;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.form-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #003366;
}

.section-description {
  color: #666;
  margin-bottom: 1.5rem;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register-form label {
  font-weight: 600;
  color: #003366;
}

.register-form input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  background-color: #004080;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #002d66;
}
/* ==== Navbar Button Styling ==== */
nav .btn {
  padding: 0.4rem 1rem;
  background-color: #004080;
  color: white;
  border-radius: 6px;
  margin-left: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

nav .btn:hover {
  background-color: #0066cc;
}
.register-container {
  max-width: 500px;
  margin: 50px auto;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.register-container h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.register-container label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.register-container input,
.register-container select,
.register-container button {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.register-container button {
  background: #0066ff;
  color: white;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.register-container button:hover {
  background: #004ecc;
}
.login-container {
  max-width: 400px;
  margin: 4rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.login-container h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-align: center;
}
.login-container input,
.login-container select {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.login-container button {
  width: 100%;
  background: #0077cc;
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.login-container button:hover {
  background: #005fa3;
}




  
  
  
  
  