.footer-banner {
  margin: 0;
  padding: 0;
  line-height: 0; /* removes small white gaps */
}
.footer-banner img {
  display: block;
  width: 100%;
  height: auto;
}
  
  .video-background iframe, 
  #bg-video iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .navbar-custom {
    background: linear-gradient(90deg, #FFD54F, #FF7043, #EC407A, #8E24AA);
  }
  .navbar-custom .nav-link {
    color: #313131 !important;
    font-size: 15px;
  }
  .navbar-custom .nav-link:hover {
    color: black !important; /* light yellow hover */
  }
  .navbar-custom .btn-warning {
    background: #ffffff;
    border: none;
  }
  .navbar-custom .btn-warning:hover {
    background: #EC407A;
  }


.hero {
  min-height: 90vh; /* almost full screen */
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url('podcast-bg.jpg') center/cover no-repeat;
  padding-top: 100px; /* offset for navbar height */
}
.navbar {
    padding: 0;
  background: #ceddef;
  transition: background 0.3s ease;
}
.navbar.scrolled {
  background: #d3d3d3 !important; /* solid on scroll */
}


  .donation-section {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    border-top: 4px solid #28a745;
  }
  .donation-section h2 {
    font-weight: bold;
    color: #222;
  }
  .donation-section p.lead {
    font-size: 1.1rem;
    color: #555;
  }
  .donation-section img {
    transition: transform 0.3s ease;
  }
  .donation-section img:hover {
    transform: scale(1.05);
  }

  #sponsors img {
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
  }
  #sponsors img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
  }


  #stories .card {
    border-radius: 16px;
    background: #fff;
    transition: transform 0.3s ease;
  }
  #stories .card:hover {
    transform: translateY(-5px);
  }
  /* Zig-zag effect */
  @media (min-width: 768px) {
    #stories .row > div:nth-child(odd) {
      margin-top: 30px;
    }
  }


    body {
      scroll-behavior: smooth;
    }
   
    .icon-nav {
      position: fixed;
      top: 50%;
      left: 20px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }
    .icon-nav a {
      background: #fff;
      color: #333;
      border-radius: 50%;
      padding: 10px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      transition: 0.3s;
    }
    .icon-nav a:hover {
      background: #ffc107;
      color: #fff;
    }
  .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;             /* equal width */
      height: 60px;            /* equal height */
      background: #25D366;
      color: white;
      border-radius: 50%;      /* makes it a circle */
      display: flex;           /* centers the icon */
      align-items: center;
      justify-content: center;
      font-size: 28px;         /* adjust icon size */
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
      z-index: 999;
      text-decoration: none;   /* remove underline if it's a link */
    }

    .card-custom {
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .donation-section {
      background: #f9f9f9;
      padding: 60px 0;
    }
    footer {
      background: #222;
      color: #bbb;
      padding: 20px;
      text-align: center;
    }
  
  .feedback-box {
    padding: 20px;
    border-radius: 12px;
    height: 400px; /* fixed height */
    display: flex;
    flex-direction: column;
  }

  /* Instagram Dark Mode */
  .insta-box {
    background: #121212;
    color: #fff;
  }
  .insta-box .comment {
    border-bottom: 1px solid #2c2c2c;
    padding: 10px 0;
  }
  .text-pink { color: #e1306c; }

  /* YouTube Light Mode */
  .yt-box {
    background: #f9f9f9;
    color: #000;
  }
  .yt-box .yt-comment {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }

  /* Scrollable comments */
  .scrollable {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 5px;
  }
  .scrollable::-webkit-scrollbar {
    width: 6px;
  }
  .scrollable::-webkit-scrollbar-thumb {
    background: rgba(150, 150, 150, 0.5);
    border-radius: 10px;
  }

  #form .card-custom {
    border-radius: 16px;
    border: none;
  }
  #form label {
    font-weight: 600;
    margin-bottom: 5px;
  }
  #form .form-control {
    border-radius: 10px;
    padding: 12px;
  }
  #form button {
    font-size: 1.2rem;
    border-radius: 12px;
  }
