    
  :root{
  
     --primary-green: #006400;
    --hover-green: #0a7d32;
    --light-green-bg: #f4fff4;
  }

  /* Make page background transparent if embedded */
  html,body{
    height:100%;
    margin:0;
    background:transparent;

  }
  .topbar {
    background: var(--primary-green);
    color: white;
}

/* Navbar */
.navbar {
    background: white;
    border-bottom: 2px solid var(--primary-green);
}

.navbar-brand strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* Menu Links */
.navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    padding: 10px 18px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

/* Donate Button */
.btn-donate {
    background: var(--primary-green);
    border: none;
    color: white;
    font-weight: bold;
}

.btn-donate:hover {
    background: var(--hover-green);
}

/* Social icons hover effect */
.topbar a:hover {
    opacity: 0.7;
}
/* slider  */
/* Caption styling */
.carousel-caption {
  bottom: clamp(1.25rem, 7vh, 4rem);
  max-width: min(90%, 900px);
}

.hero-title {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  margin-top: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

/* Decorative dots (indicators) */
.hero-carousel .custom-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: transparent;
  margin: 0 6px;
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-carousel .custom-indicators .active {
  background-color: #ffffff;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

/* Indicators position */
.hero-carousel .carousel-indicators {
  bottom: 10px;
}

/* Controls thoda clean */
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.6));
}
/* =========================================== */
/* Section Base */
.what-we-do {
    padding: 70px 0;
    text-align: center;
    font-family: Arial, sans-serif;
}

.what-we-do h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
}

/* Center Heart Icon with Breathline Effect */
.heart-line {
    position: relative;
    margin: 20px auto;
    width: 120px;
    height: 20px;
}

.heart-line span {
    display: block;
    position: absolute;
    top: 9px;
    width: 50px;
    height: 2px;
    background: #111;
}

.heart-line span:first-child {
    left: 0;
}

.heart-line span:last-child {
    right: 0;
}

/* Dark Green Heart with white heartbeat */
.heart {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -2px);
    background: #007a4d;
    clip-path: path('M12 2 C10 -2 2 -2 2 6 C2 10 12 18 12 18 C12 18 22 10 22 6 C22 -2 14 -2 12 2 Z');
}

.heart::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 3px;
    width: 18px;
    height: 2px;
    background: transparent;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    animation: beat 1s infinite;
}

/* Beat Line animation */
@keyframes beat {
    0%, 100% { border-top: 2px solid #fff; }
    50% { border-top: 2px solid transparent; }
}

.sub-text {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    color: #555;
}

/* Cards */
.work-card {
    padding: 45px 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
}

.work-card:hover {
    border-color: #00c26a;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.work-card img {
    margin-bottom: 15px;
    width: 100px;
}

.work-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.work-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.work-card a {
    font-size: 14px;
    font-weight: 600;
    color: #00b56b;
    text-decoration: none;
}
/* ============================= */
/* Section Base */
.together {
    background: #064d38; /* dark green */
    padding: 30px 0;
    color: #fff;
    border-radius: 50px 0 50px 0;
    position: relative;
}

/* Heading */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #e6ffe8;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Paragraphs */
.text {
    font-size: 16px;
    line-height: 1.8;
    color: #cfe4d4;
    margin-bottom: 30px;
}

/* Sub sections */
.small-title {
    font-size: 20px;
    font-weight: 600;
    color: #fffbdb;
}

.subtext {
    font-size: 14px;
    color: #e2f5e5;
}

/* Image Style */
.mission {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.mission img:hover {
    transform: scale(1.05);
}




.campaign-card {
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Image frame effect */
.image-frame {
    width: 100%;
    height: 170px;
    overflow: hidden;
    /* border-bottom: 5px solid #10680dff; */
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.4s;
}

.campaign-card:hover .image-frame img {
    transform: scale(1.1);
}
.progress-bar{
    background-color:#10680dff !important;
}
/* ============================================ */




.masonry {
  column-count: 3;
  column-gap: 15px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}

.masonry-item img {
  width: 100%;
  transition: .4s;
  cursor: pointer;
}

.masonry-item img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media(max-width: 991px){
  .masonry { column-count: 2; }
}
@media(max-width: 576px){
  .masonry { column-count: 1; }
}



.footer {
  background: #064F32; /* Dark Green */
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #dcdcdc;
  transition: .3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-social a {
  color: #fff;
  font-size: 22px;
  margin-left: 12px;
  transition: .3s;
}

.footer-social a:hover {
  color: #FFD700;
  transform: scale(1.2);
}

.contact-card {
  background: white;
  transition: .3s;
  border-left: 6px solid #064f32;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
