
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  margin: 0;
}
/*to prevent purple visited link*/
a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px 5vw;
  height: 80px;
  box-sizing: border-box;
}

.logo {
  height: 160px;
  transform: translateX(-30px);
  object-fit: contain;
}

.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
}

/* Buttons on the right */
.nav-buttons {
  display: flex;
  align-items: center;
}

.nav-buttons .btn {
  margin-left: 0.75rem;
}

.btn {
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 16px;
  transition: background-color 0.3s;
}

.btn.yellow {
  background-color: #fdd835;
  color: #000;
}

.btn.yellow:hover {
  background-color: #fbc02d;
}

/* ================= VOLUNTEER SECTION ================= */
.volunteer-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 15px;
}

.main-title {
  text-align: center;
  margin-bottom: 20px;
}

/* ================= FORM ================= */
.volunteer-form {
  padding-bottom: 40%;
  border:1px solid black;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 100%;

  /* SCROLLABLE FORM (DESKTOP) */
  max-height: 85vh;
  overflow-y: auto;
  position: sticky;
  top: 20px;
}

/* scrollbar */
.volunteer-form::-webkit-scrollbar {
  width: 6px;
}
.volunteer-form::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* ================= FORM HEADER ================= */
.form-header {
  background: #f7cf56;
  padding: 15px;
  text-align: center;
  border-radius: 6px 6px 0 0;
  margin: -20px -20px 20px;
}

.form-header h3 {
  margin: 0;
}

/* ================= INPUTS ================= */
label {
  font-weight: bold;
  display: block;
  margin-top: 15px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  background: transparent;
}

textarea {
  resize: none;
}

small {
  color: #777;
  font-size: 12px;
}

/* ================= RADIO FIX ================= */
.section-label {
  font-weight: bold;
  display: block;
  margin-top: 15px;
}

.radio-group {
  margin-top: 10px;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.radio-row input[type="radio"] {
  width: auto;
  margin: 0;
}

.radio-row label {
  margin: 0;
  font-weight: normal;
  cursor: pointer;
}

/* ================= BUTTON ================= */
.submit-btn {
  background: #f7cf56;
  border: none;
  padding: 12px;
  width: 40%;
  border-radius: 25px;
  margin: 25px auto;   
  font-size: 16px;
  cursor: pointer;
  display: block;      
}

.submit-btn:hover {
  background: #f1c232;
}

/* Phone input */
.iti {
  width: 100%;
}

.steps-section {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.steps-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #222;
}

.steps-img {
  width: 100%;
  max-width: 1100px;  
  height: auto;
  display: block;
  margin: 0 auto;      
}


/* ================= TESTIMONIALS ================= */
.testimonial-section {
  padding:30px 60px;
  background: #f7f7f7;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  gap: 30px; 
}

.section-title {
  text-align: center;
  font-size: 32px;
  width: 100%; 
  margin-bottom: 30px;
}

.testimonial-card {
  background: #f5d400;
  padding: 30px;
  height:auto;
  border-radius: 25px;
  text-align: center;
  flex: 1 1 calc(33.33% - 20px); 
  box-sizing: border-box;
  margin-bottom: 25px;
}

.testimonial-card p {
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  margin: 0;
  font-weight: bold;
}

.testimonial-card span {
  font-size: 16px;
}

/* ================= FAQ ================= */
.faq-title {
  font-size: 18px;
  margin-left: 20px;
}
.faq-section .faq-title1{
  font-size: 32px;
  text-align: left;
  margin-left: 60px;
}
/* ================= EVENTS + FAQ HEADER ================= */
.faq-section {
  text-align: center;
  padding: 60px 20px 30px;
  background: #fff;
}
/* Heading */
.faq-section h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Button */
.faq-btn {
  background: #000;
  color: #f5d400;
  border: none;
  padding: 10px 28px;
  font-size: 15px;
  border-radius: 25px;
  cursor: pointer;
  margin-bottom: 40px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-btn:hover {
  transform: scale(1.05);
}

.faq-item {
  margin: 20px 60px;
}

.faq-question {
  width: 100%;
  background: #f1f1f1;
  border: none;
  padding: 18px;
  font-size: 16px;
  text-align: left;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .arrow {
  background: #f5c400;
  color: #000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items:baseline;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  background: #f1f1f1;
  padding: 15px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 0 0 5px 5px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

/* ================= FOOTER LINKS ================= */
  /* Footer Base Styles */
.footer {
  background-color: #fff;
  color: #000;
  font-family: inherit;
  margin-top: 60px;
}


.footer-main {
  text-align: center;
  padding: 40px 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-links div {
  text-align: left;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  margin: 10px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  /*background-color: #000;*/
  padding: 15px;
  border-radius: 50%;
  color: #000;
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
}

.whatsapp-float {
  width: 48px;
  height: 48px;
  color: green;
}

/* for mobile navbar*/
/* Base styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: relative;
}

.nav-links ul,
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

.mobile-menu {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #222;
    
  }

  .mobile-menu a {
    color: #111 ; 
    text-decoration: none;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
  }
  .mobile-menu a:hover {
    color: #fdd835; /* optional hover effect */
  }
  

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .mobile-menu .btn {
    width: 80%;
    margin: 0.5rem auto;
  }

  /* ---------- VOLUNTEER SECTION ---------- */
  .volunteer-section {
    max-width: 100%;
    margin: 20px 10px;
    padding: 0 10px;
  }

  .volunteer-form {
    width: 100%;
    position: static;
    max-height: none;
    overflow: visible;
    padding: 15px;
  }

  .submit-btn {
    width: 100%;
  }

  /* ---------- STEPS ---------- */
  .steps-section {
    padding: 30px 10px;
  }

  .steps-img {
    width: 100%;
  }

  /* ---------- TESTIMONIALS (STACK 1 BY 1) ---------- */
  .testimonial-section {
    flex-direction: column;
    padding: 20px 10px;
    gap: 15px;
  }

  .testimonial-card {
    flex: none;
    width: 100%;
  }

  /* ---------- FAQ ---------- */
  .faq-section {
    padding: 30px 10px;
  }

  .faq-item {
    margin: 10px 0;
  }

  .faq-section .faq-title1 {
    margin-left: 0;
    text-align: center;
  }

  /* ---------- FOOTER ---------- */
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-links div {
    text-align: center;
  }

  /* ---------- BUTTONS ---------- */
  .btn,
  .submit-btn,
  .faq-btn {
    width: 100%;
  }

  /* ---------- WHATSAPP ---------- */
  .whatsapp-float {
    width: 42px;
    height: 42px;
    bottom: 15px;
    right: 15px;
  }
}

