* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --primary: #1d3c8c;
  --secondary: #5f2c99;
  --accent: #d4a52f;
  --bg: #f8fafc;
  --text: #1f2937;
  --muted: #5f6b7a;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(29, 60, 140, 0.12);
  --theme: #e63946;
  --theme2: rgb(255,45,45);
  --theme3: linear-gradient(135deg, #ff2d2d, #ff6a3d);
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
}

.home-page img {
  max-width: 100%;
  display: block;
}



.home-page a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.btn {
  border: none;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: var(--white) !important;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 16px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
}

.btn-sm {
  background:#101f46;
  color: white;
  border: 2px solid #101f46;
   padding: 9px 14px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 12px;
  animation: glow 1.5s infinite alternate;
}

/* FLOATING IMPACT SECTION */
.impact-floating {
  position: relative;
  margin-top: -80px;
  z-index: 10;
}

/* CARD STYLE */
.impact-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform ease 0.3s;
}

.impact-card:hover{
  transform: translateY(-10px) scale(1.03);
}

/* GRID */
.impact-card .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 20px;
}

/* TEXT */
.impact-card h3 {
  font-size: 1.8rem;
  color: #101f46;
}

.impact-card p {
  color: black !important;
  font-size: 0.9rem;
}

.impact-section {
  transition: transform 0.2s ease, opacity 0.4s ease;
  will-change: transform;
}

.section-alt {
  margin-top: -80px;
  position: relative;
  z-index: 5;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #475c91,
                0 0 10px #475c91;
  }
 100%{
  box-shadow:  0 0 5px #475c91,
                0 0 10px #475c91; 
 }
}

.hero,
.page-banner {
  background: linear-gradient(rgba(10, 19, 50, 0.58), rgba(10, 19, 50, 0.58)), var(--hero-image) center/cover;
  color: var(--white);
}

.hero {
  min-height: 84vh;
  display: grid;
  align-items: center;
}

.page-banner {
  min-height: 42vh;
  display: grid;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}


.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4 {
  font-family: "Montserrat", sans-serif;
  
  line-height: 1.2;
}

.hero h1,
.page-banner h1,
.hero p {
  color: #fff;
}

.home-page h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  margin-bottom: 14px;
}

.home-page h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  margin-bottom: 14px;
}

.home-page h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 8px;
}

.home-page p {
  color: #fff;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 80px 0;
  background-color: #e2e8f0;
}

.section-alt {
  background: #eef2ff;
}

.two-col,
.cards-grid,
.stats-grid,
.gallery-grid,
.timeline-grid {
  display: grid;
  gap: 24px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.align-center {
  align-items: center;
}

.cards-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(19, 44, 102, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-card {
  text-align: center;
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--primary);
}

.rounded-media {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 300px;
  object-fit: cover;
 
}
.rounded-media-book{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.galary-text-link {
  display: inline-block;
  padding: 12px 24px;
  background: var(--theme2);
  color: var(--white)!important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
  margin-top: 30px;
  margin-bottom: 30px;
  transition: transform ease 0.3s;
}

.galary-text-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);

}

.gallery-grid img,
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item:hover img,
.preview-grid img:hover {
  transform: scale(1.03);
}

.person-photo {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
}

.rating {
  color: #f3b533;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.muted {
  color: #728098;
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li::before {
  content: "♪";
  color: var(--secondary);
  margin-right: 8px;
}

.contact-form,
#donationForm {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-page label {
  font-weight: 600;
  color: #2f3f63;
  display: grid;
  gap: 6px;
}

.home-page input,
.home-page textarea {
  border: 1px solid #ccd5ea;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  color: #1f2937;
  background: #fff;
}

.home-page textarea {
  min-height: 120px;
  resize: vertical;
}

.footer-grid {
  display: grid;
  gap: 24px;
  padding-top: 25px;
}

.home-page input:focus,
.home-page textarea:focus {
  border-color: #7f95de;
  outline: none;
}

#subject{
       padding: 10px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    color: #4c535a;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 10px;
  margin-top: 12px;
}


.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 10, 28, 0.88);
  z-index: 1500;
  animation: fadeIn 0.24s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(980px, 94vw);
  max-height: 90vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 26px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
}
.full-galary{
  display: flex;
  justify-content: center;
  margin-bottom: -25px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.faq_container {
  max-width: 100%;
  padding: 30px;
  margin: auto;
  background-color: var(--bg) ;

}
.faq_a{
    padding: 50px 60px;
    margin-bottom: 20px;
    margin-left: 100px;
    margin-right: 100px;
    margin-top: -50px;

}

.faq_container h3 {
  font-size: 2.0rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #101f46;
  position: relative;
  letter-spacing: 0.5px;
}


.faq_container h3::after {
  content: "";
  width: 70px;
  height: 4px;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.faq {
  background: var(--white);
  padding: 22px 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
  box-shadow: 0 8px 22px rgba(19, 44, 102, 0.247);
  transition: transform ease 0.3s;

}

.faq:hover{
  transform: translateY(-10px);
}

.ques{
  font-size: 1rem;
  font-weight: 300;
  color: #101f46;;
  margin-bottom: 10px;
  line-height: 1.45;
}

.ans {
  display: none;
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  max-width: 900px;
}

.policy__content {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.policy__section {
  position: relative;
  padding: 18px 20px 18px 22px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.policy__section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: #101f46;
  border-radius: 2px;
}


.policy__section:hover {
  transform: translateY(-3px);
  border-color: #cbd5f5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.policy__section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.policy__section h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  margin-top: 14px;
  margin-bottom: 6px;
}

.policy__section p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.7;
}

.policy__section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}

.policy__section li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: #475569;
}

.policy__section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #101f46;
  border-radius: 50%;
  opacity: 0.6;
}

.policy__note {
  margin-top: 10px;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: #101f46;
  background: var(--white);
  border-radius: 6px;
}

#contact p {
  line-height: 1.8;
}

.policy__header {
  max-width: 760px;
  margin: 60px auto 30px;
  padding: 0 16px;
}

.policy__header h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}


.policy__intro {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  max-width: 600px;
}

.policy__header::after {
  content: "";
  display: block;
  margin-top: 20px;
  width: 50px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.resources {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}
.resources__section {
  margin-left:10px;
}
.resources__header {
  max-width: 700px;
  margin-bottom: 40px;
}

.resources__header h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.resources__intro {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

.resources__section {
  margin-bottom: 50px;
}

.resources__section h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px ;
  color: #0f172a;  
}
.resources__section.faq h2{
  margin-bottom: 30px ;  
 text-align: center;
}


.resources__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.resource__item {
  background: var(--white);
  border: 1px solid var(--white);
  padding: 16px 16px 18px;
  border-radius: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.resource__item:hover {
  transform: translateY(-4px);
  border-color: #cbd5f5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.resource__item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #101f46;
}

.resource__item p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}


.faq {
  max-width: 1100px;
  margin: 12px auto;
}


.faq__item {
  padding: 14px ;
  width: 100%;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e2e8f0;
}
.faq__item h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 6px;
}
.faq__item p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.faq__item:last-child {
  border-bottom: none;
}

.hero-premium {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
  position: relative;
  margin-top: 0px;
  padding-top: 120px;
  
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.3));
  align-items:center;
  margin-top: 14px;
}

.hero-content {
  color: var(--white);
  max-width: 650px;

  margin-left: 150px;   
  text-align: left;    
 
}


.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--white);
}

.subtext {
  color: var(--white);
  margin-bottom: 25px;
}

.btn-donate {
  background: var(--theme);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-join {
  border: 2px solid var(--white);
  padding: 12px 22px;
  margin-left: 10px;
  border-radius: 6px;
}


/* about us css */

.about-section {
  font-family: 'Inter', sans-serif;
  padding:100px 0;
  background:#f8fafc;
  margin-top: -14px;
  margin-top: -45px;
}

.main-layout{
  display:flex;
  align-items:center;
  gap:70px;
}

.content-side{
  flex:1;
}




.eyebrow{
  display:inline-block;
  color:var(--theme2) !important;
  font-size:13px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.about-main-title{
  font-size:2.7rem;
  line-height:1.2;
  color:#0f172a;
  margin-bottom:22px;
  max-width:650px;
}

.about-intro{
  color:#475569 !important;
  font-size:1rem;
  line-height:1.9;
  margin-bottom:40px;
  max-width:620px;
}

.about-highlights{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-bottom:40px;
}

.highlight-card{
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:#fff;
  padding:22px;
  border-radius:20px;
  border:1px solid #e2e8f0;
  transition:.3s ease;
  box-shadow:0 8px 30px rgba(15,23,42,.05);
}

.highlight-card:hover{
  transform:translateY(-5px) scale(1.03);
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}


.highlight-icon{
  width:58px;
  height:58px;
  border-radius:16px;
  background:linear-gradient(135deg,#ff2d2d,#ff6a3d);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  flex-shrink:0;
}

.highlight-card h3{
  font-size:1.15rem;
  margin-bottom:8px;
  color:#0f172a;
}

.highlight-card p{
  color:#64748b !important;
  line-height:1.7;
  font-size:.95rem;
}



.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pillar-icon {
  width: 80px;
  margin-left: -20px;
  margin-bottom: 10px;
}

.pillar-label {
  display: block;
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--muted);
  margin-bottom: 10px;
}

.pillar h3 {
  font-size: 1.2rem;
  color: #0c1a35;
  margin-bottom: 15px;
  line-height: 1.3;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}


.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  background: var(--theme2);
  
  color: var(--white) !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform ease 0.3s;
}

.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);

}


.image-grid{
  flex:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.grid-item{
  overflow:hidden;
  border-radius:28px;
  height:260px;
  box-shadow:0 15px 35px rgba(15,23,42,.08);
}


.grid-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.grid-item:hover img{
  transform:scale(1.03);
}


/* =========================
   HOME BLOG SECTION
========================= */

.home-blog-section{
  padding:100px 0;
  background:#e2e8f0;
  padding-top: 60px;
  padding-bottom: 40px;
}

.home-blog-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:50px;
  flex-wrap:wrap;
}

.home-blog-head h2{
  font-size:2.3rem;
  color:#101f46;
  margin-top:10px;
  margin-bottom:12px;
  font-family:"Montserrat",sans-serif;
}

.home-blog-head p{
  max-width:650px;
  color:#64748b;
}

.home-blog-link{
  text-decoration:none;
  color:#e63946;
  font-weight:700;
  transition:0.3s ease;
}

.home-blog-link:hover{
  transform:translateX(4px);
}

.home-blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.home-blog-card{
  background:white;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.35s ease;
  display:flex;
  flex-direction:column;
}

.home-blog-card:hover{
  transform:translateY(-8px) scale(1.03);
}

.home-blog-image{
  position:relative;
  overflow:hidden;
}

.home-blog-image img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:0.4s ease;
}

.home-blog-card:hover img{
  transform:scale(1.03);
}

.home-blog-badge{
  position:absolute;
  top:16px;
  left:16px;
  background:#e63946;
  color:white;
  padding:6px 14px;
  border-radius:40px;
  font-size:0.78rem;
  font-weight:700;
}

.home-blog-content{
  padding:26px;
  display:flex;
  flex-direction:column;
  flex-grow:1;
}

.home-blog-meta{
  display:flex;
  gap:16px;
  color:#94a3b8;
  font-size:0.85rem;
  margin-bottom:14px;
  flex-wrap:wrap;
}

.home-blog-content h3{
  font-size:1.3rem;
  line-height:1.5;
  color:#101f46;
  margin-bottom:14px;
  font-family:"Montserrat",sans-serif;
}

.home-blog-content p{
  color:#64748b;
  margin-bottom:22px;
  flex-grow:1;
}

.home-blog-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#e63946 !important;
  font-weight:700;
  text-decoration:none;
  transition:0.3s ease;
}

.home-blog-btn:hover{
  gap:16px;
}

/* MORE BLOGS BUTTON */

.home-blog-btn-wrap{
  margin-top:50px;
  display:flex;
  justify-content:center;
}

.more-blogs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 30px;
  background: var(--theme2);
  color:white !important;
  text-decoration:none;
  border-radius:14px;
  font-weight:700;
  transition: transform 0.35s ease;
  box-shadow:0 10px 25px rgba(16,31,70,0.15);
}

.more-blogs-btn:hover{
  transform:translateY(-4px);
}


/* ======================================================
   RESPONSIVE SYSTEM
====================================================== */

/* LARGE TABLETS */
@media (max-width: 1024px){

  .main-layout{
    grid-template-columns:1fr;
  }

  .cards-grid.three-col{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .preview-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .home-blog-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-content{
    max-width:100%;
  }

}

@media (max-width: 768px){

  .section{
    padding:25px 0;
    margin-top: -60px;
  }

  .container{
    width:min(92%, 100%);
  }

     .hero-premium {
    padding: 100px 0 60px;
  }

     .hero-content {
    margin-left: 16px !important;
    padding: 0 20px;
    text-align: center;
  }
  .home-page a {
    color: inherit;
    text-decoration: none;
    margin-left: 0px;
    
}

  .hero-actions{
    justify-content:center;
  }

 
  .impact-floating {
    margin-top: -82px;  
    padding: 0 0; 
  
  }
   .impact-card .stats-grid {
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px;
  }
  .impact-card {
    width: 100%;
    border-radius: 18px;
  }

  .impact-card h3 {
    font-size: 1.4rem;
  }

   .impact-card p {
    font-size: 0.78rem;
  }

   .main-layout {
    flex-direction: column;  
    gap: 40px;
  }

    .about-main-title {
    font-size: 1.7rem;
  }

    .about-intro {
    font-size: 0.95rem;
  }

  .image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-item {
    height: 180px;
  }
  
  .cards-grid.three-col,
  .cards-grid.two-col,
  .gallery-grid,
  .preview-grid,
  .timeline-grid,
  .home-blog-grid,
  .image-grid,
  .form-grid{
    grid-template-columns:1fr;
  }

  .section-head,
  .home-blog-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .about-main-title{
    font-size:2rem;
  }

  .home-blog-head h2{
    font-size:2rem;
  }

  .grid-item{
    height:300px;
  }

  .gallery-grid img,
  .gallery-item img{
    height:260px;
  }

  .faq{
    padding:20px;
  }

  .faq_container {
    padding: 20px 16px;
  }

  .faq_container h3 {
    font-size: 1.5rem;
  }

  .faq_a {
    margin-left: 0;
    margin-right: 0;
    padding: 20px 0;
    margin-top: 0;
  }

  .faq {
    padding: 18px 16px;
    margin-bottom: 14px;
    margin-top: 14px;
  }

  .ques {
    font-size: 0.95rem;
    font-weight: 500;
  }

  .ans {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .image-grid {
    display: none;
  }


}



@media (max-width: 576px){

  .hero-content h1{
    font-size:2.2rem;
  }

  .subtext{
    font-size:0.95rem;
  }

  .btn-donate,
  .btn-join{
    width:100%;
    text-align:center;
  }

  .hero-actions{
    flex-direction:column;
  }

  .impact-card{
    padding:22px;
  }

  .impact-card h3{
    font-size:1.7rem;
  }

  .about-main-title{
    font-size:1.7rem;
  }

  .highlight-card{
    flex-direction:column;
  }

  .home-blog-content{
    padding:22px;
  }

  .home-blog-content h3{
    font-size:1.15rem;
  }

  .gallery-grid img,
  .gallery-item img{
    height:220px;
  }

  .grid-item{
    height:240px;
  }

  .faq_container h3{
    font-size:1.8rem;
  }

}


/* ======================================================
   GLOBAL ANIMATIONS
====================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatSoft {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ======================================================
   HERO SECTION ANIMATIONS
====================================================== */

.hero-content {
  animation: fadeLeft 1s ease;
}

.hero-content h1 {
  animation: fadeUp 1s ease;
}

.subtext {
  animation: fadeUp 1.2s ease;
}

.hero-actions {
  animation: fadeUp 1.4s ease;
}

/* ======================================================
   SECTION ANIMATIONS
====================================================== */

.about-section,
.home-blog-section,
.faq_container,
.resources,
.policy__content {
  animation: fadeUp 1s ease;
}

/* ======================================================
   CARD ANIMATIONS
====================================================== */

.card,
.highlight-card,
.home-blog-card,
.resource__item,
.faq{
  animation: zoomIn 0.7s ease;
  will-change: transform;
}

/* ======================================================
   IMAGE ANIMATIONS
====================================================== */

.grid-item,
.gallery-item,
.rounded-media,
.rounded-media-book {
  animation: fadeUp 1s ease;
}

.grid-item img,
.gallery-item img,
.rounded-media,
.rounded-media-book {
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
}

.grid-item:hover img,
.gallery-item:hover img,
.rounded-media:hover,
.rounded-media-book:hover {
  transform: scale(1.05);
  filter: brightness(1.04);
}

/* ======================================================
   BUTTON ANIMATIONS
====================================================== */

.btn,
.btn-outline,
.btn-donate,
.btn-join,
.more-blogs-btn,
.galary-text-link {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.btn:hover,
.btn-outline:hover,
.btn-donate:hover,
.btn-join:hover,
.more-blogs-btn:hover,
.galary-text-link:hover {
  transform: translateY(-4px);
}

/* ======================================================
   FLOATING EFFECTS
====================================================== */

.highlight-card:hover,
.home-blog-card:hover {
  animation: floatSoft 3s ease infinite;
}

/* ======================================================
   TEXT SMOOTHNESS
====================================================== */

h1,
h2,
h3,
h4,
p,
a,
button {
  transition: all 0.3s ease;
}

/* ======================================================
   SCROLL REVEAL SYSTEM
====================================================== */

.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ======================================================
   MOBILE OPTIMIZATION
====================================================== */

@media (max-width: 768px) {

  .hero-content {
    animation: fadeUp 1s ease;
  }

  .card,
  .highlight-card,
  .home-blog-card,
  .faq,
  .resource__item,
  .impact-card {
    animation-duration: 0.6s;
  }

  .grid-item img,
  .gallery-item img {
    transition: transform 0.35s ease;
  }

  .grid-item:hover img,
  .gallery-item:hover img {
    transform: scale(1.03);
  }

  .btn:hover,
  .btn-outline:hover,
  .btn-donate:hover,
  .btn-join:hover {
    transform: translateY(-2px);
  }

}

/* ======================================================
   DESKTOP ENHANCED EFFECTS
====================================================== */

@media (min-width: 1025px){

  .home-blog-card:hover{
    transform:
      translateY(-12px)
      scale(1.035);
  }

  .highlight-card:hover{
    transform:
      translateY(-10px)
      scale(1.04);
  }

  .gallery-item:hover img{
    transform: scale(1.08);
  }

  .impact-card:hover{
    transform:
      translateY(-12px)
      scale(1.04);
  }

}

/* ======================================================
   SMOOTH SCROLL
====================================================== */

html{
  scroll-behavior:smooth;
}

/* ======================================================
   PERFORMANCE
====================================================== */

.card,
.highlight-card,
.home-blog-card,
.gallery-item img,
.grid-item img,
.btn,
.btn-outline {
  backface-visibility: hidden;
  transform: translateZ(0);
}