/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* =====================
   NAVBAR
===================== */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
}

.btn-donate {
  background-color: #e63946;
  color: #fff !important;
  border-radius: 25px;
  padding: 6px 18px;
}

.btn-donate:hover {
  background-color: #c72f3b;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("images/thewet_new-hand-5040992.jpg") center/cover no-repeat;
  color: #fff;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0 25px;
}

/* BLUR / GLASS NAVBAR */
.navbar {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Dark text stays readable */
.navbar .nav-link,
.navbar .navbar-brand {
  color: #222 !important;
  font-weight: 500;
}

/* On scroll (optional) */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}


/* =====================
   SECTIONS
===================== */
.section {
  padding: 70px 0;
}

.section-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.section-text {
  max-width: 750px;
  margin: auto;
  font-size: 1.05rem;
}

/* =====================
   SERVICE CARDS
===================== */
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* =====================
   IMPACT / STATS
===================== */
.impact h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #e63946;
}

/* =====================
   PAGE HEADER (SERVICE PAGES)
===================== */
.page-header {
  padding: 90px 0;
  background: #f8f9fa;
  text-align: center;
}

.page-header1 {
  padding: 90px 0;
  text-align: center;
  height: 50vh; /* full viewport height */
    background-image: url('images/BackpacksUSA-290205-summerclothingshelter-blogbanner1.webp'); /* replace with your image path */
    background-attachment: fixed; /* makes it fixed */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.page-header h1 {
  font-weight: 700;
}

/* =====================
   DONATE SECTION
===================== */
.donate {
  background: #e63946;
  color: #fff;
  padding: 70px 0;
}

.donate h2 {
  font-weight: 700;
}

.donate .btn {
  margin-top: 15px;
  padding: 10px 25px;
  border-radius: 25px;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #111;
  color: #ccc;
  padding: 25px 0;
}

.footer p {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.3rem;
  }
}


/* FOOTER */
.site-footer {
  background: #1c1c1c;
  color: #ddd;
  padding: 60px 0 20px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #f4c430;
}

.footer-socials a img {
  width: 24px;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.85rem;
}

.footer-socials a {
  display: inline-flex;
  margin-right: 12px;
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #f9c74f;
  transform: translateY(-3px);
}

.gallery-box {
    position: relative;
    overflow: hidden;
    height: 250px; /* fixed height for all images */
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* this makes all images fill the box without distortion */
    transition: transform 0.3s ease;
}

.gallery-box:hover img {
    transform: scale(1.1); /* optional zoom effect on hover */
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-box:hover .gallery-overlay {
    opacity: 1;
}


.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

#impact .service-card {
  padding: 30px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.fixed-background1 {
    height: 100vh; /* full viewport height */
    background-image: url('images/index2.avif'); /* replace with your image path */
    background-attachment: fixed; /* makes it fixed */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Optional content styling */
.fixed-background1 .content1 {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    padding: 20px 40px;
    border-radius: 8px;
}

.fixed-background2 {
    height: 100vh; /* full viewport height */
    background-image: url('images/imdadul-hussain-YiA4wqVpLQQ-unsplash.jpg'); /* replace with your image path */
    background-attachment: fixed; /* makes it fixed */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Optional content styling */
.fixed-background2 .content2 {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    padding: 20px 40px;
    border-radius: 8px;
}

.fixed-background3 {
    height: 100vh; /* full viewport height */
    background-image: url('images/seruds-orphanage-budavara-peta-kurnool-orphanages-gqjetf7t4w.avif'); /* replace with your image path */
    background-attachment: fixed; /* makes it fixed */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Optional content styling */
.fixed-background3 .content3 {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    padding: 20px 40px;
    border-radius: 8px;
}

.fixed-background4 {
    height: 100vh; /* full viewport height */
    background-image: url('images/stijn-kleerebezem-bsk8f6BVSHc-unsplash.jpg'); /* replace with your image path */
    background-attachment: fixed; /* makes it fixed */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Optional content styling */
.fixed-background4 .content4 {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    padding: 20px 40px;
    border-radius: 8px;
}

.fixed-background5 {
    height: 100vh; /* full viewport height */
    background-image: url('images/imdadul-hussain-YiA4wqVpLQQ-unsplash.jpg'); /* replace with your image path */
    background-attachment: fixed; /* makes it fixed */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Optional content styling */
.fixed-background5 .content5 {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    padding: 20px 40px;
    border-radius: 8px;
}

.fixed-background6 {
    height: 100vh; /* full viewport height */
    background-image: url('images/GettyImages_1952235268.webp'); /* replace with your image path */
    background-attachment: fixed; /* makes it fixed */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Optional content styling */
.fixed-background6 .content6 {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    padding: 20px 40px;
    border-radius: 8px;
}

.fixed-background7 {
    height: 100vh; /* full viewport height */
    background-image: url('images/widespace-heart-8390212.jpg'); /* replace with your image path */
    background-attachment: fixed; /* makes it fixed */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Optional content styling */
.fixed-background7 .content7 {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    padding: 20px 40px;
    border-radius: 8px;
}

.fixed-background8 {
    height: 100vh; /* full viewport height */
    background-image: url('images/ahmadardity-donation-4951009.jpg'); /* replace with your image path */
    background-attachment: fixed; /* makes it fixed */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Optional content styling */
.fixed-background8 .content8 {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    padding: 20px 40px;
    border-radius: 8px;
}

.fixed-background9 {
    height: 100vh; /* full viewport height */
    background-image: url('images/logo.png'); /* replace with your image path */
    background-attachment: fixed; /* makes it fixed */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Optional content styling */
.fixed-background9 .content9 {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    padding: 20px 40px;
    border-radius: 8px;
}