/* Programs Section */
.programs-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    --radius: 20px;
    --radius-big: 90px;

    .program-item:nth-child(1) .program-card {
            border-radius: var(--radius) var(--radius-big) var(--radius) var(--radius-big);
    }
    .program-item:nth-child(2) .program-card {
            border-radius: var(--radius-big) var(--radius) var(--radius-big) var(--radius);
    }

    .program-item:nth-child(3) .program-card {
            border-radius: var(--radius-big) var(--radius) var(--radius-big) var(--radius);
    }
    .program-item:nth-child(4) .program-card {
            border-radius: var(--radius) var(--radius-big) var(--radius) var(--radius-big);
    }


}

.program-card {
    padding: 40px 45px;
    border-radius: 30px;
    color: white;
    min-height: 380px;
    /*max-width: 800px;*/
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.program-card:hover::before {
    top: -60%;
    right: -60%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.program-card .program-title {


    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.program-card p {
    font-size: 1.25rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.program-blue {
    background: linear-gradient(135deg, var(--light-blue), #36a8b5);
}

.program-yellow {
    background: linear-gradient(135deg, var(--yellow), #e5a510);
}

.program-green {
    background: linear-gradient(135deg, var(--green), #8fb015);
}

.program-pink {
    background: linear-gradient(135deg, var(--pink), #d67a87);
}
