/* === PROGRAMS OFFERED SECTION === */
.programs-offered-section {
    background: #f8f9fa;
}

.program-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ffc107;
    color: #000;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.program-card-disabled {
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}



.program-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.program-meta {
    margin-bottom: 0.8rem;
}

.program-duration {
    color: #1E5BA8;
    font-size: 16px;
    font-weight: 600;
}

.program-learning-mode {
    margin-bottom: 1rem;
}

.learning-badge {
    display: inline-block;
    color: #1E5BA8;
    font-size: 16px;
    font-weight: 500;
}

.program-fee {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.program-fee strong {
    color: #000000;
    font-size: 0.95rem;
}

.program-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.read-more-link {
    color: #1E5BA8;
    text-decoration: none;
    font-weight: 600;
}

.read-more-link:hover {
    text-decoration: underline;
}

.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: #f0f0f0;
    color: #1E5BA8;
    padding: 0.2rem 0.4rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag-more {
    color: #1E5BA8;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: auto;
    flex-direction: column;
}

.btn-know-more,
.btn-download-brochure {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    line-height: 1.2;
}

.btn-know-more {
    background: white;
    color: #1E5BA8 !important;
    border: 2px solid #1E5BA8;
}

.btn-know-more:hover {
    background: #1E5BA8;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 91, 168, 0.3);
}

.btn-download-brochure {
    background: #23394c;
    color: white !important;
    border: 2px solid #23394c;
}

.btn-download-brochure:hover {
    background: #164a8a;
    border-color: #164a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 91, 168, 0.4);
}

/* Mobile button adjustments */
@media (max-width: 576px) {
    .program-actions {
        flex-direction: column;
    }

    .btn-know-more,
    .btn-download-brochure {
        width: 100%;
        min-width: 100%;
    }
}

/* Owl Carousel Custom Styling */
.programs-carousel .owl-stage {
    display: flex;
}

.programs-carousel .owl-item {
    display: flex;
    height: auto;
}

.programs-carousel .owl-item .program-card {
    width: 100%;
    height: 100%;
}

.programs-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white !important;
    border: 2px solid #1E5BA8 !important;
    color: #1E5BA8 !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.programs-carousel .owl-nav button:hover {
    background: #1E5BA8 !important;
    color: white !important;
}

.programs-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.programs-carousel .owl-nav button.owl-next {
    right: -25px;
}

.programs-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.programs-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.programs-carousel .owl-dot.active {
    background: #1E5BA8 !important;
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 991px) {
    .programs-carousel .owl-nav button {
        display: none !important;
    }
}