/* =======================
   GLOBAL STYLES
======================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}
/* =========================
   SMOOTH SCROLL
========================= */
html{
  scroll-behavior:smooth;
  overflow-x: hidden;
}

body{
  background:#f5f7f6;
  overflow-x: hidden;
}

.container{
  width:90%;
  margin:auto;
}

.flex-between{
  display:flex;
  justify-content:space-between;
  align-items:center;
}


/* =======================
   TOP HEADER
======================= */
.top-bar{
  background:#fff;
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,0.05);
}

/* TOPBAR WRAPPER */
.topbar-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

/* RIGHT SIDE */
.topbar-right{
  display:flex;
  align-items:center;
  gap:30px;
}

/* LOGO */
.logo-area{
  display:flex;
  align-items:center;
}

.logo-area img{
  height:58px;
  width:auto;
  object-fit:contain;
}

/* CONTACT INFO */
.contact-info{
  display:flex;
  align-items:center;
  gap:25px;
  flex-wrap:wrap;
}

.contact-info span{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#4b5563;
  font-weight:500;
}

.contact-info i{
  color:#1bbf73;
  font-size:15px;
}

/* ACTIONS */
.actions{
  display:flex;
  align-items:center;
}

/* =======================
   BUTTONS
======================= */
.btn-outline{
  padding:12px 22px;
  border:1px solid #d1d5db;
  border-radius:14px;
  background:#fff;
  color:#111827;
  cursor:pointer;
  transition:0.35s ease;
  font-weight:600;
}

.btn-outline:hover{
  background:#f3f4f6;
  transform:translateY(-2px);
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 24px;
  background:linear-gradient(
    135deg,
    #22c55e,
    #16a34a
  );
  color:#fff;
  border:none;
  border-radius:14px;
  cursor:pointer;
  transition:0.35s ease;
  font-weight:600;
  text-decoration:none;
  box-shadow:
    0 10px 25px rgba(34,197,94,0.25);
}

.btn-primary:hover{
  transform:
    translateY(-3px)
    scale(1.02);

  box-shadow:
    0 18px 35px rgba(34,197,94,0.35);
}

a{
  text-decoration:none;
}

/* =======================
   PREMIUM NAVBAR
======================= */
.navbar{
  position:sticky;
  top:0;
  z-index:9999;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,0.05);
  box-shadow:
    0 10px 35px rgba(0,0,0,0.05);
  transition:0.4s ease;
}

/* NAV WRAPPER */
.nav-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  min-height:80px;
}

/* =======================
   MOBILE TOGGLE
======================= */
.mobile-toggle{
  display:none;
  width:52px;
  height:52px;
  background:linear-gradient(
    135deg,
    #1bbf73,
    #159a5c
  );
  color:#fff;
  border-radius:14px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:22px;
  transition:0.35s ease;
  box-shadow:
    0 10px 25px rgba(27,191,115,0.25);
}

/* HOVER */
.mobile-toggle:hover{
  transform:
    translateY(-2px)
    scale(1.05);

  box-shadow:
    0 18px 35px rgba(27,191,115,0.35);
}

/* ACTIVE */
.mobile-toggle:active{
  transform:scale(0.96);
}

/* =======================
   NAV MENU
======================= */
.nav-menu{
  display:flex;
  justify-content:center;
  align-items:center;
  list-style:none;
  gap:8px;
  margin:0;
  padding:0;
}

/* NAV LINKS */
.nav-menu li{
  position:relative;
}

.nav-menu li a{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px 22px;
  color:#1f2937;
  font-weight:600;
  font-size:15px;
  letter-spacing:0.2px;
  transition:0.35s ease;
  border-radius:14px;
  overflow:hidden;
}

/* HOVER BG */
.nav-menu li a::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      135deg,
      rgba(27,191,115,0.10),
      rgba(27,191,115,0.03)
    );
  opacity:0;
  transition:0.35s ease;
  border-radius:14px;
}

/* UNDERLINE */
.nav-menu li a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:12px;
  width:0;
  height:2.5px;
  background:#1bbf73;
  border-radius:20px;
  transform:translateX(-50%);
  transition:0.35s ease;
}

/* HOVER */
.nav-menu li a:hover{
  color:#1bbf73;
  transform:translateY(-1px);
}

.nav-menu li a:hover::before{
  opacity:1;
}

.nav-menu li a:hover::after{
  width:55%;
}

/* ACTIVE */
.nav-menu li.active a{
  color:#1bbf73;
  background:
    linear-gradient(
      135deg,
      rgba(27,191,115,0.12),
      rgba(27,191,115,0.04)
    );
}

.nav-menu li.active a::after{
  width:55%;
}

/* =========================================
   PREMIUM HERO SECTION
========================================= */
.hero{
  position:relative;
  overflow:hidden;
  padding:120px 0;
  background:
    linear-gradient(
      135deg,
      #f8fafc 0%,
      #eefbf4 100%
    );

  isolation:isolate;
}

/* =======================
   BACKGROUND SHAPES
======================= */
.hero-shape{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  opacity:0.35;
  z-index:0;
}

.shape-1{
  width:400px;
  height:400px;
  background:#1bbf73;
  top:-100px;
  left:-100px;
}

.shape-2{
  width:350px;
  height:350px;
  background:#60a5fa;
  right:-120px;
  bottom:-120px;
}

/* =======================
   GRID
======================= */
.hero-grid{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:50px;
  align-items:center;
}

/* =======================
   HERO TEXT
======================= */
.hero-text{
  position:relative;
  z-index:2;
}

/* BADGE */
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  background:#fff;
  padding:14px 24px;
  border-radius:50px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

  margin-bottom:30px;

  font-weight:600;
  font-size:15px;
  color:#1bbf73;
}

.hero-badge i{
  color:#1bbf73;
  font-size:16px;
}

/* HEADING */
.hero-text h1{
  font-size:72px;
  line-height:1.08;
  letter-spacing:-2px;
  margin-bottom:30px;
  color:#111827;
  font-weight:700;
}

.hero-text h1 span{
  color:#1bbf73;
  display:block;
}

/* DESCRIPTION */
.hero-text p{
  font-size:18px;
  line-height:1.9;
  color:#4b5563;
  margin-bottom:45px;
  max-width:650px;
}

/* =======================
   HERO BUTTONS
======================= */
.hero-buttons{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
  margin-bottom:60px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline{
  padding:16px 32px;
  border-radius:16px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:0.4s ease;
}

.hero-buttons .btn-primary:hover{
  transform:translateY(-5px);
  box-shadow:
    0 20px 40px rgba(27,191,115,0.30);
}

.hero-buttons .btn-outline:hover{
  transform:translateY(-5px);
}

/* =======================
   STATS
======================= */
.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
}

.hero-stat{
  min-width:120px;
}

.hero-stat h3{
  font-size:42px;
  font-weight:700;
  color:#111827;
  margin-bottom:8px;
}

.hero-stat span{
  color:#6b7280;
  font-size:15px;
  font-weight:500;
}

/* =======================
   HERO IMAGE WRAPPER
======================= */
.hero-image-wrapper{
  position:relative;
}

/* IMAGE */
.hero-image{
  position:relative;
  border-radius:32px;
  overflow:hidden;

  box-shadow:
    0 30px 60px rgba(0,0,0,0.15);
}

.hero-image img{
  width:100%;
  height:720px;
  object-fit:cover;
  display:block;

  transition:0.6s ease;
}

.hero-image:hover img{
  transform:scale(1.04);
}

/* OVERLAY */
.hero-image::after{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.12),
      transparent
    );

  pointer-events:none;
}

/* =======================
   FLOATING CARD
======================= */
.floating-card{
  position:absolute;
  left:-40px;
  bottom:40px;

  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);

  padding:24px;
  border-radius:24px;

  display:flex;
  align-items:center;
  gap:18px;

  max-width:280px;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.15);

  z-index:5;
}

/* ICON */
.floating-icon{
  width:70px;
  height:70px;

  background:
    linear-gradient(
      135deg,
      #1bbf73,
      #159a5c
    );

  color:#fff;
  border-radius:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:28px;

  flex-shrink:0;
}

.floating-card h3{
  font-size:22px;
  color:#111827;
  margin-bottom:6px;
}

.floating-card p{
  margin:0;
  color:#6b7280;
  font-size:14px;
  line-height:1.6;
}

/* =======================
   MINI CARD
======================= */
.mini-card{
  position:absolute;
  top:40px;
  right:-30px;

  background:#111827;
  color:#fff;

  width:220px;
  padding:25px;
  border-radius:24px;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.20);

  z-index:5;
}

.mini-card span{
  color:#cbd5e1;
  font-size:14px;
  line-height:1.6;
}

.mini-card h4{
  font-size:20px;
  line-height:1.5;
  margin:15px 0;
  font-weight:600;
}

/* =======================
   MINI PROGRESS
======================= */
.mini-progress{
  width:100%;
  height:10px;

  background:rgba(255,255,255,0.15);

  border-radius:20px;
  overflow:hidden;
}

.mini-progress-bar{
  width:75%;
  height:100%;

  background:
    linear-gradient(
      90deg,
      #22c55e,
      #16a34a
    );

  border-radius:20px;
}

/* =======================
   PERFORMANCE
======================= */
.hero,
.hero *{
  backface-visibility:hidden;
  -webkit-font-smoothing:antialiased;
}

/* =======================
   APPEALS SECTION
======================= */
.appeals{
  padding:80px 0;
  background:#f9fafb;
}

/* HEADER */
.section-header{
  text-align:center;
  margin-bottom:50px;
}

.section-header .badge{
  background:#e8f8ee;
  color:#1bbf73;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
}

.section-header h2{
  font-size:36px;
  margin:15px 0;
}

.section-header h2 span{
  color:#1bbf73;
}

.section-header p{
  color:#666;
  max-width:600px;
  margin:auto;
}

/* GRID */
.appeals-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */
.appeal-card{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  transition:0.3s;
  position:relative;
}

/* IMAGE WRAPPER */
.card-img{
  position:relative;
}

.card-img img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:15px 15px 0 0;
}

/* ICON */
.card-icon{
  position:absolute;
  bottom:-25px;
  left:20px;
  width:50px;
  height:50px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#1bbf73;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  transition:0.3s;
}

/* CONTENT */
.card-content{
  padding:35px 20px 20px; /* top padding increased for icon space */
}

.card-content h3{
  margin-bottom:10px;
  font-size:18px;
}

.card-content p{
  font-size:14px;
  color:#666;
  margin-bottom:15px;
}

.card-content a{
  color:#1bbf73;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

/* HOVER EFFECT */
.appeal-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* ICON HOVER */
.appeal-card:hover .card-icon{
  background:#1bbf73;
  color:#fff;
  transform:scale(1.1);
}

/* LINK HOVER */
.card-content a:hover{
  letter-spacing:0.5px;
}

/* =======================
   QUICK DONATE
======================= */
.quick-donate{
  padding:80px 0;
}

/* TABS */
.donate-tabs{
  display:flex;
  justify-content:center;
  gap:15px;
  margin:30px 0 50px;
}

.tab{
  padding:10px 20px;
  border-radius:25px;
  border:none;
  background:#f1f1f1;
  cursor:pointer;
  transition:0.3s;
}

.tab.active{
  background:#1bbf73;
  color:#fff;
}

.tab:hover{
  background:#1bbf73;
  color:#fff;
}

/* CARDS */
.donate-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

.donate-card{
  position:relative;
  border-radius:20px;
  overflow:hidden;
}

.donate-card img{
  width:100%;
  height:300px;
  object-fit:cover;
}

/* OVERLAY */
.donate-overlay{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:25px;
  background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color:#fff;
}

.donate-overlay h3{
  font-size:22px;
  margin-bottom:10px;
}

.donate-overlay p{
  font-size:14px;
  margin-bottom:15px;
}

/* TAG */
.tag{
  display:inline-block;
  background:#1bbf73;
  padding:5px 12px;
  border-radius:15px;
  font-size:12px;
  margin-bottom:10px;
}

/* BUTTON */
.btn-white{
  background:#fff;
  color:#000;
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-white:hover{
  background:#1bbf73;
  color:#fff;
}

/* HOVER EFFECT */
.donate-card:hover img{
  transform:scale(1.05);
  transition:0.5s;
}

/* =======================
   IMPACT SECTION
======================= */
.impact{
  background:#0db14b;
  padding:80px 0;
  color:#fff;
  text-align:center;
}

.impact-header h2{
  font-size:36px;
  margin-bottom:10px;
}

.impact-header p{
  opacity:0.9;
  margin-bottom:50px;
}

/* GRID */
.impact-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */
.impact-card{
  background:rgba(255,255,255,0.1);
  border-radius:20px;
  padding:30px;
  backdrop-filter:blur(10px);
  transition:0.3s;
}

.impact-card i{
  font-size:28px;
  margin-bottom:15px;
}

.impact-card h3{
  font-size:28px;
  margin-bottom:10px;
}

.impact-card p{
  font-size:14px;
  opacity:0.9;
}

/* HOVER */
.impact-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.2);
}

/* CTA */
.impact-cta{
  margin-top:50px;
}

.impact-cta p{
  margin-bottom:20px;
  font-size:18px;
}

/* BUTTON */
.btn-white{
  background:#fff;
  color:#0db14b;
  padding:12px 25px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-white:hover{
  background:#000;
  color:#fff;
}

/* =======================
   PROGRAMS SECTION
======================= */
.programs{
  padding:100px 0;
  position:relative;
}

/* =======================
   FILTER TABS
======================= */
.program-tabs{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;
  margin:35px 0 55px;
}

/* FILTER BUTTON */
.program-tabs .filter-btn{
  padding:12px 24px;
  border:none;
  border-radius:50px;
  background:#f5f5f5;
  color:#222;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  transition:0.35s ease;
}

/* ACTIVE */
.program-tabs .filter-btn.active{
  background:#1bbf73;
  color:#fff;
  box-shadow:0 10px 25px rgba(27,191,115,0.25);
}

/* HOVER */
.program-tabs .filter-btn:hover{
  background:#1bbf73;
  color:#fff;
  transform:translateY(-2px);
}

/* =======================
   GRID
======================= */
.program-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* =======================
   CARD
======================= */
.project-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  cursor:pointer;
  transition:0.4s ease;
  background:#fff;
}

/* IMAGE */
.project-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transition:0.5s ease;
}

/* OVERLAY */
.project-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.05)
  );
  z-index:1;
}

/* TAG */
.program-tag{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  color:#1bbf73;
  padding:10px 20px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
  z-index:2;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* HOVER EFFECT */
.project-card:hover{
  transform:translateY(-8px);
}

.project-card:hover img{
  transform:scale(1.08);
}


/* =======================
   TESTIMONIALS SECTION
======================= */
.testimonials{
  padding:80px 0;
  background:#f9fafb;
}

/* GRID */
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

/* CARD */
.testimonial-card{
  background:#fff;
  border-radius:15px;
  padding:25px;
  position:relative;
  transition:0.3s;
  border:1px solid #eee;
}

/* TOP AREA */
.testimonial-top{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:15px;
}

.testimonial-top img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
}

/* TEXT */
.testimonial-card h4{
  margin:0;
}

.testimonial-card span{
  font-size:13px;
  color:#777;
}

/* STARS */
.stars{
  color:#f4b400;
  font-size:13px;
}

/* QUOTE ICON */
.quote{
  position:absolute;
  top:20px;
  right:20px;
  font-size:22px;
  color:#ccc;
}

/* PARAGRAPH */
.testimonial-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* HOVER */
.testimonial-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* =======================
   BLOG / NEWS
======================= */
.blogs, .news{
  padding:80px 0;
  background:#fff;
}

/* GRID */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.blog-card{
  transition:0.3s;
  padding-bottom: 20px;
}

.blog-img{
  position:relative;
  border-radius:12px;
  overflow:hidden;
}

.blog-img img{
  width:100%;
  height:180px;
  object-fit:cover;
  transition:0.3s;
}

/* TAG */
.tag{
  position:absolute;
  top:10px;
  right:10px;
  background:#1bbf73;
  color:#fff;
  padding:5px 10px;
  font-size:12px;
  border-radius:6px;
}


.tag.news{
  background:#007bff;
}


/* CONTENT */
.blog-content{
  padding-top:10px;
  padding-bottom: 20px;
}

.blog-content .date{
  font-size:13px;
  color:#777;
}

.blog-content h3{
  font-size:16px;
  margin:5px 0;
}

/* HOVER */
.blog-card:hover img{
  transform:scale(1.05);
}

/* =======================
   BUTTONS
======================= */
.center-btn{
    text-align:center;
    margin-top:50px;
}

.btn,
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s ease;
}

.btn{
    background:#1bbf73;
    color:#fff;
}

.btn:hover{
    background:#15965a;
    transform:translateY(-2px);
}

.btn-primary{
    background:#007bff;
    color:#fff;
}

.btn-primary:hover{
    background:#0056cc;
    transform:translateY(-2px);
}

/* =======================
   NEWSLETTER
======================= */
.newsletter{
  background:#12b24a;
  color:#fff;
  text-align:center;
  padding:60px 0;
}

.newsletter h2{
  font-size:32px;
  margin-bottom:10px;
}

.newsletter p{
  max-width:600px;
  margin:auto;
  margin-bottom:20px;
}

/* FORM */
.newsletter-form{
  display:flex;
  justify-content:center;
  align-items:center;
  background:#fff;
  border-radius:30px;
  padding:8px 15px;
  max-width:450px;
  margin:auto;
}

.newsletter-form i{
  color:#999;
  margin-right:10px;
}

.newsletter-form input{
  border:none;
  outline:none;
  flex:1;
}

.newsletter-form button{
  background:#12b24a;
  color:#fff;
  border:none;
  padding:8px 20px;
  border-radius:20px;
  cursor:pointer;
}

/* =======================
   FOOTER
======================= */
.footer{
  background:#0f172a;
  color:#fff;
  padding:80px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.3fr;
  gap:40px;
}

.footer-logo{
  height:60px;
  margin-bottom:20px;
}

.footer p{
  color:#cbd5e1;
  line-height:1.8;
  font-size:15px;
}

.footer-col h4{
  font-size:20px;
  margin-bottom:25px;
  color:#fff;
}

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:14px;
}

.footer-col ul li a{
  color:#cbd5e1;
  text-decoration:none;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#1bbf73;
  padding-left:5px;
}

/* CONTACT */
.footer-contact p{
  margin-bottom:16px;
}

.footer-contact a{
  color:#cbd5e1;
  text-decoration:none;
  transition:0.3s;
}

.footer-contact a:hover{
  color:#1bbf73;
}

.footer-contact i{
  color:#1bbf73;
  margin-right:10px;
}

/* SOCIALS */
.footer-socials{
  display:flex;
  gap:12px;
  margin-top:25px;
}

.footer-socials a{
  width:42px;
  height:42px;
  background:rgba(255,255,255,0.08);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:0.3s;
  text-decoration:none;
}

.footer-socials a:hover{
  background:#1bbf73;
  transform:translateY(-5px);
}

/* BOTTOM */
.footer-bottom{
  margin-top:60px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
}

.footer-bottom p{
  margin:0;
  font-size:14px;
  
  
}
.footer-bottom a {
  color: #12b24a;
}

/* =========================
   DONATION BAR (FIXED)
========================= */
/* =========================
   RIGHT SIDEBAR
========================= */
.donation-sidebar{
  position: fixed;
  top: 50%;
  right: -300px; /* hidden */
  transform: translateY(-50%);
  width: 300px;
  background: #1ea4d7;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  transition: 0.4s ease;
  z-index: 9999;
}

/* ACTIVE = SHOW */
.donation-sidebar.active{
  right: 0;
}

/* TOGGLE BUTTON */
.sidebar-toggle{
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  background: #2bb3e6;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#fff;
}

/* CONTENT */
.sidebar-content{
  display:flex;
  flex-direction:column;
  gap:15px;
}

/* BOX */
.donation-box{
  background:#fff;
  padding:15px;
  border-radius:10px;
}

.donation-box h4{
  margin-bottom:10px;
}

.donation-box input{
  width:100%;
  padding:8px;
  margin-bottom:10px;
}

.donation-box button{
  width:100%;
  background:#12b24a;
  border:none;
  padding:10px;
  color:#fff;
  border-radius:20px;
  cursor:pointer;
}

/* =========================
   PAGE HERO
========================= */
.page-hero{
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('/images/HRPO-BANNER.png') center/cover;
  padding: 120px 0;
  text-align: center;
  color: #fff;
}

.page-hero h1{
  font-size: 52px;
  margin-bottom: 15px;
}

.page-hero p{
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
}

/* =========================
   ABOUT PAGE
========================= */
.about-page{
  padding: 100px 0;
}

.about-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 60px;
  align-items: center;
}

.about-image img{
  width: 80%;
  border-radius: 20px;
}

.about-content h2{
  font-size: 42px;
  margin: 20px 0;
}

.about-content p{
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features{
  margin-top: 30px;
}

.feature{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.feature i{
  color: #1bbf73;
}
/* =========================
   INTRODUCTION SECTION
========================= */
.introduction-section{
  padding:100px 0;
  background:#ffffff;
}

.intro-content{
  max-width:1000px;
  margin:auto;
}

.intro-content p{
  font-size:17px;
  line-height:1.9;
  color:#4b5563;
  margin-bottom:25px;
}

.intro-highlight{
  margin:40px 0;
}

.highlight-box{
  background:linear-gradient(
    135deg,
    #eefbf4,
    #f8fafc
  );
  border-left:5px solid #1bbf73;
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.highlight-box h3{
  font-size:24px;
  margin-bottom:15px;
  color:#111827;
}

.highlight-box p{
  margin-bottom:10px;
}

.intro-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:40px;
}

.intro-item{
  display:flex;
  align-items:center;
  gap:14px;
  background:#f9fafb;
  padding:18px 20px;
  border-radius:16px;
  transition:0.3s ease;
}

.intro-item:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

.intro-item i{
  color:#1bbf73;
  font-size:18px;
}

.intro-item span{
  font-weight:600;
  color:#111827;
}

/* =========================
   MISSION SECTION
========================= */
.mission-section{
  background: #f9fafb;
  padding: 100px 0;
}

.mission-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.mission-card{
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: .3s;
}

.mission-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.mission-icon{
  width: 80px;
  height: 80px;
  background: #e8f8ee;
  color: #1bbf73;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: auto;
  font-size: 30px;
  margin-bottom: 20px;
}

.mission-card h3{
  margin-bottom: 15px;
}

.mission-card p{
  color: #666;
  line-height: 1.7;
}

/* =========================
   TEAM SECTION
========================= */
.team-section{
  padding: 100px 0;
}

.team-grid{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 25px;
}

.team-card{
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: .3s;
}

.team-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.team-card img{
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-card h3{
  margin-top: 20px;
}

.team-card p{
  color: #666;
  margin: 10px 0 20px;
}

.team-socials{
  padding-bottom: 25px;
}

.team-socials i{
  width: 40px;
  height: 40px;
  background: #f3f3f3;
  border-radius: 50%;
  line-height: 40px;
  margin: 0 5px;
  cursor: pointer;
  transition: .3s;
}

.team-socials i:hover{
  background: #1bbf73;
  color: #fff;
}

/* =========================
   ABOUT CTA
========================= */
.about-cta{
  background: #1bbf73;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.about-cta h2{
  font-size: 42px;
  margin-bottom: 20px;
}

.about-cta p{
  margin-bottom: 30px;
  font-size: 18px;
}

/* =========================
   PROJECTS PAGE
========================= */
.projects-page{
  padding:100px 0;
  background:#f8fafc;
}

/* FILTERS */
.project-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
  margin-bottom:60px;
}

.filter-btn{
  padding:12px 24px;
  border:none;
  border-radius:30px;
  background:#fff;
  cursor:pointer;
  font-weight:500;
  transition:0.3s;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.filter-btn:hover,
.filter-btn.active{
  background:#1bbf73;
  color:#fff;
}

/* GRID */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

/* CARD */
.project-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  transition:0.4s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.project-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.project-image{
  position:relative;
}

.project-image img{
  width:100%;
  height:280px;
  object-fit:cover;
}

/* TAG */
.project-tag{
  position:absolute;
  top:20px;
  left:20px;
  background:#1bbf73;
  color:#fff;
  padding:8px 16px;
  border-radius:20px;
  font-size:13px;
}

/* CONTENT */
.project-content{
  padding:30px;
}

.project-content h3{
  margin-bottom:15px;
  font-size:24px;
}

.project-content p{
  color:#666;
  line-height:1.8;
  margin-bottom:25px;
}

/* PROGRESS */
.progress-area{
  margin-bottom:25px;
}

.progress-info{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  margin-bottom:10px;
}

.progress-bar{
  width:100%;
  height:10px;
  background:#eee;
  border-radius:20px;
  overflow:hidden;
}

.progress{
  height:100%;
  background:#1bbf73;
  border-radius:20px;
}

/* FOOTER */
.project-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.project-footer strong{
  display:block;
  font-size:20px;
}

.project-footer span{
  color:#777;
  font-size:14px;
}

/* =========================
   PROJECT DETAILS
========================= */
.project-details{
  padding:100px 0;
  background:#f8fafc;
}

.details-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
  align-items:start;
}

/* IMAGE */
.details-image img{
  width:100%;
  border-radius:20px;
  margin-bottom:30px;
}

/* TEXT */
.details-text h2{
  font-size:40px;
  margin:20px 0;
}

.details-text p{
  color:#666;
  line-height:1.9;
  margin-bottom:20px;
}

/* GALLERY */
.details-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:40px;
}

.details-gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:15px;
  transition:0.3s;
}

.details-gallery img:hover{
  transform:scale(1.05);
}

/* IMPACT */
.impact-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:50px;
}

.impact-box{
  background:#fff;
  padding:30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.impact-box i{
  font-size:32px;
  color:#1bbf73;
  margin-bottom:15px;
}

.impact-box h3{
  font-size:28px;
  margin-bottom:10px;
}

/* SIDEBAR */
.donation-card{
  background:#fff;
  padding:35px;
  border-radius:20px;
  position:sticky;
  top:120px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.donation-card h3{
  margin-bottom:25px;
}

/* PROGRESS */
.sidebar-progress{
  margin-bottom:30px;
}

.goal-info{
  display:flex;
  justify-content:space-between;
  margin-top:10px;
  font-size:14px;
  color:#666;
}


/* RELATED */
.related-projects{
  padding:100px 0;
}

/* =========================
   CONTACT PAGE
========================= */

/* INFO SECTION */
.contact-info-section{
  padding:100px 0 60px;
  background:#f8fafc;
}

.contact-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.contact-card{
  background:#fff;
  padding:40px 30px;
  border-radius:20px;
  text-align:center;
  transition:0.3s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.contact-card:hover{
  transform:translateY(-10px);
}

.contact-icon{
  width:80px;
  height:80px;
  background:#e8f8ee;
  color:#1bbf73;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  font-size:28px;
  margin-bottom:20px;
}

.contact-card h3{
  margin-bottom:10px;
}

/* CONTACT FORM */
.contact-form-section{
  padding:100px 0;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.contact-form-content h2{
  font-size:42px;
  margin:20px 0;
}

.contact-form-content p{
  color:#666;
  line-height:1.8;
  margin-bottom:30px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:16px;
  border:1px solid #ddd;
  border-radius:12px;
  outline:none;
  font-size:15px;
}

.form-group textarea{
  resize:none;
}

.submit-btn{
  width:fit-content;
  margin-left:0;
}

.contact-image img{
  width:100%;
  border-radius:20px;
}

/* MAP */
.map-section iframe{
  display:block;
}

/* FAQ */
.faq-section{
  padding:100px 0;
  background:#f8fafc;
}

.faq-container{
  max-width:850px;
  margin:auto;
}

.faq-item{
  background:#fff;
  border-radius:15px;
  margin-bottom:20px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.faq-question{
  padding:25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-question h3{
  font-size:18px;
}

.faq-question i{
  color:#1bbf73;
  transition:0.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:0.4s ease;
}

.faq-answer p{
  padding:0 25px 25px;
  color:#666;
  line-height:1.7;
}

.faq-item.active .faq-answer{
  max-height:200px;
}

.faq-item.active .faq-question i{
  transform:rotate(45deg);
}

/* =========================
   GALLERY PAGE
========================= */
.gallery-section{
  padding:100px 0;
  background:#f8fafc;
}

/* FILTERS */
.gallery-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
  margin-bottom:50px;
}

.gallery-btn{
  padding:12px 24px;
  border:none;
  border-radius:30px;
  background:#fff;
  cursor:pointer;
  font-weight:500;
  transition:0.3s;
}

.gallery-btn.active,
.gallery-btn:hover{
  background:#1bbf73;
  color:#fff;
}

/* GRID */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* ITEM */
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:320px;
  object-fit:cover;
  transition:0.4s;
}

/* OVERLAY */
.gallery-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:0.4s;
}

.gallery-overlay i{
  color:#fff;
  font-size:36px;
}

.gallery-item:hover img{
  transform:scale(1.1);
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
}

/* VIDEO SECTION */
.video-section{
  padding:100px 0;
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.video-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.video-thumb{
  position:relative;
}

.video-thumb img{
  width:100%;
  height:320px;
  object-fit:cover;
}

/* PLAY BUTTON */
.video-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:80px;
  height:80px;
  background:#1bbf73;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:28px;
}

.video-card h3{
  padding:25px;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.lightbox.active{
  display:flex;
}

.lightbox-img{
  max-width:90%;
  max-height:85%;
  border-radius:15px;
}

.close-lightbox{
  position:absolute;
  top:40px;
  right:50px;
  font-size:50px;
  color:#fff;
  cursor:pointer;
}

/* =========================
   BLOG PAGE
========================= */
.blog-page{
  padding:100px 0;
  background:#f8fafc;
}

/* LAYOUT */
.blog-layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
  align-items:start;
}

/* BLOG CARD */
.blog-post-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  margin-bottom:40px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.blog-post-image img{
  width:100%;
  height:350px;
  object-fit:cover;
}

.blog-post-content{
  padding:35px;
}

/* META */
.blog-meta{
  display:flex;
  gap:25px;
  margin-bottom:20px;
  color:#777;
  font-size:14px;
}

.blog-meta i{
  color:#1bbf73;
  margin-right:5px;
}

.blog-post-content h2{
  font-size:32px;
  margin-bottom:20px;
}

.blog-post-content p{
  color:#666;
  line-height:1.8;
  margin-bottom:25px;
}

/* SIDEBAR */
.blog-sidebar{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.sidebar-widget{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.sidebar-widget h3{
  margin-bottom:25px;
}

/* SEARCH */
.search-box{
  display:flex;
  overflow:hidden;
  border-radius:12px;
  border:1px solid #ddd;
}

.search-box input{
  flex:1;
  border:none;
  outline:none;
  padding:14px;
}

.search-box button{
  width:60px;
  border:none;
  background:#1bbf73;
  color:#fff;
  cursor:pointer;
}

/* CATEGORY */
.category-list{
  list-style:none;
}

.category-list li{
  margin-bottom:15px;
}

.category-list li a{
  text-decoration:none;
  color:#555;
  transition:0.3s;
}

.category-list li a:hover{
  color:#1bbf73;
}

/* RECENT POSTS */
.recent-post{
  display:flex;
  gap:15px;
  margin-bottom:20px;
}

.recent-post img{
  width:80px;
  height:80px;
  border-radius:12px;
  object-fit:cover;
}

.recent-post h4{
  font-size:16px;
  margin-bottom:8px;
}

.recent-post span{
  color:#777;
  font-size:14px;
}

/* PAGINATION */
.pagination{
  display:flex;
  gap:15px;
  justify-content:center;
  margin-top:50px;
}

.page-btn{
  width:45px;
  height:45px;
  border:none;
  border-radius:50%;
  background:#fff;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.page-btn.active,
.page-btn:hover{
  background:#1bbf73;
  color:#fff;
}

/* =========================
   BLOG DETAILS
========================= */
.blog-details-page{
  padding:100px 0;
  background:#f8fafc;
}

.blog-details-wrapper{
  max-width:900px;
  margin:auto;
}

/* FEATURE IMAGE */
.details-feature-image img{
  width:100%;
  border-radius:20px;
  margin-bottom:35px;
}

/* CONTENT */
.blog-details-content{
  margin-top:40px;
}

.blog-details-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:25px;
  font-size:17px;
}

.blog-details-content h3{
  margin:40px 0 20px;
  font-size:28px;
}

.blog-details-content ul{
  padding-left:20px;
}

.blog-details-content ul li{
  margin-bottom:15px;
  color:#555;
}

/* QUOTE */
blockquote{
  background:#fff;
  padding:40px;
  border-left:5px solid #1bbf73;
  margin:40px 0;
  border-radius:15px;
  font-size:24px;
  font-weight:600;
  color:#222;
  line-height:1.6;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

blockquote span{
  display:block;
  margin-top:15px;
  font-size:16px;
  color:#777;
}

/* TAGS + SHARE */
.blog-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin:60px 0;
  flex-wrap:wrap;
}

/* TAGS */
.blog-tags{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.blog-tags a{
  text-decoration:none;
  background:#fff;
  color:#555;
  padding:10px 18px;
  border-radius:30px;
  transition:0.3s;
}

.blog-tags a:hover{
  background:#1bbf73;
  color:#fff;
}

/* SHARE */
.share-post{
  display:flex;
  align-items:center;
  gap:15px;
}

.share-post a{
  width:40px;
  height:40px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#222;
  text-decoration:none;
  transition:0.3s;
}

.share-post a:hover{
  background:#1bbf73;
  color:#fff;
}

/* AUTHOR */
.author-box{
  display:flex;
  gap:25px;
  background:#fff;
  padding:35px;
  border-radius:20px;
  align-items:center;
  margin-bottom:60px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.author-box img{
  width:100px;
  height:100px;
  border-radius:50%;
  object-fit:cover;
}

.author-box p{
  color:#666;
  line-height:1.8;
  margin-top:10px;
}

/* COMMENTS */
.comments-section{
  margin-bottom:60px;
}

.comments-section h2{
  margin-bottom:35px;
}

.comment{
  display:flex;
  gap:20px;
  background:#fff;
  padding:25px;
  border-radius:20px;
  margin-bottom:25px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.comment img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
}

.comment-content span{
  display:block;
  margin:8px 0 15px;
  color:#777;
  font-size:14px;
}

.comment-content p{
  color:#666;
  line-height:1.7;
}

/* COMMENT FORM */
.comment-form-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  margin-bottom:80px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.comment-form-box h2{
  margin-bottom:30px;
}

.comment-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}


/* =========================
   VOLUNTEER PAGE
========================= */
.volunteer-benefits{
  padding:100px 0;
  background:#f8fafc;
}

/* BENEFITS GRID */
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.benefit-card{
  background:#fff;
  padding:40px 30px;
  border-radius:20px;
  text-align:center;
  transition:0.3s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.benefit-card:hover{
  transform:translateY(-10px);
}

.benefit-card i{
  font-size:42px;
  color:#1bbf73;
  margin-bottom:20px;
}

.benefit-card h3{
  margin-bottom:15px;
}

.benefit-card p{
  color:#666;
  line-height:1.7;
}

/* OPPORTUNITIES */
.opportunities-section{
  padding:100px 0;
}

.opportunity-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.opportunity-card{
  background:#fff;
  padding:35px;
  border-radius:20px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

.opportunity-card:hover{
  transform:translateY(-10px);
}

.opportunity-card h3{
  margin-bottom:15px;
}

.opportunity-card p{
  color:#666;
  line-height:1.8;
}

/* FORM SECTION */
.volunteer-form-section{
  padding:100px 0;
  background:#f8fafc;
}

.volunteer-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.volunteer-content h2{
  margin:20px 0;
  font-size:42px;
}

.volunteer-content p{
  color:#666;
  line-height:1.8;
  margin-bottom:30px;
}

.volunteer-content img{
  width:80%;
  border-radius:20px;
}

/* FORM */
.volunteer-form-wrapper{
  background:#fff;
  padding:45px;
  border-radius:25px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.volunteer-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.volunteer-form select,
.volunteer-form textarea,
.volunteer-form input{
  width:100%;
  padding:16px;
  border:1px solid #ddd;
  border-radius:12px;
  outline:none;
  font-size:15px;
}

.volunteer-submit{
  width:100%;
  margin-left:0;
}

/* TESTIMONIALS */
.volunteer-testimonials{
  padding:100px 0;
}

/* MODAL */
.volunteer-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.volunteer-modal.active{
  display:flex;
}

/* =========================
   FAQ PAGE
========================= */
.faq-page{
  padding:100px 0;
  background:#f8fafc;
}

/* LAYOUT */
.faq-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:40px;
  align-items:start;
}

/* SIDEBAR */
.faq-sidebar{
  position:sticky;
  top:120px;
}

.faq-sidebar-box{
  background:#fff;
  padding:35px;
  border-radius:20px;
  margin-bottom:30px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.faq-sidebar-box h3{
  margin-bottom:25px;
}

.faq-sidebar-box ul{
  list-style:none;
}

.faq-sidebar-box ul li{
  margin-bottom:15px;
}

.faq-sidebar-box ul li a{
  text-decoration:none;
  color:#555;
  transition:0.3s;
}

.faq-sidebar-box ul li a:hover{
  color:#1bbf73;
}

/* SUPPORT */
.support-box{
  background:#1bbf73;
  padding:35px;
  border-radius:20px;
  color:#fff;
  text-align:center;
}

.support-box i{
  font-size:42px;
  margin-bottom:20px;
}

.support-box h3{
  margin-bottom:15px;
}

.support-box p{
  line-height:1.8;
  margin-bottom:25px;
}

.support-box .btn-primary{
  background:#fff;
  color:#1bbf73;
  margin-left:0;
}

/* MAIN */
.faq-main{
  display:flex;
  flex-direction:column;
  gap:50px;
}

/* SEARCH */
.faq-search{
  position:relative;
}

.faq-search input{
  width:100%;
  padding:18px 60px 18px 20px;
  border:none;
  border-radius:15px;
  outline:none;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.faq-search i{
  position:absolute;
  top:50%;
  right:20px;
  transform:translateY(-50%);
  color:#777;
}

/* CATEGORY */
.faq-category h2{
  margin-bottom:30px;
}

/* =========================
   COMPLAINT PAGE
========================= */
.complaint-hero{
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('images/image10.jpg') center/cover no-repeat;
}

.complaint-intro,
.complaint-types,
.complaint-form-section{
  padding:80px 0;
}

.complaint-grid,
.complaint-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.complaint-image img{
  width:80%;
  border-radius:24px;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.complaint-content h2,
.complaint-form-wrapper h2,
.complaint-info-box h2{
  margin:20px 0;
}

.complaint-content p,
.complaint-info-box p{
  color:#666;
  line-height:1.9;
  margin-bottom:20px;
}

.complaint-features{
  display:grid;
  gap:18px;
  margin-top:30px;
}

.feature{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:500;
}

.feature i{
  color:#1bbf73;
  font-size:18px;
}

.complaint-types{
  background:#f9fafb;
}

.complaint-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-top:50px;
}

.complaint-card{
  background:#fff;
  padding:35px 25px;
  border-radius:22px;
  text-align:center;
  transition:0.3s;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.complaint-card:hover{
  transform:translateY(-8px);
}

.complaint-card i{
  width:80px;
  height:80px;
  background:#e8f8ee;
  color:#1bbf73;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  font-size:32px;
  margin-bottom:25px;
}

.complaint-card h3{
  margin-bottom:15px;
}

.complaint-card p{
  color:#666;
  line-height:1.7;
}

.complaint-info-box,
.complaint-form-wrapper{
  background:#fff;
  padding:45px;
  border-radius:30px;
  box-shadow:0 20px 50px rgba(0,0,0,0.06);
}

.info-item{
  display:flex;
  gap:20px;
  margin-top:30px;
  align-items:flex-start;
}

.info-item i{
  width:60px;
  height:60px;
  background:#1bbf73;
  color:#fff;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.info-item h4{
  margin-bottom:6px;
}

.complaint-form{
  margin-top:30px;
}

.complaint-form .form-group{
  margin-bottom:20px;
}

.complaint-form input,
.complaint-form select,
.complaint-form textarea{
  width:100%;
  padding:16px 18px;
  border:1px solid #ddd;
  border-radius:14px;
  outline:none;
  font-size:15px;
  transition:0.3s;
}

.complaint-form input:focus,
.complaint-form select:focus,
.complaint-form textarea:focus{
  border-color:#1bbf73;
}

.submit-btn{
  width:100%;
  justify-content:center;
  display:flex;
  align-items:center;
  gap:10px;
  padding:16px;
  border-radius:14px;
  font-size:16px;
}

.complaint-cta{
  padding:90px 0;
}

.cta-box{
  background:#1bbf73;
  color:#fff;
  padding:70px 40px;
  border-radius:30px;
  text-align:center;
}

.cta-box h2{
  margin-bottom:20px;
}

.cta-box p{
  max-width:700px;
  margin:auto;
  line-height:1.9;
  margin-bottom:30px;
}

/* =======================
   VOLUNTEER VERIFICATION
======================= */
.volunteer-check{
  padding:90px 0;
  background:#f9fafb;
}

.verification-box{
  max-width:750px;
  margin:auto;
  background:#fff;
  padding:50px;
  border-radius:30px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.verification-input{
  display:flex;
  gap:15px;
}

.verification-input input{
  flex:1;
  padding:18px 20px;
  border:1px solid #ddd;
  border-radius:16px;
  outline:none;
  font-size:16px;
  transition:0.3s;
}

.verification-input input:focus{
  border-color:#1bbf73;
}

.verification-input button{
  border:none;
  background:#1bbf73;
  color:#fff;
  padding:18px 30px;
  border-radius:16px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
  display:flex;
  align-items:center;
  gap:10px;
}

.verification-input button:hover{
  background:#159a5c;
}

.verification-result{
  margin-top:30px;
  padding:25px;
  border-radius:20px;
  font-size:18px;
  font-weight:600;
  text-align:center;
  display:none;
}

.verification-result.valid{
  display:block;
  background:#e8f8ee;
  color:#15803d;
  border:2px solid #1bbf73;
}

.verification-result.invalid{
  display:block;
  background:#fff1f2;
  color:#dc2626;
  border:2px solid #ef4444;
}

/* =========================
   TOAST NOTIFICATIONS
========================= */
.toast{
  position:fixed;
  top:30px;
  right:30px;
  background:#111827;
  color:#fff;
  padding:16px 22px;
  border-radius:14px;
  z-index:99999;
  opacity:0;
  transform:translateY(-20px);
  transition:0.35s ease;
  box-shadow:
    0 15px 40px rgba(0,0,0,0.15);
  font-weight:500;
}

.toast.show{
  opacity:1;
  transform:translateY(0);
}

.toast-success{
  background:#16a34a;
}

.toast-error{
  background:#dc2626;
}

/* MOBILE */
@media(max-width:768px){

  .toast{
    left:20px;
    right:20px;
    top:20px;
    text-align:center;
  }

}
