/* =========================================
   IMPACT SECTION
========================================= */
.content-div.section-impact {
  background: #0F172A;
  padding: 40px 20px;
  width: 100%;
}

.content-div.section-impact .top-div {
  text-align: center;
  margin-bottom: 60px;
}

.content-div.section-impact .top-div h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.content-div.section-impact .top-div p {
  color: var(--primary);
  font-size: 16px;
  margin: 0;
}

/* Base grid utility (reusable) */
.bottom-div .inner-div.cols-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.bottom-div .inner-div.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
}

.bottom-div .inner-div.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
}

/* Single Item Styling */
.content-div.section-impact .single-div .single-inner-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.content-div.section-impact .single-div .icon-div {
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.content-div.section-impact .single-div .icon-div svg,
.content-div.section-impact .single-div .icon-div img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.content-div.section-impact .single-div .text-div h3 {
  font-size: 40px; 
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary) !important;
}

.content-div.section-impact .single-div .text-div p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--primary);
  margin: 0;
  max-width: 250px;
}


.content-div.section-impact .bottom-div.one-shop .single-div .single-inner-div {
    align-items: start;
    text-align: left;
}

.content-div.section-impact .single-div .icon-div {
    margin-bottom: 10px;
    height: 40px;
}

/* =========================================
   RESPONSIVE LAYOUT
========================================= */
@media screen and (max-width: 1024px) {
  .bottom-div .inner-div.cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}

@media screen and (max-width: 767px) {
  .content-div.section-impact {
    padding: 0 40px 60px;
  }
  
  .content-div.section-impact .top-div {
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .bottom-div .inner-div.cols-4,
  .bottom-div .inner-div.cols-3,
  .bottom-div .inner-div.cols-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-div.section-impact .single-div .text-div h3 {
    font-size: 30px; 
  }

  .content-div.section-impact .bottom-div.one-shop .single-div .single-inner-div {
    align-items: center;
    text-align: center;
  }
}

/* =========================================
   STORY HERO SECTION
========================================= */
.section-hero {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
}

.content-div.section-story-hero {
  position: relative;
  padding: 140px 0px;
  display: flex;
  align-items: center;
}

.content-div.section-story-hero .inner-div {
  position: relative;
  z-index: 2; /* Keeps text above the dark overlay */
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.content-div.section-story-hero .text-div {
  max-width: 800px; /* Prevents the heading from stretching across the entire screen */
}

/* Eyebrow Text (e.g., • INTRODUCTION) */
.content-div.section-story-hero .eyebrow-div {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 12px;
  display: none;
}

.content-div.section-story-hero .eyebrow-div .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary); /* The yellow/orange color */
  border-radius: 50%;
  margin-right: 12px;
}

.content-div.section-story-hero .eyebrow-div .text {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px; /* Slight tracking for eyebrow text */
}

/* Headings and Paragraphs */
.content-div.section-story-hero .text-div h1 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.content-div.section-story-hero .text-div p {
  color: var(--bg-1); /* Light off-white */
  font-size: 18px; /* Slightly larger for a hero intro */
  max-width: 650px; /* Keeps the paragraph wrapping nicely under the heading */
}


/* =========================================
   RESPONSIVE LAYOUT
========================================= */
@media screen and (max-width: 767px) {
  .content-div.section-story-hero .eyebrow-div {
    margin-bottom: 15px;
  }
  
  .content-div.section-story-hero .text-div p {
    font-size: 16px; /* Scale down paragraph for mobile */
  }

  .content-div.section-story-hero {
    padding: 0 40px;
  }

  .content-div.section-story-hero .text-div h1 {
    text-align: center;
  }
}

/* @media (max-width: 1439px){
  .content-div.section-story-hero {
    padding: 140px 40px;
  }
} */

/* =========================================
   ABOUT INTRO SECTION
========================================= */
.content-div.section-about-intro {
  padding: 0px 100px;
  background-color: #FFFFFF; /* Or var(--bg-1) depending on your page background */
  text-align: center;
}

.content-div.section-about-intro .inner-div {
  max-width: 900px; /* Keeps the text constrained so it wraps nicely like the design */
  margin: 0 auto;
}

/* Eyebrow Centering & Color Override */
.content-div.section-about-intro .eyebrow-div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

/* Notice in the design, this specific eyebrow text is gray, not primary orange */
.content-div.section-about-intro .eyebrow-div .text {
  color: var(--light-gray); 
}

/* Large Intro Heading */
.content-div.section-about-intro .intro-heading {
  font-size: 36px;
  font-weight: 400; /* Base text is lighter */
  color: var(--light-gray);
  line-height: 1.4;
  margin-bottom: 40px;
  letter-spacing: 0;
}

/* Ensure the strong tags pop correctly */
.content-div.section-about-intro .intro-heading strong {
  font-weight: 700;
}

/* =========================================
   RESPONSIVE LAYOUT
========================================= */
@media screen and (max-width: 1024px) {
  .content-div.section-about-intro .intro-heading {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .content-div.section-about-intro {
    padding: 60px 15px;
  }
  
  .content-div.section-about-intro .intro-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

/* =========================================
   MISSION CARDS (CUSTOM COMPONENT)
========================================= */
.mission-cards-wrapper.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.mission-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4; /* Keeps the tall rectangle shape */
  min-height: 315px;
  cursor: pointer;
  /* Fixes a Safari bug where border-radius breaks on transform */
  transform: translateZ(0); 
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* Background Image Layer */
.mission-card-bg {
  position: absolute;
  inset: -5px; 
  background-size: contain;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

/* Dark Gradient Overlay Layer */
.mission-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%);
  transition: background 0.6s ease;
  z-index: 1;
}

/* Default State (Bottom Text) */
.mission-card-default {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mission-card-default h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin: 0;
}

/* Hover/Active Content (Centered) */
.mission-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none; /* Prevents button from being clicked when hidden */
}

.mission-card-content h3 {
  color: #FFFFFF;
  font-size: 22px;
  margin-bottom: 15px;
}

.mission-card-content p {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Specific button for these cards */
.btn-card-outline {
  display: inline-flex;
  padding: 8px 24px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  pointer-events: auto; /* Re-enables clicking */
}

.btn-card-outline:hover {
  background-color: #FFFFFF;
  color: var(--black);
}

/* =========================================
   JS INTERACTION CLASSES (.is-active)
========================================= */
/* Blur and slight zoom on background */
.mission-card.is-active .mission-card-bg {
  transform: scale(1.08);
  filter: blur(6px);
}

/* Darken overlay entirely */
.mission-card.is-active .mission-card-overlay {
  background: rgba(20, 30, 15, 0.65); /* A slight dark/natural tint */
}

/* Hide default text */
.mission-card.is-active .mission-card-default {
  opacity: 0;
  transform: translateY(20px);
}

/* Show centered content */
.mission-card.is-active .mission-card-content {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */
@media screen and (max-width: 1024px) {
  .mission-cards-wrapper.cols-3 {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .mission-cards-wrapper.cols-3 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* =========================================
   IMPACT STORIES SLIDER (SLICK.JS)
========================================= */
.bcf-slider-container {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

/* Slick Track & Slide Setup */
.bcf-slider-track {
    margin: 0 -12.5px; /* Creates the negative space for the 25px slide gaps */
    visibility: hidden; /* Prevents flash of unstyled content before Slick loads */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bcf-slider-track.slick-initialized {
    visibility: visible;
    opacity: 1;
}

.bcf-slider-track.slick-initialized > .slick-list {
    padding-top: 3px !important;
}

.bcf-slider-track .slick-track {
    display: flex; /* Forces equal height columns */
    padding-bottom: 20px; /* Room for the box shadow on hover */
}

.bcf-slider-track .slick-slide {
    margin: 0 12.5px; /* Creates the 25px gap between cards */
    height: auto; 
    outline: none !important; /* Removes blue focus ring on click */
}

.bcf-slider-track .slick-slide > div {
    height: 100%;
}

/* Individual Card Styling */
.bcf-story-card {
    height: 100%;
    outline: none;
}

.bcf-card-inner {
    background: #FFFFFF;
    border: 1px solid var(--stroke-2);
    border-radius: 20px;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.bcf-card-inner:hover {
    border-color: var(--stroke-1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05); /* Soft shadow on hover */
}

.bcf-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

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

.bcf-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 10px 10px 10px;
}

.bcf-card-category {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px !important;
}

.bcf-card-title {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--black);
}

.bcf-card-excerpt {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 30px !important;
    line-height: 1.6;
}

.bcf-card-arrow {
    margin-top: auto;
    align-self: flex-end;
    transition: transform 0.3s ease;
}

.bcf-card-inner:hover .bcf-card-arrow {
    transform: translateX(5px); /* Arrow nudges right on card hover */
}

/* =========================================
   SLIDER CONTROLS (Progress Bar & Arrows)
========================================= */
.bcf-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    gap: 40px;
}

.bcf-progress-wrap {
    flex-grow: 1;
    height: 3px;
    background-color: var(--stroke-2);
    position: relative;
    border-radius: 2px;
}

.bcf-progress-bar {
    position: absolute;
    top: 0;
    left: 0; 
    height: 100%;
    width: 0%; 
    background-color: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.bcf-nav-arrows {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.bcf-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--stroke-1);
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.bcf-nav-btn:hover:not(.slick-disabled) {
    border-color: var(--black);
    background-color: var(--bg-1);
}

/* Gray out the arrows when they hit the end */
.bcf-nav-btn.slick-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.the-process {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* =========================================
   VIDEO PLAYLIST SLIDER
========================================= */
.bcf-playlist-wrapper {
    display: flex;
    gap: 20px;
    align-items: stretch;
    width: 100%;
    margin: 40px 0;
}

/* --- Main Video Container --- */
.bcf-main-video-slider {
    flex: 1; /* Takes up all remaining space */
    min-width: 0; /* Prevents Flexbox blowout */
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

.bcf-video-slide {
    aspect-ratio: 16 / 9; /* Keeps standard video proportions */
}

.bcf-video-inner, 
.bcf-responsive-iframe {
    width: 100%;
    height: 100%;
}

.bcf-video-inner video,
.bcf-responsive-iframe iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.bcf-video-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Thumbnail Sidebar --- */
.bcf-thumbnail-sidebar {
    width: 280px; /* Fixed width for the thumbnails */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.bcf-thumb-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.bcf-thumb-arrow:hover {
    transform: scale(1.1);
}

.bcf-thumb-arrow.slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.bcf-thumbnail-slider {
    width: 100%;
    margin: 0 -5px; /* Offset for slide margins */
}

/* Slick overrides for vertical mode */
.bcf-thumbnail-slider .slick-list {
    margin: 0;
}

.bcf-thumb-slide {
    margin: 8px 0; /* Vertical gap between thumbs */
    padding: 0;
    cursor: pointer;
    outline: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* Highlight the active thumbnail */
.bcf-thumb-slide.slick-current {
    opacity: 1;
}

.bcf-thumb-inner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.bcf-thumb-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* The Play Overlay on Thumbnails */
.bcf-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px); /* Adds that modern frosted glass look */
}

.bcf-play-overlay svg {
    width: 18px;
    height: 18px;
    margin-left: 3px; /* Optically centers the play triangle */
}

/* Force hide all slides except the first one BEFORE Slick initializes */
.bcf-main-video-slider:not(.slick-initialized) .bcf-video-slide:nth-child(n+2) {
    display: none;
}

/* Fallback background for thumbnails just in case an image takes a second to load */
.bcf-thumb-inner {
    background-color: #242424; 
}

/* --- Responsive --- */
@media screen and (max-width: 900px) {
    .bcf-playlist-wrapper {
        flex-direction: column;
        margin: 0 0 40px;
    }
    .bcf-thumbnail-sidebar {
        width: 100%;
        flex-direction: row; /* Horizontal arrows on mobile */
    }
    .bcf-thumbnail-slider {
        width: calc(100% - 80px); /* Leave room for arrows */
    }
    .bcf-thumb-slide {
        margin: 0 8px; /* Horizontal gaps instead of vertical */
    }
    .bcf-thumb-arrow {
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

    #bcf-thumb-prev.bcf-thumb-arrow,
    #bcf-thumb-next.bcf-thumb-arrow {
        transform: rotate(-90deg);
    }
    
}

/* =========================================
   CONTACT FORM 7 STYLING
========================================= */
.bcf-contact-form {
    width: 100%;
    font-family: var(--font-main);
}

/* Row Layouts */
.bcf-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.bcf-form-row.col-2 > .bcf-form-group {
    flex: 1; /* Makes the two columns exactly 50/50 */
}

/* Form Groups & Labels */
.bcf-form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bcf-form-group p > span{
    margin-top: 15px;
}

.bcf-phone-number p > span,
.bcf-country-select p > span{
    margin-top: 0;
}

.wpcf7-form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}

.bcf-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #242424;
    margin-bottom: 10px;
}

/* Ensure CF7 wrapper spans full width */
.bcf-form-group .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Global Input Styling */
.bcf-form-group input[type="text"],
.bcf-form-group input[type="email"],
.bcf-form-group input[type="tel"],
.bcf-form-group textarea {
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 14px;
    color: #242424;
    outline: none;
    transition: border-color 0.3s ease;

    height: 50px;
    box-sizing: border-box;
}

.bcf-form-group input:focus,
.bcf-form-group textarea:focus {
    border-color: #FCAF17; /* Orange border on focus */
}

.bcf-form-group input::placeholder,
.bcf-form-group textarea::placeholder {
    color: #94A3B8;
}

.bcf-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* =========================================
   CUSTOM PHONE FIELD WRAPPER
========================================= */
.bcf-phone-input-wrap {
    display: flex;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    overflow: hidden; /* Keeps the inner borders clean */
    transition: border-color 0.3s ease;

    height: 50px;
    align-items: center; /* Keeps inner items vertically centered */
    box-sizing: border-box;
}

.bcf-phone-input-wrap:focus-within {
    border-color: #FCAF17;
}

/* Country Code Select */
.bcf-country-select {
    display: flex;
    align-items: center;
    border-right: 1px solid #E2E8F0; /* Separator line */
    background: #FFFFFF;
}

.bcf-country-select select {
    border: none;
    background: transparent;
    padding: 14px 15px 14px 6px;
    font-size: 14px;
    color: #242424;
    cursor: pointer;
    outline: none;
}

/* Phone Number Input overrides */
.bcf-phone-number {
    flex-grow: 1;
}

.bcf-phone-number input {
    border: none !important; /* Removes the border since the wrapper handles it */
    border-radius: 0;
}

/* =========================================
   SUBMIT BUTTON
========================================= */
.submit-row {
    justify-content: center; /* Pushes button to the right */
    margin-top: 10px;
}

.btn-submit {
    background-color: #FCAF17 !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 14px 35px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.bcf-form-row.submit-row > p {
    display: flex;
    flex-direction: column;
}

.btn-submit:hover {
    background-color: #D97706 !important;
}

.bcf-country-select select,
.bcf-phone-number input[type="tel"] {
    height: 100% !important; /* Fill the wrapper */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0;
}

.bcf-phone-number .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    height: 100%;
}

/* =========================================
   RESPONSIVE (MOBILE)
========================================= */
@media screen and (max-width: 767px) {
    .bcf-form-row.col-2 {
        flex-direction: column; /* Stacks Email and Phone on mobile */
        gap: 20px;
    }
}

.custom-unordered-list.program-impact li {
    line-height: 1.2;
}

/* =========================================
   SIGNATURE PROGRAMS CARDS
========================================= */
.bcf-signature-programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    gap: 20px;
    width: 100%;
}

.bcf-sig-card {
    display: flex;
    align-items: stretch;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 5px;
    text-decoration: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.bcf-sig-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #CBD5E1;
}

/* Image on the left */
.bcf-sig-image {
    flex-shrink: 0;
    width: 80px;  /* Square size */
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.bcf-sig-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content on the right */
.bcf-sig-content {
    flex-grow: 1;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.bcf-sig-title {
    margin: 5px 0 4px;
    font-size: 12px;
    font-weight: 600;
    color: #242424;
    line-height: 1.3;
    padding-right: 20px; /* Leave space so text doesn't overlap the button */
}

.bcf-sig-date {
    font-size: 13px;
    color: #94A3B8;
}

/* Orange Arrow Button */
.bcf-sig-btn {
    position: relative;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background-color: #FCAF17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex: 0 0 32px;
}

.bcf-sig-card:hover .bcf-sig-btn {
    background-color: #D97706; /* Darkens slightly on card hover */
}

/* =========================================
   RESPONSIVE (TABLET & MOBILE)
========================================= */
@media screen and (max-width: 991px) {
    .bcf-signature-programs-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media screen and (max-width: 767px) {
    .bcf-signature-programs-grid {
        grid-template-columns: 1fr; /* 1 column stacked on mobile */
    }
}

.bcf-spg-cta.bcf-spg-cta--lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4b740;
    color: black !important;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
}

@media screen and (max-width: 767px) {
    .bcf-spg-cta.bcf-spg-cta--lg {
        width: 100%;
        justify-content: center;
    }
}

/*SINGLE PROGRAM*/

.bcf-single-program {
    font-family: Urbanist;
    color: #0a0f1f;
    background: #ffffff;
}

/* ============== BANNER ============== */
.bcf-spg-banner {
    position: relative;
    background-color: #1a1f2e;
    background-size: cover;
    background-position: center;
    padding: 180px 80px;
    color: #ffffff;
    overflow: hidden;
}
.bcf-spg-banner__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(8, 12, 24, 0.85) 0%, rgba(8, 12, 24, 0.55) 50%, rgba(8, 12, 24, 0.2) 100%);
}
.bcf-spg-banner__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}
.bcf-spg-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff !important;
    margin-bottom: 18px;
    font-weight: 500;
    opacity: .9;
}
.bcf-spg-banner__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #f4b740;
}
.bcf-spg-banner__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 28px;
    max-width: 700px;
    color: #ffffff !important;
}

/* ============== MAIN GRID ============== */
.bcf-spg-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0px;
}
.bcf-spg-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.bcf-spg-main {
    min-width: 0;
}
.bcf-spg-side {
    position: sticky;
    top: 24px;
}

/* ============== UNIFIED SIDEBAR CARD ============== */
.bcf-spg-side-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid #E2E8F0;
    display: none; /*temporary hide. will need to change the date acf type, so that can control this*/
}
.bcf-spg-card-section {
    padding: 18px 0;
    border-bottom: 1px solid #e8edf2;
}
.bcf-spg-card-section:first-child { padding-top: 0; }
.bcf-spg-card-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ============== INTRO PARAGRAPH ============== */
.bcf-spg-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3f4f;
    margin-bottom: 40px;
}
.bcf-spg-intro p { margin: 0 0 14px; }

/* ============== SECTIONS ============== */
.bcf-spg-section {
    margin-bottom: 56px;
}
.bcf-spg-step {
    font-size: 11px;
    letter-spacing: 2px;
    color: #f4b740;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.bcf-spg-h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0f1f;
    margin: 0 0 18px;
    line-height: 1.25;
}
.bcf-spg-prose {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3f4f;
}
.bcf-spg-prose p { margin: 0 0 14px; }
.bcf-spg-prose ul, .bcf-spg-prose ol {
    padding-left: 22px;
    margin: 0 0 14px;
}
.bcf-spg-prose li { margin-bottom: 8px; }
.bcf-spg-prose strong { color: #0a0f1f; }
.bcf-spg-prose a { color: #d9a441; text-decoration: underline; }

/* ============== SIDEBAR — Application Period ============== */
.bcf-spg-card__label {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #6b6b6b;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.bcf-spg-card__date-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.bcf-spg-card__date-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: #ffffff;
    border-radius: 10px;
    flex-shrink: 0;
}
.bcf-spg-card__date-icon img {
    width: 24px;
    height: 24px;
    display: block;
}
.bcf-spg-card__date-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.bcf-spg-card__date {
    font-size: 18px;
    font-weight: 700;
    color: #0a0f1f;
    line-height: 1.2;
}
.bcf-spg-card__sub {
    font-size: 13px;
    color: #8a8a8a;
    line-height: 1.4;
}
.bcf-spg-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
}
.bcf-spg-status.is-open { background: #fff4e0; color: #b07726; }
.bcf-spg-status.is-closed { background: #f0f1f3; color: #6b6b6b; }
.bcf-spg-status__dot {
    width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}

/* ============== SIDEBAR — Apply Card ============== */
.bcf-spg-apply-card {
    background: linear-gradient(135deg, #ffd47a 0%, #f4b740 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.bcf-spg-apply-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #4d2e08;
    margin-bottom: 4px;
}
.bcf-spg-apply-card__sub {
    font-size: 12px;
    color: #6b3f08;
    margin-bottom: 14px;
}
.bcf-spg-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #0a0f1f !important;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform .2s ease;
    width: 100%;
}
.bcf-spg-apply-btn:hover {
    transform: translateY(-1px);
    color: #0a0f1f !important;
}

/* ============== DOWNLOADS ============== */
.bcf-spg-downloads {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bcf-spg-download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    color: #0a0f1f;
    transition: background .2s ease;
}
.bcf-spg-download:hover {
    background: #f0f4f9;
}
.bcf-spg-download__icon {
    font-size: 18px;
    color: #e24b4a;
    flex-shrink: 0;
}
.bcf-spg-download__meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.bcf-spg-download__name {
    font-size: 13px;
    font-weight: 600;
    color: #0a0f1f;
    line-height: 1.3;
}
.bcf-spg-download__sub {
    font-size: 11px;
    color: #8a8a8a;
    margin-top: 2px;
}
.bcf-spg-download__arrow {
    font-size: 14px;
    color: #d9a441;
    flex-shrink: 0;
}

/* ============== HELP ============== */
.bcf-spg-help__title {
    font-size: 13px;
    font-weight: 700;
    color: #0a0f1f;
    margin-bottom: 6px;
}
.bcf-spg-help__text {
    font-size: 13px;
    line-height: 1.5;
    color: #6b6b6b;
}
.bcf-spg-help__text a {
    color: #0a0f1f;
    text-decoration: none;
    font-weight: 600;
}
.bcf-spg-help__text a:hover { text-decoration: underline; }

/* ============== CTA BUTTON ============== */
.bcf-spg-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4b740;
    color: black !important;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
}
.bcf-spg-cta:hover {
    background: #e6a72f;
    transform: translateX(2px);
    color: #ffffff !important;
}
.bcf-spg-cta--lg {
    padding: 14px 28px;
    font-size: 15px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
    .bcf-spg-grid {
        grid-template-columns: 1fr;
    }
    .bcf-spg-side {
        position: static;
    }

    .bcf-spg-section:last-child {
        margin-bottom: 0;
    }

    .ribbon-impact > .section-box{
        background: rgba(226, 232, 240, 0.5);
    }
}
@media (max-width: 600px) {
    .bcf-spg-banner { padding: 100px 24px; }
    .bcf-spg-wrap { padding: 40px 16px 60px; }
    .bcf-spg-h2 { font-size: 22px; }
}

/* Impact Stories Listing Page */

.bcf-stories {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 0px;
    font-family: Urbanist;
    color: #0a0f1f;
}

/* ---- Toolbar ---- */
.bcf-stories__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}
.bcf-stories__toolbar-left {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}
.bcf-stories__search {
    position: relative;
    flex: 0 1 280px;
    min-width: 200px;
    display: flex;
    align-items: center;
}
.bcf-stories__search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #8a8a8a;
    pointer-events: none;
    z-index: 2;
}
.bcf-stories__search-input {
    width: 100%;
    padding: 10px 14px 10px 40px !important;
    border: 1px solid #d8dde4;
    border-radius: 10px;
    background: #ffffff;
    font-size: 13px;
    color: #0a0f1f;
    font-family: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
    box-sizing: border-box;
    line-height: 1.4;
}
.bcf-stories__search-input::placeholder { color: #b0b3bb; }
.bcf-stories__search-input:focus {
    outline: none;
    border-color: #f4b740;
    box-shadow: 0 0 0 3px rgba(244, 183, 64, 0.15);
}
.bcf-stories__cat-select {
    flex: 0 0 200px;
    width: 200px;
    padding: 10px 38px 10px 16px;
    border-radius: 10px;
    border: 1px solid #d8dde4;
    background: #ffffff
        url("https://df123.co/projects/big-caring-foundation/wp-content/uploads/2026/05/Vector-1-1.png")
        no-repeat right 14px center;
    font-size: 13px;
    color: #0a0f1f;
    appearance: none;
    font-family: inherit;
    cursor: pointer;
    box-sizing: border-box;
}
.bcf-stories__cat-select:focus {
    outline: none;
    border-color: #f4b740;
    box-shadow: 0 0 0 3px rgba(244, 183, 64, 0.15);
}
.bcf-stories__count {
    font-size: 13px;
    color: #8a8a8a;
    white-space: nowrap;
}

/* ---- Grid ---- */
.bcf-stories__grid {
    display: grid;
    grid-template-columns: repeat(var(--bcf-cols, 3), 1fr);
    gap: 20px;
    min-height: 200px;
}
.bcf-stories__loading,
.bcf-stories__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #8a8a8a;
    font-size: 14px;
}

/* ---- Card ---- */
.bcf-story-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #eef1f5;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bcf-story-card:hover {
    transform: translateY(-3px);
    border-color: #f4b740;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .08);
    color: inherit;
}
.bcf-story-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: white;
}
.bcf-story-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
    border: none;
    border-radius: 14px !important;
    box-shadow: none;
    max-width: 100%;
    max-height: 250px;
    padding: 15px;
    background: white;
}
.bcf-story-card:hover .bcf-story-card__media img {
    transform: scale(1.04);
}
.bcf-story-card__badge {
    position: absolute;
    top: 32px;
    left: 32px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #0a0f1f;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.bcf-story-card__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    position: relative;
}
.bcf-story-card__cat {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #f4b740;
    font-weight: 700;
    text-transform: uppercase;
}
.bcf-story-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #0a0f1f;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bcf-story-card__desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 28px;
}
.bcf-story-card__arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: #f4b740;
    display: inline-flex;
}
.bcf-story-card__arrow svg { width: 18px; height: 18px; }

/* ---- Pagination ---- */
.bcf-stories__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
}
.bcf-stories__pagination:empty { display: none; }
.bcf-spg-pg-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #e8edf2;
    background: #ffffff;
    color: #3a3f4f;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.bcf-spg-pg-btn:hover:not(:disabled):not(.is-active):not(.is-ellipsis) {
    background: #fff8eb;
    border-color: #f4b740;
}
.bcf-spg-pg-btn.is-active {
    background: #f4b740;
    color: #ffffff;
    border-color: #f4b740;
    cursor: default;
}
.bcf-spg-pg-btn.is-ellipsis {
    border: 0;
    background: transparent;
    cursor: default;
}
.bcf-spg-pg-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.bcf-spg-pg-btn svg {
    width: 14px;
    height: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .bcf-stories__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .bcf-stories__grid { grid-template-columns: 1fr; }
    .bcf-stories__toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .bcf-stories__toolbar-left {
        width: 100%;
    }
    .bcf-stories__search { flex: 1 1 auto; }
    .bcf-stories__count { text-align: center; }
}


/* Single Impact Story Style */

.bcf-isd {
    font-family: Urbanist;
    color: #0a0f1f;
    background: #ffffff;
}

.bcf-isd__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px 80px;
}
.bcf-isd__grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: start;
}

/* ============== SIDEBAR ============== */
.bcf-isd__side {
    position: sticky;
    top: 24px;
}
.bcf-isd__side-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bcf-isd__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid #d8dde4;
    border-radius: 999px;
    background: #fff;
    color: #0a0f1f !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background .15s ease, border-color .15s ease;
    align-self: flex-start;
}
.bcf-isd__back:hover {
    background: #f8fafc;
    border-color: #f4b740;
}
.bcf-isd__back svg {
    width: 14px; height: 14px;
}

.bcf-isd__author-label,
.bcf-isd__share-label {
    font-size: 13px;
    font-weight: 600;
    color: #0a0f1f;
    margin-bottom: 12px;
}

.bcf-isd__author-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bcf-isd__author-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    background: #eef1f5;
    flex-shrink: 0;
}
.bcf-isd__author-avatar--placeholder {
    background: linear-gradient(135deg, #e6e6e6, #cfcfcf);
}
.bcf-isd__author-name {
    font-size: 13px;
    font-weight: 700;
    color: #0a0f1f;
    line-height: 1.3;
}
.bcf-isd__author-date {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.bcf-isd__share-row {
    display: flex;
    gap: 10px;
}
.bcf-isd__share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d8dde4;
    background: #fff;
    color: #0a0f1f !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.bcf-isd__share-btn:hover {
    background: #f4b740;
    border-color: #f4b740;
    color: #ffffff !important;
}
.bcf-isd__share-btn svg {
    width: 16px;
    height: 16px;
}

/* ============== MAIN COLUMN ============== */
.bcf-isd__main {
    min-width: 0;
}

.bcf-isd__breadcrumb {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 24px;
}
.bcf-isd__breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color .15s ease;
}
.bcf-isd__breadcrumb a:hover {
    color: #f4b740;
}
.bcf-isd__breadcrumb-sep {
    margin: 0 8px;
    color: #b0b3bb;
}
.bcf-isd__breadcrumb-current {
    color: #0a0f1f;
    font-weight: 500;
}

.bcf-isd__banner {
    margin-bottom: 26px;
    overflow: hidden;
    background: #f0f1f3;
    aspect-ratio: 16 / 9;
}
.bcf-isd__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bcf-isd__cat-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #FCAF17;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #0a0f1f;
    margin-bottom: 18px;
}

.bcf-isd__title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: #0a0f1f;
    margin: 0 0 24px;
    line-height: 1.25;
}

/* ============== POST CONTENT (WP editor body) ============== */
.bcf-isd__content {
    font-size: 15px;
    line-height: 1.8;
    color: #3a3f4f;
}
.bcf-isd__content p {
    margin: 0 0 18px;
}
.bcf-isd__content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0f1f;
    margin: 10px 0px;
    line-height: 1.3;
}
.bcf-isd__content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0f1f;
    margin: 28px 0 12px;
    line-height: 1.3;
}
.bcf-isd__content ul,
.bcf-isd__content ol {
    margin: 0 0 18px;
    padding-left: 24px;
}
.bcf-isd__content li {
    margin-bottom: 8px;
}
.bcf-isd__content strong {
    color: #0a0f1f;
}
.bcf-isd__content a {
    color: #d9a441;
    text-decoration: underline;
}
.bcf-isd__content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 18px 0;
}
.bcf-isd__content blockquote {
    margin: 24px 0;
    padding: 16px 22px;
    border-left: 3px solid #f4b740;
    background: #f8fafc;
    color: #3a3f4f;
    font-style: italic;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 426px) {
    .bcf-isd__main {
        order: 1;
    }

    .bcf-isd__side {
        order: 2;
    }
}

@media (max-width: 960px) {
    .bcf-isd__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bcf-isd__side {
        position: static;
    }
    .bcf-isd__side-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .bcf-isd__wrap { padding: 30px 16px 60px; }
    .bcf-isd__title { font-size: 24px; }
    .bcf-isd__side-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*. FAQs Style */

.bcf-faq {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 30px;
    font-family: Urbanist;
    color: #0a0f1f;
}
.bcf-faq__intro {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6273;
    margin: 0 0 24px;
}
.bcf-faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ---- Item ---- */
.bcf-faq__item {
    background: #f8fafc;
    border: 1px solid #f8fafc;
    border-radius: 14px;
    overflow: hidden;
    transition: background .2s ease, border-color .2s ease;
}
.bcf-faq__item[open] {
    background: #ffffff;
    border-color: #f4b740;
}

/* Remove default <summary> marker */
.bcf-faq__summary::-webkit-details-marker { display: none; }
.bcf-faq__summary::marker { content: ''; display: none; }

.bcf-faq__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.bcf-faq__q {
    font-size: 15px;
    font-weight: 700;
    color: #0a0f1f;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

/* ---- Icon ---- */
.bcf-faq__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    color: #8a8a8a;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: background .2s ease, color .2s ease;
}
.bcf-faq__icon-plus,
.bcf-faq__icon-minus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.bcf-faq__icon-minus { display: none; }

.bcf-faq__item[open] .bcf-faq__icon {
    background: #f4b740;
    color: #ffffff;
    font-size: 20px;
}
.bcf-faq__item[open] .bcf-faq__icon-plus { display: none; }
.bcf-faq__item[open] .bcf-faq__icon-minus { display: inline-flex; }

/* ---- Answer body ---- */
.bcf-faq__answer {
    padding: 0 22px 22px;
    font-size: 13.5px;
    line-height: 1.7;
    color: #3a3f4f;
}
.bcf-faq__answer p {
    margin: 0 0 12px;
}
.bcf-faq__answer p:last-child { margin-bottom: 0; }
.bcf-faq__answer ul,
.bcf-faq__answer ol {
    padding-left: 22px;
    margin: 0 0 12px;
}
.bcf-faq__answer li {
    margin-bottom: 6px;
}
.bcf-faq__answer strong { color: #0a0f1f; }
.bcf-faq__answer a {
    color: #d9a441;
    text-decoration: underline;
}

/* ---- Bottom CTA ---- */
.bcf-faq__cta {
    margin-top: 30px;
    background: #f4b740;
    border-radius: 14px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.bcf-faq__cta-text {
    flex: 1;
    min-width: 0;
}
.bcf-faq__cta-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    color: #4d2e08;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.bcf-faq__cta-heading {
    font-size: 18px;
    font-weight: 700;
    color: #0a0f1f;
    line-height: 1.3;
}
.bcf-faq__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0a0f1f;
    color: #ffffff !important;
    padding: 11px 22px;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s ease, transform .15s ease;
    flex-shrink: 0;
    white-space: nowrap;
}
.bcf-faq__cta-btn:hover {
    background: #1d2440;
    color: #ffffff !important;
    transform: translateX(2px);
}
.bcf-faq__cta-btn svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .bcf-faq {
        padding: 0px;
    }
}

@media (max-width: 480px) {
    .bcf-faq__cta {
        flex-direction: column;
        align-items: start;
    }
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .bcf-faq__summary { padding: 16px 18px; }
    .bcf-faq__answer { padding: 0 18px 18px; }
    .bcf-faq__q { font-size: 14px; }
}

/* leadership team style */

.bcf-leadership {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 0px;
    font-family: Urbanist;
    color: #0a0f1f;
}
.bcf-leadership__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px; /* spacing between cards */
}

.bcf-lt-card {
    /* Calculate width based on --bcf-lt-cols, accounting for gaps */
    flex: 0 0 calc((100% - (var(--bcf-lt-cols) - 1) * 24px) / var(--bcf-lt-cols));
    max-width: calc((100% - (var(--bcf-lt-cols) - 1) * 24px) / var(--bcf-lt-cols));
    box-sizing: border-box;
}

/* Responsive: 2 columns on tablet */
@media (max-width: 900px) {
    .bcf-lt-card {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 600px) {
    .bcf-lt-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.bcf-lt-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #f0f2f6 0%, #e3e7ed 100%);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.bcf-lt-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bcf-lt-card__placeholder {
    width: 70%;
    height: auto;
    display: block;
}

.bcf-lt-card__body {
    margin-top: 10px;
    padding: 0 4px;
}
.bcf-lt-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #0a0f1f;
    margin: 0 0 4px;
    line-height: 1.3;
}
.bcf-lt-card__position {
    font-size: 12px;
    color: #f4b740;
    font-weight: 500;
    line-height: 1.4;
}

/* ---- Responsive ---- */
@media (max-width: 1000px) {
    .bcf-leadership__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 720px) {
    .bcf-leadership__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 16px;
    }
}
@media (max-width: 440px) {
    .bcf-leadership__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ACF CARDS SLIDER
========================================= */
.bcf-cards-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 50px; /* Leaves room for the arrows on the left/right */
    margin: 40px 0;
    box-sizing: border-box;
}

/* --- The Slider Track --- */
.bcf-cards-slider-track {
    margin: 0 -10px; /* Offsets the padding on the slides */
}

/* --- Individual Card Design --- */
.bcf-cs-slide {
    padding: 0 10px; /* Gap between cards */
    outline: none;
}

.bcf-cs-card {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4; /* Keeps them tall and consistent */
    border-radius: 20px;
    overflow: hidden;
    background-color: #242424;
    max-height: 468px;
}

.bcf-cs-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: 1;
}

/* The Orange Gradient Overlay */
.bcf-cs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%; /* Gradient only covers the bottom half */
    background: linear-gradient(to top, rgba(217, 119, 6, 0.95) 0%, rgba(217, 119, 6, 0) 100%);
    z-index: 2;
}

/* Card Text Content */
.bcf-cs-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 3;
    color: #FFFFFF;
}

.bcf-cs-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #FFFFFF;
    line-height: 1.3;
}

.bcf-cs-desc {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Arrow Navigation --- */
.bcf-cs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: #FCAF17;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.bcf-cs-arrow:hover {
    background-color: #D97706;
}

.bcf-cs-arrow.prev { left: 0; }
.bcf-cs-arrow.next { right: 0; }

.bcf-cs-arrow svg {
    width: 20px;
    height: 20px;
}

/* Disabled Arrow State */
.bcf-cs-arrow.slick-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Mobile Adjustments */
@media screen and (max-width: 767px) {
    .bcf-cards-slider-wrapper { padding: 0 40px; }
}

.bcf-programs {
            width: 100%;
            max-width: 1280px;
            margin: 0 ;
            padding: 40px 0 60px;
            color: #0a0f1f;
        }
        .bcf-programs__grid {
            display: grid;
            grid-template-columns: repeat(var(--bcf-prg-cols, 2), 1fr);
            gap: 22px;
        }

        /* ---- Card ---- */
        .bcf-prg-card {
            display: flex;
            gap: 22px;
            padding: 22px 24px;
            background: #f8fafc;
            border: 1px solid #f8fafc;
            border-radius: 16px;
            text-decoration: none;
            color: inherit;
            transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
            align-items: flex-start;
        }
        .bcf-prg-card:hover {
            background: #ffffff;
            border-color: #f4b740;
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
            color: inherit;
        }

        .bcf-prg-card__logo {
            flex: 0 0 150px;
            width: 150px;
            height: 150px;
            border-radius: 14px;
            background: #ffffff;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #eef1f5;
        }
        .bcf-prg-card__logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 0;
            display: block;
        }
        .bcf-prg-card__logo-placeholder {
            width: 60%;
            height: 60%;
            border-radius: 8px;
            background: linear-gradient(135deg, #eef1f5, #d8dde4);
        }

        .bcf-prg-card__body {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }
        .bcf-prg-card__cat {
            font-size: 11px;
            letter-spacing: 2px;
            color: #6b7280;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .bcf-prg-card__title {
            font-size: 18px;
            font-weight: 700;
            color: #0a0f1f;
            margin: 0 0 8px;
            line-height: 1.3;
        }
        .bcf-prg-card__desc {
            font-size: 13px;
            line-height: 1.55;
            color: #5a6273;
            margin: 0 0 12px;
        }
        .bcf-prg-card__cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 700;
            color: #f4b740;
            margin-top: auto;
        }
        .bcf-prg-card__cta svg {
            width: 14px;
            height: 14px;
            transition: transform .2s ease;
        }
        .bcf-prg-card:hover .bcf-prg-card__cta svg {
            transform: translateX(3px);
        }

        /* ---- Responsive ---- */
        @media (max-width: 720px) {
            .bcf-programs__grid {
                grid-template-columns: 1fr;
            }
            .bcf-prg-card {
                gap: 16px;
                padding: 18px 20px;
            }
            .bcf-prg-card__logo {
                flex: 0 0 80px;
                width: 80px;
                height: 80px;
            }
            .bcf-prg-card__title { font-size: 16px; }
        }
        @media (max-width: 420px) {
            .bcf-prg-card {
                flex-direction: column;
            }
            .bcf-prg-card__logo {
                flex: 0 0 100px;
                width: 100px;
                height: 100px;
            }
        }

.statistic-update-content-div > div {
    max-width: 1280px !important;
}

.bcf-cs-desc p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Optional: Style the links inside the slider so they stand out */
.bcf-cs-desc a {
    color: #FCAF17;
    text-decoration: underline;
}

@media screen and (max-width:767px) {
    .header-center.site-navigation {
        order: 1;
    }
}


.menu-arrow {
    display: inline-block;
    position: relative;
    width: 10px;
    height: 6px;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.25s ease;
}

.menu-arrow__default,
.menu-arrow__hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease;
}

.menu-arrow__hover {
    opacity: 0;
}

.menu-item-has-children:hover .menu-arrow {
    transform: rotate(180deg);
}

.menu-item-has-children:hover .menu-arrow__default {
    opacity: 0;
}

.menu-item-has-children:hover .menu-arrow__hover {
    opacity: 1;
}

/*remove the sub-header*/

.elementor-list-item-link-full_width.elementor-widget.elementor-widget-icon-list {
    display: none;
}

.elementor-list-item-link-full_width.elementor-widget.elementor-widget-icon-list.show {
    display: flex !important;
}

.bcf-hiw {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 0px;
    font-family: Urbanist;
    color: #0a0f1f;
}
.bcf-hiw__title {
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin: 0 0 40px;
    color: #0a0f1f;
}
.bcf-hiw__grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
}

/* No images at all → accordion takes full width, centered */
.bcf-hiw--no-image .bcf-hiw__grid {
    grid-template-columns: 1fr;
}

/* COLLABORATION layout: accordion on LEFT, image on RIGHT.
    Achieved by reversing the column order: image cell goes to col 2,
    accordion cell goes to col 1. */
.bcf-hiw--type-collaboration .bcf-hiw__grid {
    grid-template-columns: 1fr 360px;
}
.bcf-hiw--type-collaboration .bcf-hiw__image-stage {
    grid-column: 2;
    grid-row: 1;
}
.bcf-hiw--type-collaboration .bcf-hiw__list {
    grid-column: 1;
    grid-row: 1;
}
/* The no-image rule overrides whatever the type sets, so the
    single-column fallback still works for collaboration too. */
.bcf-hiw--no-image.bcf-hiw--type-collaboration .bcf-hiw__grid {
    grid-template-columns: 1fr;
}

.bcf-hiw__image-stage {
    position: sticky;
    top: 24px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f1f3;
}
.bcf-hiw__image {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity .35s ease;
    position: absolute;
    top: 0;
    left: 0;
}
.bcf-hiw__image.is-active {
    opacity: 1;
    position: relative; /* the active one dictates the container's height */
}

.bcf-hiw__list { display: flex; flex-direction: column; gap: 12px; }

.bcf-hiw__item {
    background: #f8fafc;
    border: 1px solid #f8fafc;
    border-radius: 14px;
    overflow: hidden;
    transition: background .2s ease, border-color .2s ease;
}
.bcf-hiw__item[open] {
    background: #ffffff;
    border-color: #f4b740;
    box-shadow: 0 4px 14px rgba(244, 183, 64, 0.08);
}
.bcf-hiw__summary::-webkit-details-marker { display: none; }
.bcf-hiw__summary::marker { content: ''; display: none; }
.bcf-hiw__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.bcf-hiw__q {
    font-size: 15px;
    font-weight: 700;
    color: #0a0f1f;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}
.bcf-hiw__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: black;
    color: white;
    font-size: 16px;
    line-height: 1;
    transition: background .2s ease, color .2s ease;
}
.bcf-hiw__icon-minus { display: none; }
.bcf-hiw__item[open] .bcf-hiw__icon {
    background: #f4b740;
    color: #ffffff;
    font-size: 18px;
}
.bcf-hiw__item[open] .bcf-hiw__icon-plus { display: none; }
.bcf-hiw__item[open] .bcf-hiw__icon-minus { display: inline-flex; }

.bcf-hiw__answer {
    padding: 0 22px 22px;
    font-size: 13.5px;
    line-height: 1.7;
    color: #3a3f4f;
}
.bcf-hiw__answer p { margin: 0 0 10px; }
.bcf-hiw__answer p:last-child { margin-bottom: 0; }
.bcf-hiw__answer ul,
.bcf-hiw__answer ol { padding-left: 22px; margin: 0 0 10px; }
.bcf-hiw__answer li { margin-bottom: 6px; }
.bcf-hiw__answer strong { color: #0a0f1f; }
.bcf-hiw__answer a { color: #d9a441; text-decoration: underline; }

@media (max-width: 800px) {
    .bcf-hiw .bcf-hiw__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bcf-hiw .bcf-hiw__image-stage {
        position: relative;
        max-width: 360px;
        margin: 20px auto;
        width: 100%;
    }

    .bcf-hiw--type-collaboration .bcf-hiw__grid {
        grid-template-columns: 1fr;
    }
 
    .bcf-hiw--type-collaboration .bcf-hiw__image-stage,
    .bcf-hiw--type-collaboration .bcf-hiw__list {
        grid-column: auto;
        grid-row: auto;
    }
 
    .bcf-hiw--type-collaboration .bcf-hiw__image-stage { order: 1; }
    .bcf-hiw--type-collaboration .bcf-hiw__list       { order: 2; }
}

@media (max-width: 600px) {
    .bcf-hiw { padding: 0 }
    .bcf-hiw__summary { padding: 16px 18px; }
    .bcf-hiw__answer { padding: 0 18px 18px; }
    .bcf-hiw__q { font-size: 14px; }
}

/* =========================================
   HOMEPAGE HERO SLIDER
========================================= */
.bcf-hero-slider-wrapper {
    position: relative;
    width: 100%;
    /* Standard hero height, adjust as needed */
    height: 80vh; 
    min-height: 600px;
    background-color: #1a202c;
    overflow: hidden;
}

.bcf-home-hero-slider,
.bcf-home-hero-slider .slick-list,
.bcf-home-hero-slider .slick-track,
.bcf-hero-slide {
    height: 100%;
}

.bcf-hero-slide {
    position: relative;
    outline: none;
}

/* Background Images */
.bcf-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Gradient Overlay (Darkens left side for text readability) */
.bcf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(16, 24, 40, 0.8) 0%, rgba(16, 24, 40, 0.2) 70%, rgba(16, 24, 40, 0) 100%);
    z-index: 2;
}

/* Content Layout */
.bcf-hero-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    z-index: 3;
}

.bcf-hero-content {
    max-width: 650px;
    color: #FFFFFF;
}

/* Typography */
.bcf-hero-subtitle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FCAF17;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bcf-hero-subtitle .bcf-dot {
    width: 8px;
    height: 8px;
    background-color: #FCAF17;
    border-radius: 50%;
}

.bcf-hero-title {
    line-height: 1.1;
    margin: 0 0 25px 0;
    color: #FFFFFF;
}

.bcf-hero-desc {
    font-size: 24px;
    line-height: 1.6;
    color: #E2E8F0;
    margin-bottom: 0;
}

/* --- Custom Slick Dots (Flat Lines) --- */
.bcf-hero-dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.bcf-hero-dots-container .slick-dots {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: center; /* Keeps them perfectly aligned when resizing */
}

.bcf-hero-dot-btn {
    width: 35px; /* Standard inactive length */
    height: 3px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    /* This single line handles the smooth animation for BOTH going active and returning to inactive */
    transition: width 0.4s ease-in-out, background-color 0.4s ease; 
}

.slick-active .bcf-hero-dot-btn {
    background-color: #FCAF17;
    width: 70px; /* Double the length when active! */
}

/* Mobile Adjustments */
@media screen and (max-width: 767px) {
    .bcf-hero-bg.desktop-bg { display: none; }
    .bcf-hero-bg.mobile-bg { display: block !important; }
    
    .bcf-hero-overlay {
        background: linear-gradient(to top, rgba(16, 24, 40, 0.9) 0%, rgba(16, 24, 40, 0.3) 100%);
    }

    .bcf-hero-container { padding: 0 20px; }
    .bcf-hero-title { font-size: 40px; }
    .bcf-hero-desc { font-size: 18px; }
    .bcf-hero-dots-container { bottom: 20px; }

    .bcf-hero-content {
        max-width: 650px;
        color: #FFFFFF;
        position: absolute;
        top: 65%;
        transform: translateY(-50%);
        padding: 0 40px 0 20px;
    }

    .homepage-drive-impact-div {
        display: block !important;
    }
}

.div-logo-grid-mobile > *:last-child:nth-child(odd) {
    grid-column: 1 / -1 !important; 
    justify-self: center !important;
    width: 100% !important;
    max-width: calc(50% - 10px) !important;
    display: flex !important;       
    justify-content: center !important; 
    align-items: center !important; 
}

@media screen and (max-width: 767px) {
    .elementor-element.elementor-element-345f07c.e-con.e-atomic-element.e-div-block-base.e-345f07c-1de85ba.contact-tel {
        width: 100% !important;
    }

    .header-right.site-cta {
        margin-right: -40px;
    }

    .header-center.site-navigation {
        margin-right: -10px;
    }
}

#section-education,
#section-community,
#section-environment {
    scroll-margin-top: 60px;
}