/* Our Programs Section */
#our-programs {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.programs-subsection {
    margin-top: 40px;
}

.programs-subsection h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.program-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.program-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    flex: 0 0 45%; /* Adjust the percentage to control the width of the cards */
    box-sizing: border-box;
    transition: transform 0.3s ease;
    text-align: left;
}

.program-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.program-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 16px;
    color: #666;
}

.program-card blockquote {
    font-style: italic;
    color: #555;
    margin-top: 10px;
    border-left: 5px solid #ccc;
    padding-left: 15px;
    font-size: 16px;
}

.program-card:hover {
    transform: translateY(-5px);
}

/*.learn-more-btn {*/
/*    text-decoration: none;*/
/*    color: white;*/
/*    background-color: #3498db;*/
/*    padding: 20px 20px;*/
/*    border-radius: 5px;*/
/*    transition: background-color 0.3s;*/
/*}*/

/*.learn-more-btn:hover {*/
/*    background-color: #1b6698;*/
/*}*/

@media (max-width: 992px) {
    .program-card {
        flex: 0 0 45%; /* Adjust the percentage for smaller screens */
    }
}

@media (max-width: 768px) {
    .program-card {
        flex: 0 0 100%;
    }
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .programs-subsection h3 {
        font-size: 20px;
    }

    .program-card h4 {
        font-size: 17px;
    }

    .program-card p {
        font-size: 14px;
    }

    .program-card blockquote {
        font-size: 14px;
    }
}

/* Image Carousel Styles */
.image-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.image-carousel img.active {
    opacity: 1;
    position: relative;
}
