* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: 2as#f6f5f9;
  color: #333;


       
}

/* HEADER */
header {
  width: 100%;
  padding: 15px 50px;
  background-color: #e7f5ef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.hero{
  background: url('./photos/imagesnew/sl1.jpg');
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  
  
}

.logo a {
  text-decoration: none;
  font-size: 1.6rem;
  /**font-weight: 700;**/
  font-weight: bold;
  color: #1d7044;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.logo a:hover {
  color: #145a33;
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
  gap: 40px; /* space between links and donate button */
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-right: 40px; /* pulls nav links a bit left */
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1d7044;
}

.donate-btn {
  background-color: #1d7044;
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  margin-left: 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.donate-btn:hover {
  background-color: #145a33;
}

.slide {
  display: none;
  position: relative;
}

.slide img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  position: relative;
  z-index: 1; /* image behind the text */
}


.slide img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
}

/* Floating captions */
.caption {
  position: absolute;
  z-index: 2; /* ensure text is above the image */
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 2s ease forwards;
  opacity: 0;
}

/* Different slide positions for variety */
.caption1 {
  bottom: 25%;
  left: 10%;
}

.caption2 {
  top: 35%;
  right: 10%;
  text-align: right;
}

.caption3 {
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* MISSION & VISION */
.mission-vision {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  padding: 0 10% 60px;
  margin-top: -120px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.carousel {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}


.carousel h2 {
  color: #1d7044;
  margin-bottom: 15px;
}

.carousel p {
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeIn 1s ease;
}

/* CTA BUTTONS */
.cta-buttons {
  text-align: center;
  margin: 50px 0;
}

.cta {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.join {
  background-color: #1d7044;
  color: white;
}

.donate {
  background-color: #ffb703;
  color: #333;
}

.help {
  background-color: #219ebc;
  color: white;
}

.cta:hover {
  transform: scale(1.05);
}

/* EMPOWERMENT SECTION */
.empower-section {
  padding: 50px 8%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeIn 2s ease;
}
.explore{

  font-size: 20px;
  color: rgb(254, 6, 6);
  font-style: helvetica;
  font-size: 30px;
}

.empower-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.empower-left img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: fadeIn 2s ease;
}

.empower-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.empower-right article {
  margin-bottom: 40px;
}

.empower-right h2 {
  color: #1d7044;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.empower-right p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}


.believe-text {
  font-family: 'Dakota', 'Bistro', cursive;
  font-size: 3rem;
  color: #1d7044;
  text-align: right;
  margin-top: 10px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
  animation: fadeIn 2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 900px) {
  .empower-container {
    flex-direction: column;
    text-align: center;
  }

  .believe-text {
    text-align: center;
    font-size: 2.5rem;
  }

  .empower-left img {
    max-width: 100%;
  }
}

/* OUR PRACTICE Section */
.our-practice {
  position: relative;
  background: #afb7bd;
  padding: 100px 10% 150px;
  overflow: hidden;
  
}

/* Flex layout for text + video */
.practice-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.practice-content .text {
  flex: 1;
  min-width: 320px;
}

.practice-content .text h2 {
  font-family: 'Dakota', 'Bistro', cursive;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.practice-content .text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

/* Video on the right */
.practice-content .video {
  flex: 1;
  min-width: 350px;
  text-align: right;
}

.practice-content .video video {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Curved bottom design */
.curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #fff;
  border-top-left-radius: 100% 80px;
  border-top-right-radius: 100% 80px;
}

/* OUR PROJECTS Section */
.our-projects {
  background: #fff;
  padding: 100px 1%;
  text-align: center;
  position: relative;
  
}

.our-projects h2 {
  font-family: 'Dakota', 'Bistro', cursive;
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

/* Horizontal scroll layout */
.projects-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 5px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.projects-container::-webkit-scrollbar {
  height: 10px;
}

.projects-container::-webkit-scrollbar-thumb {
  background: #a2c4d6;
  border-radius: 10px;
}

.project-card {
  min-width: 280px;
  background: #f8faff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.project-card img {
  width: 50%;
  height: 150px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.project-card h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
  color: #2c3e50;
}

.project-card p {
  font-size: 0.95rem;
  padding: 0 15px 20px;
  color: #555;
  line-height: 1.5;
}


