:root {
  --primary-color: #0b2c65;   /* Deep Blue */
  --secondary-color: #f9b233; /* Golden Yellow */
  --accent-color: #00b894;    /* Green Accent */
  --light-bg: #f8faff;
  --dark-bg: #06152b;
  --text-dark: #222;
}
body {
  scroll-behavior: smooth;
  background: var(--light-bg);
  color: var(--text-dark);
}

.bsdc-header {
    background: linear-gradient(135deg, #004d25, #0f9d58);
    border-bottom: 3px solid #0d8235;
    font-family: 'Rubik', sans-serif;
  }
  .bsdc-header .logo {
    width: 80px;
    height: auto;
  }
  .bsdc-header .title {
    font-size: 1.5rem;
    color: #f1cb11;
    font-weight: bold;
  }
  .bsdc-header .subtitle {
    font-size: 0.95rem;
    color: rgb(228 226 216) !important;
  }
  .bsdc-header .govt-text {
    font-size: 0.85rem;
    color: #d4cdcd;
  }
  .bsdc-header .date-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d8235;
  }
  /* Golden background strip */
  .golden-strip {
    background: linear-gradient(90deg, #d4af37, #ffd700);
    padding: 10px 0;
    border-bottom: 3px solid #0d8235;
  }

  .golden-strip .nav-link {
    color: #222 !important;
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.3s ease;
  }

  .golden-strip .nav-link:hover {
    color: #222 !important;
  }

  /* CTA Buttons */
  .btn-cta {
    font-weight: normal;
    border-radius: 5px;
    padding: 5px 14px;
    color: #000;
    transition: all 0.4s ease;
  }

  .donate-btn {
    background: #e63946;
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.6);
  }

  .donate-btn:hover {
    background: #c91828;
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(230, 57, 70, 0.8);
  }

  .join-btn {
    background: #06d6a0;
    box-shadow: 0 0 12px rgba(6, 214, 160, 0.6);
  }

  .join-btn:hover {
    background: #049d77;
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(6, 214, 160, 0.8);
  }
  /* Left Decorative Shape */
  .decor-box {
    width: 60px;
    height: 60px;
    background: #0d8235;
    transform: rotate(45deg);
    margin-left: 40px;
    margin-top: 10px;
    position: relative;
  }

  .float_box_right{
    margin-left: 0px !important;
    margin-right: 15px !important;
  }
  .decor-box::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: #d4af37;
    top: 16%;
    left: -15px;
    transform: rotate(90deg);
  }

.hero-section {
  position: relative;
  min-height: 60vh;
  padding: 80px 20px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

/* Blurred Background Layer */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/need1.jpeg') center/cover no-repeat;
  filter: blur(0px); /* adjust blur */
  transform: scale(1.1); /* prevents edge cut-off */
  z-index: 1;
}

/* Dark Overlay for Readability */
.hero-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgb(0 0 0 / 83%);
  z-index: 2;
}

/* Foreground Content */
.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-section .highlight {
  color: #FFD700; /* golden highlight */
}

.btn-hero {
  padding: 12px 28px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.donate-btn {
  background: #FFD700;
  color: #000;
  font-weight: bold;
}
.donate-btn:hover {
  background: #e6c200;
  color: #000;
}

.join-btn {
  background: #ffffff;
  color: #000;
  font-weight: bold;
}
.join-btn:hover {
  background: #f0f0f0;
  color: #000;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  font-weight: bold;
}
.whatsapp-btn:hover {
  background: #1ebe57;
  color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #FFD700;
  animation: bounce 1.5s infinite;
  cursor: pointer;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}



.about-section {
  background: #fdfdfd;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  position: relative;
}
.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #c49b0b;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
}
.tagline {
  color: #c49b0b;
  font-weight: 600;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: 16px;
  transition: transform 0.4s ease;
}
.about-image img:hover {
  transform: scale(1.03);
}
.about-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: #c49b0b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.about-badge h4 {
  font-size: 1.5rem;
  font-weight: 700;
}
.mission-points .icon {
  font-size: 1.5rem;
  color: #c49b0b;
  margin-right: 12px;
  flex-shrink: 0;
}
.vision-box {
  background: linear-gradient(135deg, #fff, #fdf6e3);
  border-left: 5px solid #c49b0b;
  border-radius: 12px;
}

.text-golden {
  color: #c9a646;
}

.btn-outline-golden {
  border: 2px solid #c9a646;
  color: #c9a646;
  transition: all 0.3s ease;
}
.btn-outline-golden:hover {
  background: #c9a646;
  color: #fff;
}

.program-card {
  border-radius: 15px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.program-icon {
  font-size: 50px;
  color: #c9a646;
}



/* Golden + Green Theme */
.text-golden {
  color: #d4af37; /* premium golden */
}
.btn-green-yellow {
  background: linear-gradient(135deg, #28a745, #d4af37);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.btn-green-yellow:hover {
  background: linear-gradient(135deg, #218838, #c59d29);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.donate-card {
  background: rgba(255,255,255,0.85);
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.donate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Glass Effect */
.glass-card {
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.3);
}

/* Premium Links */
.link-premium {
  color: #28a745;
  font-weight: 600;
  text-decoration: none;
}
.link-premium:hover {
  color: #d4af37;
  text-decoration: underline;
}


.donate-section {
  position: relative;
  background: linear-gradient(rgba(0,70,0,0.7), rgba(0,50,0,0.85)), 
              url('../img/bgx.avif') 
              center/cover no-repeat;
  color: #fff;
}

.text-golden {
  color: #FFD700;
}

.donate-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.donate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.donate-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.donate-content {
  padding: 20px;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFD700;
}

.btn-premium {
  background: linear-gradient(90deg, #FFD700, #4CAF50);
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 20px;
  transition: 0.3s;
}
.btn-premium:hover {
  opacity: 0.9;
}

.link-premium {
  color: #FFD700;
  font-weight: 600;
  transition: 0.3s;
}
.link-premium:hover {
  color: #fff;
}


.volunteer-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.volunteer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.btn-premium {
  background: linear-gradient(135deg, #FFD700, #FFC107);
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-premium:hover {
  background: linear-gradient(135deg, #FFC107, #FFD700);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  color: #000;
}
.activities-slider{
  background: #fed70396;
}

.activity-slide img {
  width: 100%;             /* no fixed height */
  height: 450px;         /* optional: limit height */
  object-fit: contain;       /* show whole image */
  border-radius: 16px;
  background: #fff;          /* white bg to avoid blank space */
  padding: 10px;             /* adds breathing space */
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.5s ease;
}
.activity-slide img:hover {
  transform: scale(1.02);
}

.activity-slide img:hover {
  transform: scale(1.05);
}


.footer-section {
  background: linear-gradient(135deg, #004d25, #0f9d58);
  position: relative;
  overflow: hidden;
}
.footer-section::before {
  content: "";
  position: absolute;
  top: -50px; left: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,0,0.25) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}
.footer-section h4, 
.footer-section h5 {
  position: relative;
  z-index: 2;
}
.text-gradient {
  background: linear-gradient(90deg, #d4d700, #ffea00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-section .btn-cta {
  background: linear-gradient(90deg, #d4d700, #ffd700);
  color: #064e3b;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.footer-section .btn-cta:hover {
  background: linear-gradient(90deg, #ffe600, #facc15);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,215,0,0.4);
}
.footer-section .footer-link {
  color: #f1f1f1;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-section .footer-link:hover {
  color: #d4d700;
  padding-left: 5px;
}
.footer-section .social-link {
  color: #e5e5e5;
  font-size: 1.3rem;
  margin-left: 14px;
  transition: all 0.3s ease;
}
.footer-section .social-link:hover {
  color: #d4d700;
  transform: scale(1.25) rotate(5deg);
}

.btn-success {
  background: linear-gradient(45deg, #28a745, #a8e063);
  border: none;
}
.btn-success:hover {
  background: linear-gradient(45deg, #218838, #8fd650);
}

.volunteer-section {
  background: url('../img/bghand.jpg') center/cover no-repeat;
}
.form-card {
  background: #fff;
  border: 2px solid #e3f2e1;
  transition: all 0.3s ease;
}
.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media(max-width: 746px){
  .bsdc-header .logo{
    width: 60px !important;
    height: 60px !important;
  }
  .bsdc-header .title {
    font-size: 10px;
    text-align: left;
    margin-bottom: 0px;
  }
  .bsdc-header .subtitle {
    font-size: 11px;
    text-align: left;
    margin-bottom: 0px !important;
  }
  .bsdc-header .govt-text {
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0px;
  }
}