
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
    font-family: Arial, sans-serif;
}

/* Nav */
.navbar {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 50px;
}

.donate-btn {
  background-color: #f86f2d;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.donate-btn:hover {
  background-color: #fe8447; /* Slightly darker on hover */
}

/* Nav */


/* Bnaner */

.banner {
  width: auto;
  margin: 30px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 60vh;
  max-height: 800px;
  display: block;
}

.banner img {
    height: 800px;
}


@media (max-width:700px) {

    .banner-img {
        width: 100%;
        height: 60vh;
        max-height: 500px; 
        display: block;
    }
    .banner img {
    height: 500px;
    }
}

@media (max-width:600px) {

    .banner-img {
        width: 100%;
        height: 60vh;
        max-height: 350px; 
        display: block;
    }
    .banner img {
    height: 350px;
    }
}

@media (max-width:500px) {

    .banner-img {
        width: 100%;
        height: 60vh;
        max-height: 280px; 
        display: block;
    }
    .banner img {
    height: 350px;
    }
}

/* Bnaner */





/* Form */

/* Donation Section Base */
.donation-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.donation-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1300px;
  margin: auto;
  align-items: flex-start;
  justify-content: space-between;
}

/* Form Block */
.donation-form {
  flex: 1 1 500px;
  border: 1px solid #f86f2d;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.donation-form h2 {
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.donation-form p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.donation-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.donation-form input[type="text"],
.donation-form input[type="email"],
.donation-form input[type="number"] {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

.checkbox-container {
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-container input[type="checkbox"] {
  margin-top: 4px;
}

.donation-form button {
  background-color: #f86f2d;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

/* Text Block */
.donation-text {
  flex: 1 1 700px;
}

.donation-text h2 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.donation-text p {
  font-size: 14.4px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.donation-text .text{
  text-align: justify;

}

/* Responsive Behavior */
@media (max-width: 768px) {
  .donation-container {
    flex-direction: column;
  }

  .donation-form {
    order: 1;
  }

  .donation-text {
    order: 2;
  }
}

#donationForm #pan {
    text-transform: uppercase;
}

#donationForm #fullname {
    text-transform: uppercase;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* Form */




/* FAQ */


.faq-container {
  max-width: 90%;
  margin: auto;
  padding: 1rem;
}

.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background: #f9f9f9;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: #fff;
  font-size: 0.95rem;
  text-align: justify;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem;
}

.icon {
  font-size: 1.5rem;
  color: #f86f2d;
  transition: 0.3s;
}

/* FAQ */



/* Footer */

.footer-section {
  background-color: #000;
  color: #fff;
  padding: 2rem 1rem;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-decoration: underline;
}

/* Contact list styling */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  color: #d1d5db;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
}

/* Each contact item */
.footer-contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.footer-contact-item a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-icon {
  color: #fff;
  font-size: 1rem;
  min-width: 1rem;
}

/* Email hover effect */
.footer-email-link:hover {
  text-decoration: underline;
}

/* Social icons container */
.footer-social-icons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Social icon buttons */
.social-icon {
  background-color: #1f2937;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.social-icon i {
  color: #fff;
  font-size: 1rem;
}

.social-icon:hover {
  background-color: #374151;
}


/* Small screen styles (matching second image) */
@media (max-width: 767px) {
  .footer-section {
    padding: 1.5rem 1rem;
  }
  
  .footer-heading {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .footer-contact-list {
    gap: 0.5rem;
  }
  
  .footer-contact-item {
    font-size: 0.75rem;
  }
  
  .footer-social-icons {
    margin-top: 1rem;
    gap: 0.75rem;
  }
  
  .social-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

/* Medium and larger screens (matching first image) */
@media (min-width: 768px) {
  .footer-section {
    padding: 3rem 1.5rem;
  }
  
  .footer-heading {
    font-size: 1.25rem;
  }
  
  .footer-contact-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .footer-contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: center;
    font-size: 1rem;
  }
  
  .social-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .social-icon i {
    font-size: 1.125rem;
  }
}

/* Footer */