/* Hero Section */
.program-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    position: relative;
}

.program-hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.program-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.breadcrumb {
    padding: 0.75rem 1rem;
    border-radius: 50px;
}


.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Main Content Area */
.main-content {
    padding: 4rem 0;
}

.program-content {
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .program-content {
        padding-right: 0;
    }
}

.program-icon {
    margin-bottom: 1.5rem;
}

.program-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(43, 140, 68, 0.1);
    border-radius: 50px;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Sidebar */
.program-sidebar {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h4 {
    margin-bottom: 1.5rem;
}


.program-donate-btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.program-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-links li {
    margin-bottom: 0.75rem;
}

.program-links li:last-child {
    margin-bottom: 0;
}

.program-links i {
    margin-right: 0.75rem;
}


/* Gallery Section */
.gallery-item {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item-caption {
    padding: 1rem;
    background-color: white;
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(43, 140, 68, 0.1);
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-author h5 {
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .program-hero {
        padding: 3rem 0;
        text-align: center;
    }

    .program-hero h1 {
        font-size: 2rem;
    }

    .main-content {
        padding: 2rem 0;
    }

    .impact-stat {
        margin-bottom: 2rem;
    }

}