*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#ffffff;
  color:#333;
  line-height:1.6;
}

/* NAVBAR */

header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  background:rgba(74,20,140,0.95);
  backdrop-filter:blur(10px);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 8%;
}

/* LOGO */

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:white;
  font-size:1.4rem;
  font-weight:700;
}

/* LOGO IMAGE */

.logo img{
  width:55px;
  height:55px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid #FFD54F;
  background:white;
}

/* LOGO TEXT */

.logo span{
  color:white;
}

/* MOBILE */

@media(max-width:768px){

  .logo{
    font-size:1.1rem;
  }

  .logo img{
    width:45px;
    height:45px;
  }

}

/* NAV LINKS */

.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:white;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#FFD54F;
}

/* HAMBURGER */

.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:6px;
}

.hamburger span{
  width:28px;
  height:3px;
  background:white;
  border-radius:5px;
  transition:0.3s;
}

/* MOBILE MENU */

@media(max-width:768px){

  .hamburger{
    display:flex;
  }

  .nav-links{
    position:absolute;
    top:80px;
    right:-100%;
    width:260px;
    height:100vh;
    background:#4A148C;
    flex-direction:column;
    align-items:center;
    padding-top:60px;
    gap:30px;
    transition:0.4s ease;
  }

  .nav-links.active{
    right:0;
  }

  .nav-links li{
    opacity:0;
    transform:translateX(30px);
    transition:0.4s;
  }

  .nav-links.active li{
    opacity:1;
    transform:translateX(0);
  }

  /* HAMBURGER ANIMATION */

  .hamburger.active span:nth-child(1){
    transform:rotate(45deg) translateY(12px);
  }

  .hamburger.active span:nth-child(2){
    opacity:0;
  }

  .hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translateY(-12px);
  }

}
/* HERO */

.hero{
  height:100vh;
  background:
  linear-gradient(rgba(74,20,140,0.75),
  rgba(74,20,140,0.75)),
  url('images/feeding\ program.jpg');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 10%;
  color:white;
}

.hero-content h1{
  font-size:4rem;
  margin-bottom:20px;
}

.hero-content p{
  max-width:700px;
  margin:auto;
  font-size:1.1rem;
}

.hero-btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 35px;
  background:#FFD54F;
  color:#4A148C;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.hero-btn:hover{
  background:white;
}

/* SECTIONS */

section{
  padding:100px 8%;
}

h2{
  text-align:center;
  color:#4A148C;
  margin-bottom:50px;
  font-size:2.5rem;
}

/* SLIDER SECTION */

.slider-section{
  background:#f9f5ff;
  text-align:center;
}

/* MAIN CONTAINER */

.slider-container{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:30px;
  position:relative;
}

/* SLIDER WIDTH */

.slider{
  width:90%;
  max-width:1100px;
  overflow:hidden;
}

/* FLOATING CARD */

.slide{
  display:none;
  background:#FFD54F;
  padding:60px 70px;
  border-radius:30px;
  text-align:center;

  box-shadow:
    0 20px 40px rgba(74,20,140,0.18),
    0 10px 20px rgba(0,0,0,0.08);

  animation:floatCard 3s ease-in-out infinite;
  transition:0.4s ease;
}

/* ACTIVE CARD */

.slide.active{
  display:block;
}

/* TITLES */

.slide h3{
  color:#4A148C;
  font-size:2.3rem;
  margin-bottom:25px;
  font-weight:700;
}

/* TEXT */

.slide p{
  color:#4A148C;
  font-size:1.1rem;
  line-height:1.9;
  font-weight:500;
  text-align: left;
}

/* FLOAT EFFECT */

@keyframes floatCard{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* BUTTONS CONTAINER */

.slider-buttons{
  display:flex;
  gap:20px;
}

/* BUTTONS */

.prev,
.next{
  background:#4A148C;
  color:#FFD54F;
  border:none;
  width:60px;
  height:60px;
  border-radius:50%;
  font-size:1.5rem;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.prev:hover,
.next:hover{
  background:#FFD54F;
  color:#4A148C;
  transform:scale(1.1);
}

/* RESPONSIVE */

@media(max-width:768px){

  .slider{
    width:100%;
  }

  .slide{
    padding:40px 25px;
  }

  .slide h3{
    font-size:1.8rem;
  }

  .slide p{
    font-size:1rem;
  }

}

/* INITIATIVES SECTION */

.initiatives-section{
  background:#ffffff;
}

/* GRID */

.cards-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
}

/* CARD */

.floating-card{
  background:white;
  border-radius:25px;
  overflow:hidden;

  box-shadow:
    0 15px 35px rgba(74,20,140,0.12),
    0 5px 15px rgba(0,0,0,0.08);

  transition:0.4s ease;
  animation:floatCard 3s ease-in-out infinite;
}

/* HOVER EFFECT */

.floating-card:hover{
  transform:translateY(-12px);
}

/* IMAGE */

.floating-card img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
}

/* CONTENT */

.floating-card h3{
  color:#4A148C;
  font-size:1.5rem;
  margin:25px 25px 15px;
}

.floating-card p{
  color:#555;
  line-height:1.8;
  padding:0 25px 30px;
}

/* FLOATING EFFECT */

@keyframes floatCard{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-8px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* RESPONSIVE */

@media(max-width:768px){

  .floating-card img{
    height:200px;
  }

}

/* DONATION SECTION */

.donation-section{
  background:#4A148C;
  color:white;
  text-align:center;
}

.donation-section h2{
  color:#FFD54F;
  margin-bottom:20px;
}

.donation-section p{
  max-width:750px;
  margin:auto;
  line-height:1.8;
}

/* SLIDER CONTAINER */

.donation-slider-container{
  margin-top:50px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:30px;
}

/* SLIDER */

.donation-slider{
  width:90%;
  max-width:800px;
}

/* DONATION BOX */

.donation-box{
  display:none;
  background:#FFD54F;
  color:#4A148C;

  padding:50px 40px;
  border-radius:30px;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.2),
    0 10px 20px rgba(0,0,0,0.1);

  animation:floatDonation 3s ease-in-out infinite;
}

/* ACTIVE BOX */

.donation-box.active{
  display:block;
}

/* TITLES */

.donation-box h3{
  font-size:2rem;
  margin-bottom:25px;
}

/* TEXT */

.donation-box p{
  margin:15px 0;
  font-size:1.05rem;
  color:#4A148C;
}

/* FLOAT EFFECT */

@keyframes floatDonation{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-8px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* BUTTONS */

.donation-buttons{
  display:flex;
  gap:20px;
}

.donation-prev,
.donation-next{
  width:60px;
  height:60px;
  border:none;
  border-radius:50%;
  background:#FFD54F;
  color:#4A148C;
  font-size:1.5rem;
  cursor:pointer;
  transition:0.3s;
  font-weight:bold;
}

.donation-prev:hover,
.donation-next:hover{
  transform:scale(1.1);
  background:white;
}

/* RESPONSIVE */

@media(max-width:768px){

  .donation-box{
    padding:35px 25px;
  }

  .donation-box h3{
    font-size:1.6rem;
  }

}

/* CONTACT */

.contact-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.contact-card{
  background:white;
  padding:30px;
  text-align:center;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.contact-card h3{
  color:#4A148C;
  margin-bottom:15px;
}

/* FOOTER */

footer{
  background:#2D0C57;
  color:white;
  text-align:center;
  padding:20px;
}

/* RESPONSIVE */

@media(max-width:768px){

  .hero-content h1{
    font-size:2.5rem;
  }

  .navbar{
    flex-direction:column;
    gap:15px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

  .slider{
    width:100%;
  }

}