/* HERO BANNER */
.cause-banner{
  width:100%;
  height:320px;
  position:relative;
  background:url("https://manavtaawelfare.com/wp-content/uploads/2025/04/slider-1.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
}
    
/* Dark Overlay */
.cause-banner::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

/* Content */
.cause-content{
  position:relative;
  z-index:2;
  padding-left:80px;
  color:#fff;
  max-width:700px;
}

.cause-content h1{
  font-size:48px;
  font-weight:700;
  margin-bottom:15px;
}

.cause-content p{
  font-size:18px;
  color:#eee;
  margin-bottom:25px;
}

/* Breadcrumb */
.breadcrumb{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#f8b45a;
}

.breadcrumb span{
  color:#fff;
  margin-left:10px;
}

/* Responsive */
@media(max-width:768px){
  .cause-banner{height:260px;}
  .cause-content{padding:40px;}
  .cause-content h1{font-size:32px;}
}


/*  */
/* second  */

/* GRID */
.charity-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin: 50px;
}

/* CARD */
.charity-card{
    background:#f8f8f8;
    border-radius:6px;
    overflow:hidden;
    border:2px dashed #eee;
    position:relative;
}

/* IMAGE */
.charity-img{
    position:relative;
    height:250px;
    overflow:hidden;
}
.charity-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* DONATE BTN */
.donate-btn{
    position:absolute;
   
    right:15px;
    background:#f8b45a;
    color:#fff;
    padding:8px 16px;
    border-radius:4px;
    font-size:14px;
    font-weight:600;
}

/* PROGRESS BADGE */
.progress{
    position:absolute;
    bottom:-22px;
    left:50%;
    transform:translateX(-50%);
    background:#f8b45a;
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-weight:600;
    border:6px solid #fff;
}
/* ===============================
   CHARITY CARDS
================================ */

.charity-content{
  padding:40px 25px 30px;
  text-align:left;
}
.charity-content h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:15px;
}
.charity-content p{
  font-size:14px;
  color:#777;
  line-height:1.7;
  margin-bottom:20px;
}

/* GOAL ROW */
.goal-row{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  color:#333;
  margin-bottom:20px;
}
.goal-row span{
  color:#f8b45a;
  font-weight:600;
}

/* READ MORE */
.read-more{
  color:#777;
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .charity-grid{
    grid-template-columns:1fr;
  }
}


/* ===============================
   VOLUNTEER SECTION
================================ */

.volunteer-section{
  padding:20px 50px;      /* 🔥 top-bottom 20px | left-right 50px */
  position:relative;
  overflow:hidden;
  background:#fff;
}

/* Background shapes */
.volunteer-section::before{
  content:'';
  position:absolute;
  left:-150px;
  top:-120px;
  width:450px;
  height:450px;
  background:#fdebd3;
  border-radius:50%;
  z-index:0;
}

.volunteer-section::after{
  content:'';
  position:absolute;
  right:-180px;
  bottom:-150px;
  width:500px;
  height:500px;
  background:#fdebd3;
  border-radius:50%;
  z-index:0;
}

/* Main wrapper */
.volunteer-wrap{
  max-width:1200px;
  margin:auto;
  padding:0;            /* 🔥 spacing volunteer-section handle karega */
  position:relative;
  z-index:2;
}

/* HEADING */
.section-head{
  text-align:center;
  margin-bottom:60px;
}
.section-head h2{
  font-size:42px;
  font-weight:700;
  color:#222;
}
.section-head span{
  width:70px;
  height:4px;
  background:#f8b45a;
  display:block;
  margin:10px auto;
}
.section-head p{
  margin-top:10px;
  color:#555;
}

/* LAYOUT */
.volunteer-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT IMAGE GRID */
.volunteer-photos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.person-card{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.person-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}

/* Overlay text */
.person-info{
  position:absolute;
  bottom:0;
  width:100%;
  padding:15px;
  background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color:#fff;
}

.person-info h4{
  color:#f8b45a;
  font-size:18px;
}
.person-info p{
  font-size:13px;
}

/* RIGHT CONTENT */
.volunteer-text h3{
  font-size:32px;
  margin-bottom:15px;
  color:#222;
}
.volunteer-text h3 span{
  color:#f8b45a;
}

.volunteer-text p{
  color:#555;
  line-height:1.8;
  margin-bottom:20px;
}

.volunteer-text ul{
  list-style:none;
}
.volunteer-text li{
  margin-bottom:12px;
  color:#444;
}
.volunteer-text li i{
  color:#f8b45a;
  margin-right:10px;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:900px){
  .volunteer-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .volunteer-section{
    padding:20px 20px;   /* 🔥 mobile safe gap */
  }
  .section-head h2{
    font-size:32px;
  }
}



/*  */
/* SECTION */
.featured{
  min-height:60vh;
  background:
  linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
  url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1500&q=80");
  background-size:cover;
  background-position:center;
  padding:50px 40px;
  display:flex;
  align-items:center;
}

/* CONTAINER */
.featured-container{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  width:100%;
  max-width:1300px;
  margin:auto;
  color:white;
}



/* STATS */
.stats{
  display:flex;
  gap:40px;
  margin-top:15px;
  font-weight:600;
}



/* BUTTON */


/* RIGHT IMAGE */
.image-box{
  position:relative;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.7);
}

.image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.play-btn{
  position:absolute;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;
}

.play-btn::before{
  content:"";
  width:80px;
  height:80px;
  background:rgba(0,0,0,.6);
  border-radius:50%;
  display:block;
}

.play-btn span{
  position:absolute;
  width:0;
  height:0;
  border-left:20px solid white;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  margin-left:6px;
}


/*  */
.stories-section{
  padding:40px 60px;
  background:#fff;
  text-align:center;
  font-family: 'Poppins', sans-serif;
}

.stories-title{
  font-size:40px;
  font-weight:700;
  margin-bottom:10px;
}

.stories-subtitle{
  color:#777;
  font-size:16px;
  margin-bottom:60px;
}

/* GRID */
.stories-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* CARD */
.story-card{
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 0 30px rgba(0,0,0,0.08);
  transition:0.4s;
  text-align:left;
}

.story-card:hover{
  transform:translateY(-10px);
}

/* IMAGE */
.story-img{
  width:100%;
  height:260px;
  overflow:hidden;
}

.story-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* CONTENT */
.story-content{
  padding:25px;
}

.story-date{
  color:#999;
  font-size:14px;
  margin-bottom:12px;
}

.story-date i{
  margin-right:6px;
}

.story-content h3{
  font-size:22px;
  font-weight:700;
  color:#111;
}

/* SCROLL BUTTON */
.scroll-top{
  position:fixed;
  bottom:30px;
  right:30px;
  width:50px;
  height:50px;
  background:#f8b45a;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/*  */


/* ================= MOBILE GLOBAL ================= */
@media(max-width:768px){

  section{
    padding:30px 18px !important;
  }

  h1{font-size:32px !important;}
  h2{font-size:28px !important;}
  h3{font-size:22px !important;}
  p{font-size:15px !important;}

}

/* ================= HERO BANNER ================= */
@media(max-width:768px){
  .cause-banner{
    height:220px;
    text-align:center;
  }

  .cause-content{
    padding:20px;
    text-align:center;
  }

  .breadcrumb{
    justify-content:center;
  }
}

/* ================= CAUSES GRID ================= */
@media(max-width:900px){
  .charity-grid{
    grid-template-columns:1fr;
    margin:20px;
  }

  .charity-card{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
  }

  .donate-btn{
    top:15px;
    right:15px;
    padding:10px 18px;
  }
}

/* ================= VOLUNTEER ================= */
@media(max-width:900px){
  .volunteer-grid{
    grid-template-columns:1fr;
  }

  .volunteer-photos{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .person-card img{
    height:200px;
  }

  .volunteer-text{
    text-align:center;
  }

  .volunteer-text ul{
    text-align:left;
    max-width:300px;
    margin:auto;
  }
}

/* ================= FEATURED ================= */
@media(max-width:900px){
  .featured{
    padding:40px 20px;
  }

  .featured-container{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .stats{
    justify-content:center;
    gap:20px;
  }

  .image-box{
    height:240px;
  }
}

/* ================= STORIES ================= */
@media(max-width:900px){
  .stories-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .story-img{
    height:220px;
  }

  .story-content{
    padding:20px;
  }
}

/* ================= FLOAT BUTTON ================= */
@media(max-width:768px){
  .scroll-top{
    width:45px;
    height:45px;
    font-size:18px;
    bottom:20px;
    right:20px;
  }
}
