/* Shared container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

/* Top bar */
.top-bar {
  background-color: #1F7A4C !important;
  color: #FFFFFF;
}

.top-bar .container {
  display: flex;              /* make sure flex is set */
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 24px;
}

.volunteer-text {
  font-size: 14px;
  font-weight: bold;
}

/* Social media links replacing language selector */
.social-links {
  display: flex;
  gap: 15px;                  /* space between icons */
}

.social-icon {
  color: #FFFFFF;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #ff6347;            /* accent color on hover */
  transform: scale(1.1);      /* subtle pop on hover */
}

/* Optional: make icons circular background */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; 
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1); /* subtle circle */
}

/* Navbar */
.navbar {
  background-color: #FFFFFF;
  border-bottom: 2px solid #1F7A4C;
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.logo img {
  width: 120px; /* fixed width for logo */
  height: auto;
}

.logo span {
  font-weight: bold;
  color: #1F7A4C;
  margin-left: 8px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #1F7A4C;
  font-weight: 700;
  font-size: 15px;
}

.nav-links a:hover {
  color: orangered;
}


#donateBtn {
  background-color: orangered;
  color: #FFFFFF;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}



/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  border: 1px solid #1F7A4C;
  list-style: none;
  padding: 8px 0;
  min-width: 180px;
  z-index: 1000;
}

.dropdown-menu li a {
  color: #1F7A4C;
  padding: 8px 16px;
  display: block;
}

.dropdown-menu li a:hover {
  background-color: orangered;
  color: #FFFFFF;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    margin-left: auto; /* keeps toggle beside logo */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #FFFFFF;
    border: 1px solid #1F7A4C;
    padding: 10px;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  /* Donate button fixed at bottom */
  #donateBtn {
  background: #ff4d00;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 2rem;
}

}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.carousel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 80%;
  max-width: 800px;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.carousel-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #1F7A4C;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: orangered;
  width: 20px;
  border-radius: 10px;
}

.dot:hover {
  background: orangered;
}

/* Mobile Responsive for Carousel */
@media (max-width: 768px) {
  .hero-carousel {
    height: 70vh;
    min-height: 400px;
  }
  
  .carousel-content h2 {
    font-size: 1.8rem;
  }
  
  .carousel-content p {
    font-size: 1rem;
  }
  
  .carousel-btn {
    font-size: 1.2rem;
    padding: 5px 12px;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
}



/* Mission Section */
.mission {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.mission .container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;      /* center horizontally */
  text-align: center;
}

.mission-title {
  color: #1F7A4C;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.mission-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.mission-btn {
  background-color: orangered;
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
}

.mission-btn:hover {
  background-color: #1F7A4C;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mission {
    padding: 40px 15px;
  }

  .mission-title {
    font-size: 1.6rem;   /* smaller heading */
    margin-bottom: 15px;
  }

  .mission-text p {
    font-size: 1rem;     /* smaller text */
    margin-bottom: 20px;
  }

  .mission-btn {
    width: 100%;         /* full-width button on mobile */
    padding: 14px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mission-title {
    font-size: 1.4rem;
  }

  .mission-text p {
    font-size: 0.95rem;
  }

  .mission-btn {
    font-size: 0.95rem;
    padding: 12px;
  }
}


.help-section {
  display: flex;
  min-height: 500px;
  margin-bottom: .5rem;
}

.help-section .left {
  flex: 1;
  background: #f37338;
  color: #fff;
  padding: 80px;
}

.help-section .small-text {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.help-section h1 {
  font-size: 42px;
  margin-bottom: 40px;
}

.accordion .item {
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 20px 0;
}

.question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
}

.icon {
  font-size: 20px;
}

.answer {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.item.active .answer {
  display: block;
}

.help-section .right {
  flex: 1;
}

.help-section .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 900px) {
  .help-section {
    flex-direction: column;
  }

  .help-section .left {
    padding: 40px 20px;
  }
}


/* programme */
.programmes {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.programmes .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #1F7A4C;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
}

.programme-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center cards horizontally */
  gap: 30px;
  margin: 0 auto;
  max-width: 1100px; /* container width to centralize all cards */
}
.programme-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 320px; /* medium size card */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.programme-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.programme-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}

.programme-item h3 {
  color: orangered;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.programme-item p {
  font-size: 1rem;
  color: #555;
}
.programme-item {
  display: block;          /* let <a> act like a card block */
  text-decoration: none;   /* remove underline */
  color: inherit;          /* preserve text colors */
}

/* Responsive */
@media (max-width: 992px) {
  .programme-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
  .programme-item {
    width: 45%; /* medium size, 2 per row on tablet */
  }
}

@media (max-width: 600px) {
  .programme-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
   .programme-item {
    width: 90%; /* centered 1 per row on mobile */
  }
}


.be-the-change {
  background-image: url('images/be-the-change.jpeg'); /* your background image */
  background-size: cover;        /* scales image to cover section */
  background-position: center;   /* keeps image centered */
  padding: 100px 20px;           /* spacing top/bottom */
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.be-the-change .container {
  max-width: 900px;
  margin: 0 auto;
}

.change-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.change-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .change-content h2 {
    font-size: 2rem;
  }
  .change-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .be-the-change {
    padding: 60px 15px;
  }
  .change-content h2 {
    font-size: 1.6rem;
  }
  .change-content p {
    font-size: 1rem;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.impact-section {
  background-color: #1F7A4C;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.impact-content {
  max-width: 800px;
  margin: 0 auto;
}

/* TEXT */
.subtitle {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.impact-section h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.description {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* BUTTON */
.cta-btn {
  background: #d9d9d9;
  color: #1F7A4C;
  border: none;
  padding: 14px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ===== RESPONSIVENESS ===== */

/* Tablet */
@media (max-width: 768px) {
  .impact-section {
    padding: 60px 15px;
  }

  .impact-section h1 {
    font-size: 32px;
  }

  .description {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .impact-section {
    padding: 50px 15px;
  }

  .impact-section h1 {
    font-size: 26px;
  }

  .description {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    padding: 14px;
  }

  /* Remove forced line break on mobile */
  .desktop-break {
    display: none;
  }
}



.site-footer {
  background-color: #1F7A4C; /* deep purple */
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container h3,
.footer-container h4 {
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-newsletter input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
}

.footer-newsletter button {
  padding: 10px 18px;
  background-color: orangered;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.footer-newsletter button:hover {
  background-color: #1F7A4C;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-newsletter input {
    margin-bottom: 10px;
    width: 100%;
  }
  .footer-newsletter button {
    width: 100%;
  }
}





.welcome-section {
  background: #efefef;
  padding: 100px 0;
}

/* MAIN LAYOUT */
.welcome-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 80px;
}

/* IMAGE */
.welcome-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* TEXT SIDE */
.welcome-text {
  max-width: 520px;
}

.welcome-text h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.welcome-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #6b6b6b;
  margin-bottom: 35px;
}

/* BUTTON */
.learn-btn {
  display: inline-block;
  background: orangered;
  color: #fff;
  padding: 14px 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .welcome-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .welcome-text {
    max-width: 100%;
  }

  .welcome-text h2 {
    font-size: 32px;
  }
}



/* education */
/* section-styles.css */
.ocf-school-section {
  font-family: system-ui, 'Segoe UI', 'Helvetica Neue', 'Roboto', 'Arial', sans-serif;
  background-color: #f5f3ef;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.ocf-school-section * {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

.section-container {
  max-width: 1100px;
  width: 100%;
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
  padding: 56px 40px 64px 40px;
  text-align: center;
  transition: all 0.2s ease;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #1f2a3e;
  margin: 0 0 28px 0;
  line-height: 1.25;
}

.button-wrapper {
  margin-top: 8px;
}

.donate-btn {
  display: inline-block;
  background-color: orangered;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 14px 34px;
  border-radius: 40px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.donate-btn:hover {
  background-color: green;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.2);
}

.donate-btn:active {
  transform: translateY(1px);
}

@media (max-width: 680px) {
  .section-container {
    padding: 40px 24px 48px 24px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .donate-btn {
    font-size: 16px;
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
  
  .donate-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}



/* donate button */
/* Modal background */
/* Overlay (dark blurred background) */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Main card */
.modal-container {
  background: #ffffff;
  width: 90%;
  max-width: 520px;
  border-radius: 18px;
  padding: 30px 25px;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: popUp 0.4s ease;
}

/* Smooth entrance */
@keyframes popUp {
  0% { transform: scale(0.9) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Close button */
.close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 22px;
  border: none;
  background: #f2f2f2;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  background: orangered;
  color: #fff;
}

/* Foundation name */
.foundation-name {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: orangered;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Amount buttons */
.donation-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.amount-btn {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}

.amount-btn:hover {
  background: orangered;
  color: #fff;
  transform: translateY(-2px);
}

.amount-btn.active {
  background: orangered;
  color: #fff;
  box-shadow: 0 6px 20px rgba(31,122,76,0.3);
}

/* Custom amount */
.custom-amount-wrap input {
  grid-column: span 2;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
}

.custom-amount-wrap input:focus {
  border-color: orangered;
  box-shadow: 0 0 0 3px rgba(31,122,76,0.15);
}

/* Form */
.form-row {
  display: flex;
  gap: 10px;
}

.input-group {
  flex: 1;
  margin-bottom: 12px;
}

.input-group label {
  font-size: 13px;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 5px;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #1F7A4C;
  box-shadow: 0 0 0 2px rgba(31,122,76,0.1);
}

/* Checkbox */
.anonymous-check {
  font-size: 13px;
  color: #666;
  display: block;
  margin-top: 5px;
}

/* Bank details box */
.bank-details {
  background: linear-gradient(135deg, #1F7A4C, #145c38);
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.donation-footer {
  margin-top: 18px;
  text-align: center;
}

.donation-total {
  font-size: 18px;
  font-weight: 700;
  color: #1F7A4C;
}

/* Mobile */
@media (max-width: 500px) {
  .form-row {
    flex-direction: column;
  }
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #1F7A4C;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #145c38;
  transform: translateY(-2px);
}

.copy-btn {
  margin-left: 10px;
  padding: 6px 12px;
  border: none;
  background: #1F7A4C;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.copy-btn:hover {
  background: #145c38;
}

.copy-tooltip {
  display: inline-block;
  margin-left: 8px;
  color: white;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s;
}
.copy-tooltip.show {
  opacity: 1;
}

/* floating button */
.floating-donate {
  position: fixed;
  bottom: 20px;
  right: 15px;
  background: linear-gradient(135deg, #ff4d00, #ff7a00);
  color: #fff;
  padding: 14px 18px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Hover effect */
.floating-donate:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 77, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0); }
}

.floating-donate {
  animation: pulse 2.5s infinite;
}


/* contact */
.contact-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-map {
  flex: 1 1 500px; /* responsive width */
  min-height: 350px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #1F7A4C;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item .icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: orangered; /* icon color */
}

.info-item div strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-item div p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-map, .contact-info {
    flex: 1 1 100%;
  }
}
.info-item a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.info-item a:hover {
  transform: translateX(5px); /* subtle hover effect */
}

.contact-map {
  flex: 1 1 500px; /* responsive width */
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


.contact-form-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.form-container h2 {
  font-size: 2rem;
  color: #1F7A4C;
  margin-bottom: 15px;
  text-align: center;
}

.form-container p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1F7A4C;
  outline: none;
}

.send-btn {
  background-color: #1F7A4C;
  color: #fff;
  padding: 14px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.send-btn:hover {
  background-color: #165a37;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .form-container {
    padding: 0 15px;
  }
}



/* volunteer */
.volunteer-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.volunteer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.volunteer-section h2 {
  font-size: 2rem;
  color: #1F7A4C;
  margin-bottom: 15px;
}

.volunteer-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #333;
}

.volunteer-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.highlight-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.highlight-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: orangered;
}

.highlight-card p {
  font-size: 1rem;
  color: #555;
}

.volunteer-cta .cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #25D366; /* WhatsApp green */
  color: #fff;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.volunteer-cta .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Optional pulse animation */
.volunteer-cta .cta-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .volunteer-highlights {
    flex-direction: column;
    align-items: center;
  }
}