    :root {
      --primary:   #87cefa;
      --primary-d: #5b8ed2;
      --accent:    #b3e5ff;
      --dark:      #25354e;
      --mid:       #4f6d8a;
      --light:     #ffffff;
      --white:     #ffffff;
      --text:      #000000;
      --border:    #dbe9fb;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
    h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }

    /* ─── TOP BAR ─── */
    #topbar {
      background: var(--dark);
      color: #ccc;
      font-size: .8rem;
      padding: 7px 0;
    }
    #topbar a { color: #ccc; text-decoration: none; }
    #topbar a:hover { color: var(--accent); }
    #topbar .socials a { display: inline-block; width: 26px; height: 26px; line-height: 26px; text-align: center; border-radius: 50%; background: rgba(255,255,255,.1); margin-left: 4px; transition: background .2s; }
    #topbar .socials a:hover { background: var(--primary); color: #fff; }

    /* ─── NAVBAR ─── */
    .main-nav {
      background: var(--white);
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
      position: sticky; top: 0; z-index: 999;
    }
    .main-nav .navbar-brand img {height:122px; }
    .main-nav .nav-link { font-weight: 500; color: var(--dark) !important; font-size: .88rem; padding: .5rem .75rem !important; transition: color .2s; }
    .main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--primary) !important; }
    .main-nav .dropdown-menu { border: none; box-shadow: 0 8px 24px rgba(0,0,0,.12); border-radius: 8px; }
    .main-nav .dropdown-item { font-size: .85rem; padding: .45rem 1.1rem; }
    .main-nav .dropdown-item:hover { background: var(--light); color: var(--primary); }
    .btn-donate-nav {
      background: var(--primary);
      color: var(--white) !important;
      border-radius: 25px;
      padding: .4rem 1.2rem !important;
      font-weight: 600 !important;
      transition: background .2s, transform .15s;
    }
    .btn-donate-nav:hover { background: var(--primary-d) !important; transform: translateY(-1px); }

    /* ─── HERO SLIDER ─── */
    #heroSlider { position: relative; overflow: hidden; }
    .hero-slide {
      height: 92vh; min-height: 560px;
      background-size: cover; background-position: center;
      display: flex; align-items: center;
      position: relative;
    }
    .hero-slide::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(120deg, rgba(37,53,78,.82) 0%, rgba(37,53,78,.4) 100%);
    }
    .hero-content { position: relative; z-index: 2; color: #fff; }
    .hero-tag {
      display: inline-block; background: var(--accent);
      color: var(--dark); font-weight: 700; font-size: .75rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 4px 14px; border-radius: 20px; margin-bottom: 18px;
    }
    .hero-content h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.15; margin-bottom: 20px; }
    .hero-content p { font-size: 1.1rem; opacity: .85; max-width: 520px; margin-bottom: 30px; }
    .btn-hero {
      background: var(--primary); color: #fff;
      border: none; border-radius: 30px;
      padding: .75rem 2rem; font-weight: 600; font-size: 1rem;
      display: inline-block; text-decoration: none;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 18px rgba(135,206,250,.32);
    }
    .btn-hero:hover { background: var(--primary-d); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(135,206,250,.4); }
    .btn-hero-outline {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,.7);
      border-radius: 30px; padding: .73rem 1.8rem;
      font-weight: 600; font-size: 1rem;
      display: inline-block; text-decoration: none; margin-left: 12px;
      transition: all .2s;
    }
    .btn-hero-outline:hover { background: #fff; color: var(--dark); border-color: #fff; }
    .carousel-indicators [data-bs-target] { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); border: none; }
    .carousel-indicators .active { background: var(--accent); width: 28px; border-radius: 5px; }

    /* ─── SECTION LABELS ─── */
    .section-label {
      display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--primary); margin-bottom: 8px;
    }
    .section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--dark); line-height: 1.2; }
    .title-line { width: 50px; height: 4px; background: var(--primary); border-radius: 2px; margin: 14px 0 0; }
    .title-line.centered { margin: 14px auto 0; }

    /* ─── CAUSE CARDS ─── */
    section { padding: 80px 0; }
    .cause-card {
      border: none; border-radius: 14px;
      overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08);
      transition: transform .25s, box-shadow .25s;
    }
    .cause-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.14); }
    .cause-card img { height: 210px; object-fit: cover; width: 100%; }
    .cause-card .card-body { padding: 1.3rem; }
    .cause-card .card-title { font-size: 1.05rem; font-family: 'Playfair Display', serif; color: var(--dark); margin-bottom: .4rem; }
    .cause-card .card-text { font-size: .83rem; color: #888; }
    .cause-card .raised-row { display: flex; justify-content: space-between; font-size: .78rem; color: #888; margin-top: 4px; }
    .progress { height: 6px; border-radius: 3px; background: #eee; }
    .progress-bar { background: var(--primary); border-radius: 3px; }
    .btn-card {
      background: var(--primary); color: #fff; border: none;
      border-radius: 20px; padding: .35rem 1.1rem; font-size: .8rem;
      font-weight: 600; transition: background .2s;
      text-decoration: none; display: inline-block;
    }
    .btn-card:hover { background: var(--primary-d); color: #fff; }
    .btn-card-outline {
      background: transparent; color: var(--primary); border: 1.5px solid var(--primary);
      border-radius: 20px; padding: .33rem 1.1rem; font-size: .8rem;
      font-weight: 600; transition: all .2s; text-decoration: none; display: inline-block;
    }
    .btn-card-outline:hover { background: var(--primary); color: #fff; }

    /* ─── ABOUT / MISSION ─── */
    #about { background: var(--light); }
    .about-img-wrap { position: relative; }
    .about-img-wrap img { border-radius: 14px; width: 100%; object-fit: cover; max-height: 420px; }
    .about-badge {
      position: absolute; bottom: -20px; left: 20px;
      background: var(--primary); color: #fff;
      border-radius: 12px; padding: 14px 20px;
      font-family: 'Playfair Display', serif; text-align: center;
      box-shadow: 0 6px 20px rgba(135,206,250,.28);
    }
    .about-badge span { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
    .about-badge small { font-size: .7rem; letter-spacing: 1px; opacity: .85; }

    /* ─── STATS ─── */
    #stats { background: var(--dark); color: #fff; }
    .stat-item { text-align: center; }
    .stat-item .num { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--accent); }
    .stat-item .lbl { font-size: .9rem; opacity: .7; letter-spacing: 1px; }
    .stat-sep { width: 1px; background: rgba(255,255,255,.12); }

    /* ─── CATEGORIES ─── */
    #categories { background: var(--white); }
    .cat-card {
      border-radius: 14px; overflow: hidden; cursor: pointer;
      position: relative; box-shadow: 0 4px 16px rgba(0,0,0,.09);
      transition: transform .25s, box-shadow .25s;
    }
    .cat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.15); }
    .cat-card img { height: 200px; object-fit: cover; width: 100%; display: block; transition: transform .4s; }
    .cat-card:hover img { transform: scale(1.06); }
    .cat-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(37,53,78,.85) 0%, transparent 60%);
      display: flex; align-items: flex-end; padding: 18px;
    }
    .cat-overlay h5 { color: #fff; font-size: .95rem; margin: 0; }

    /* ─── DONATE STRIP ─── */
    #donate-strip { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%); color: #fff; padding: 60px 0; }
    #donate-strip h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
    #donate-strip p { opacity: .88; font-size: 1.05rem; }
    .btn-light-donate {
      background: #fff; color: var(--primary);
      border: none; border-radius: 30px;
      padding: .75rem 2.2rem; font-weight: 700; font-size: 1rem;
      text-decoration: none; display: inline-block;
      box-shadow: 0 4px 18px rgba(0,0,0,.2);
      transition: transform .15s, box-shadow .15s;
    }
    .btn-light-donate:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); color: var(--primary-d); }

    /* ─── EVENTS ─── */
    #events { background: var(--light); }
    .event-card {
      background: #fff; border-radius: 14px; overflow: hidden;
      box-shadow: 0 4px 16px rgba(0,0,0,.08);
      transition: transform .25s, box-shadow .25s; height: 100%;
    }
    .event-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,.13); }
    .event-card img { height: 190px; object-fit: cover; width: 100%; }
    .event-card .card-body { padding: 1.2rem; }
    .event-date { font-size: .75rem; color: var(--primary); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
    .event-card h5 { font-size: .95rem; color: var(--dark); }

    /* ─── GALLERY ─── */
    #gallery { background: var(--white); }
    .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .gallery-item { overflow: hidden; border-radius: 10px; aspect-ratio: 1; cursor: pointer; position: relative; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item .g-overlay { position: absolute; inset: 0; background: rgba(135,206,250,.65); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
    .gallery-item:hover .g-overlay { opacity: 1; }
    .gallery-item .g-overlay i { color: #fff; font-size: 2rem; }
    @media (max-width: 767px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ─── PARTNERS ─── */
    #partners { background: var(--light); padding: 60px 0; }
    .partner-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
    .partner-item {
      width: 110px; height: 70px; border-radius: 8px;
      background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.07);
      display: flex; align-items: center; justify-content: center;
      transition: box-shadow .2s;
    }
    .partner-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,.13); }
    .partner-item img { max-width: 90px; max-height: 55px; object-fit: contain; filter: grayscale(40%); transition: filter .2s; }
    .partner-item:hover img { filter: none; }

    /* ─── FOOTER ─── */
    footer { background: var(--dark); color: rgba(255,255,255,.75); font-size: .87rem; }
    footer .footer-top { padding: 64px 0 40px; }
    footer h5 { color: #fff; font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 18px; }
    footer ul { list-style: none; padding: 0; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; font-size: .85rem; }
    footer ul li a:hover { color: var(--accent); }
    footer .footer-brand p { line-height: 1.7; font-size: .84rem; max-width: 280px; margin-top: 14px; }
    footer .footer-social a {
      display: inline-block; width: 34px; height: 34px; line-height: 34px; text-align: center;
      border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; margin-right: 6px;
      transition: background .2s; text-decoration: none;
    }
    footer .footer-social a:hover { background: var(--primary); }
    footer .footer-bottom { background: rgba(0,0,0,.25); padding: 16px 0; font-size: .78rem; color: rgba(255,255,255,.45); }
    footer .footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
    footer .footer-bottom a:hover { color: var(--accent); }

    /* ─── SCROLL TOP ─── */
    #scrollTop {
      position: fixed; bottom: 28px; right: 28px;
      width: 42px; height: 42px; background: var(--primary);
      color: #fff; border: none; border-radius: 50%;
      display: none; align-items: center; justify-content: center;
      font-size: 1rem; box-shadow: 0 4px 14px rgba(135,206,250,.28);
      cursor: pointer; z-index: 9999; transition: background .2s, transform .15s;
    }
    #scrollTop:hover { background: var(--primary-d); transform: translateY(-2px); }
    #scrollTop.show { display: flex; }

    /* ─── MISC ─── */
    .text-primary-custom { color: var(--primary) !important; }
    .bg-light-custom { background: var(--light); }
    .wow-fade { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
    .wow-fade.visible { opacity: 1; transform: none; }

h2 {
  font-size: 28px;
}

.info h4 {
  color: #5a7bd8;
  margin-bottom: 5px;
}

textarea {
  height: 120px;
  resize: none;
}

button {
  background: #5a7bd8;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* button:hover {
  background: #3d5cc9;
} */



    .what-section {
      background: #f5f5f5;
      padding: 60px 0;
    }

    .what-title-small {
      font-size: 48px;
      font-weight: 700;
      color: #1e5bb8;
      line-height: 1;
    }

    .what-heading {
      font-size: 42px;
      font-weight: 700;
      color: #174ea6;
      margin: 20px 0;
    }

    .what-list {
      font-size: 20px;
      font-weight: 700;
      color: #174ea6;
      
      padding-left: 20px;
    }

    .what-list li {
      margin-bottom: 10px;
    }

    /* Image collage */
    .image-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto;
      gap: 15px;
    }

    .img-box {
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 10px;
    }

    .img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Custom placements */
    .img1 { grid-column: 2; grid-row: 1; height: 120px; }
    .img2 { grid-column: 1 / span 2; grid-row: 2; height: 160px; }
    .img3 { grid-column: 1; grid-row: 3; height: 140px; }
    .img4 { grid-column: 2; grid-row: 3; height: 140px; }

    @media (max-width: 768px) {
      .what-title-small {
        font-size: 36px;
      }
      .what-heading {
        font-size: 28px;
      }
      .what-list {
        font-size: 16px;
      }
    }

    @media (max-width: 576px) {
      .image-grid {
        grid-template-columns: 1fr;
      }
      .img1 { grid-column: 1; grid-row: 1; }
      .img2 { grid-column: 1; grid-row: 2; }
      .img3 { grid-column: 1; grid-row: 3; }
      .img4 { grid-column: 1; grid-row: 4; }
    }



    .contact-section {
  background: #f8f9fa;
}

.contact-title {
  font-size: 60px;
  font-weight: bold;
  color: #0d47a1;
  font-family: 'Comic Sans MS', cursive;
}

.contact-text {
  font-size: 18px;
  color: #0d47a1;
  line-height: 1.7;
}

.contact-section p {
  font-size: 17px;
  color: #0d47a1;
}

.contact-section a {
  color: #0d47a1;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

.qr-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.qr-img {
  max-width: 250px;
}

.tagline {
  font-size: 22px;
  font-weight: bold;
  color: #0d47a1;
  font-family: 'Comic Sans MS', cursive;
}
    
    
    
    .page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.volunteer-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  padding: 2rem;
  text-align: center;
}

.volunteer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.volunteer-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.volunteer-details p {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #666;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-3px);
}

.benefit-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.membership-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
  position: relative;
}

.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.membership-card.featured {
  border: 2px solid var(--primary);
}

.membership-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.price .amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.price .period {
  font-size: 0.9rem;
  color: #666;
}

.membership-body ul li {
  font-size: 0.9rem;
}

.benefit-item {
  padding: 2rem 1rem;
}

.benefit-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.highlight-text {
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.mission-vision-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.focus-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.focus-header {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
}

.impact-stat .stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}

.impact-stat .stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.testimonial-card {
  border-radius: 12px;
  transition: transform .25s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.approach-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.leader-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.leader-avatar img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid var(--primary-light);
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.internship-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.track-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.track-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.track-header {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  border-radius: 12px 12px 0 0;
}

.track-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eligibility-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.eligibility-item {
  display: flex;
  align-items: flex-start;
}

.process-step {
  display: flex;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-content h6 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.application-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.intern-story-card {
  border-radius: 12px;
  transition: transform .25s;
}

.intern-story-card:hover {
  transform: translateY(-3px);
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.center-stats .stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.center-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
}

.center-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.program-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.program-header {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  border-radius: 12px 12px 0 0;
}

.program-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-stats .stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.option-card {
  transition: transform .25s;
}

.option-card:hover {
  transform: translateY(-2px);
}

.story-card {
  border-radius: 12px;
  transition: transform .25s;
}

.story-card:hover {
  transform: translateY(-3px);
}

.story-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.vision-content, .mission-content {
  padding: 2rem 0;
}

.vision-points .fas, .mission-stats .fas {
  opacity: 0.8;
}

.stat-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(135, 206, 250, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.value-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.video-filter .btn {
  margin: 2px;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(135, 206, 250, .9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all .3s;
}

.video-card:hover .play-button {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info h6 {
  color: var(--dark);
}

.video-info p {
  margin-bottom: 0.5rem;
}


.program-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.approach-step {
  padding: 20px;
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.gallery-filter .btn {
  margin: 2px;
}

.gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(135, 206, 250, .9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h6 {
  color: #fff;
  margin-bottom: 5px;
  font-weight: bold;
}

.gallery-info p {
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  margin: 0;
}

.gallery-overlay i {
  color: #fff;
  font-size: 1.5rem;
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.center-stats .stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.center-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
}

.center-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.program-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.program-header {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  border-radius: 12px 12px 0 0;
}

.program-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-stats .stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.option-card {
  transition: transform .25s;
}

.option-card:hover {
  transform: translateY(-2px);
}

.story-card {
  border-radius: 12px;
  transition: transform .25s;
}

.story-card:hover {
  transform: translateY(-3px);
}

.story-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.center-stats .stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.center-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
}

.center-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.program-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.program-header {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  border-radius: 12px 12px 0 0;
}

.program-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-stats .stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.option-card {
  transition: transform .25s;
}

.option-card:hover {
  transform: translateY(-2px);
}

.story-card {
  border-radius: 12px;
  transition: transform .25s;
}

.story-card:hover {
  transform: translateY(-3px);
}

.story-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s;
  padding: 2rem;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.membership-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.membership-card.featured {
  border: 2px solid var(--primary);
}

.membership-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
}

.price .currency {
  font-size: 1.5rem;
}

.price .period {
  font-size: 1rem;
  color: #666;
}

.membership-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.testimonial-card {
  border-radius: 12px;
  transition: transform .25s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.project-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.impact-stat .stat-number {
  color: var(--primary) !important;
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.project-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(135,206,250,.8) 0%, rgba(135,206,250,.4) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 15px;
  opacity: 0;
  transition: opacity .3s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-category {
  background: rgba(255,255,255,.9);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.progress {
  height: 6px;
}

.progress-bar {
  background: var(--primary);
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.donation-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.donation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.donation-card.featured {
  border: 2px solid var(--primary);
}

.donation-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.donation-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amount-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.amount-btn {
  min-width: 80px;
}

.amount-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.impact-calculator {
  border-radius: 12px;
}

.impact-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.payment-form-card {
  border-radius: 12px;
}

.testimonial-card {
  border-radius: 12px;
  transition: transform .25s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.center-stats .stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.center-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
}

.center-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.program-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.program-header {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  border-radius: 12px 12px 0 0;
}

.program-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-stats .stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.option-card {
  transition: transform .25s;
}

.option-card:hover {
  transform: translateY(-2px);
}

.story-card {
  border-radius: 12px;
  transition: transform .25s;
}

.story-card:hover {
  transform: translateY(-3px);
}

.story-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.project-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.partnership-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  padding: 2rem;
}

.partnership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.partnership-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s;
}

.partner-logo:hover {
  transform: translateY(-3px);
}

.logo-placeholder {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.center-stats .stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.center-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
}

.center-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.program-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.program-header {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  border-radius: 12px 12px 0 0;
}

.program-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-stats .stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.option-card {
  transition: transform .25s;
}

.option-card:hover {
  transform: translateY(-2px);
}

.story-card {
  border-radius: 12px;
  transition: transform .25s;
}

.story-card:hover {
  transform: translateY(-3px);
}

.story-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}


.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.career-benefit {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s;
  padding: 2rem;
}

.career-benefit:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s;
  padding: 2rem;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-requirements ul {
  padding-left: 1rem;
}

.job-requirements li {
  margin-bottom: 0.25rem;
}

.application-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.internship-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s;
  padding: 2rem;
}

.internship-card:hover {
  transform: translateY(-5px);
}

.internship-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
}

.center-stats .stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.center-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
}

.center-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.program-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.program-header {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  border-radius: 12px 12px 0 0;
}

.program-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-stats .stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.option-card {
  transition: transform .25s;
}

.option-card:hover {
  transform: translateY(-2px);
}

.story-card {
  border-radius: 12px;
  transition: transform .25s;
}

.story-card:hover {
  transform: translateY(-3px);
}

.story-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
