/* Global Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #2e7d32;
  color: white;
  padding: 2.5rem 1rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
}

nav {
  background: #1b5e20;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem;
}

nav a:hover {
  background-color: #388e3c;
  border-radius: 5px;
}

.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Impact Boxes */
.impact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.impact div {
  background: #e8f5e9;
  padding: 2rem;
  flex: 1 1 250px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Buttons and Forms */
button,
input[type="submit"] {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

button:hover,
input[type="submit"]:hover {
  background-color: #388e3c;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  max-width: 500px;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Donate Section */
.donate-section {
  background: #c8e6c9;
  padding: 3rem 2rem;
  text-align: center;
}

.donate-section a {
  background: #1b5e20;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.donate-section a:hover {
  background: #388e3c;
}

/* Footer */
footer {
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 1.2rem 1rem;
  margin-top: 4rem;
}

/* Floating Social Media Icons */
.social-floating {
  position: fixed;
  right: 20px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-floating a {
  background: #1b5e20;
  color: white;
  padding: 0.7rem;
  border-radius: 50%;
  text-align: center;
  font-size: 1.2rem;
  animation: float 2s infinite ease-in-out;
  transition: background 0.3s;
}

.social-floating a:hover {
  background: #43a047;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

  .section h3 {
    font-size: 1.5rem;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .impact {
    flex-direction: column;
  }
}

form button.selected {
  background-color: #1b5e20;
  border: 2px solid #81c784;
}

.swiper-container {
  padding: 2rem 0;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.swiper-slide img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}
.vertical-carousel {
  height: 400px; /* adjust as needed */
  width: 200px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background: #fff;
}

.vertical-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding: 1rem;
}

.vertical-carousel img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 2rem;
  padding: 2rem;
}

.main-content {
  min-width: 0;
}

.sidebar {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.sidebar h4 {
  text-align: center;
  margin-bottom: 1rem;
}

.vertical-carousel {
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.vertical-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding: 1rem;
}

.vertical-carousel img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar {
    margin-top: 2rem;
  }
}
.impact img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}


