/* ========================================
   SERVICES SECTION - PROGRAM CARDS
   ======================================== */

/* Services Section - No gradient, clean white background */
.services-section {
    background-color: #fff !important;
    background-image: none !important;
}

/* Program Card */
.single-program-card {
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
    padding: 35px 30px;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.single-program-card:hover {
    -webkit-box-shadow: 0px 15px 80px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 15px 80px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

/* Program Header */
.program-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f9f8f6;
}

.program-icon {
    width: 60px;
    height: 60px;
    background-color: #6e2854;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-right: 20px;
    flex-shrink: 0;
}

.program-title {
    font-size: 20px;
    font-weight: 700;
    color: #103452;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 767px) {
    .program-title {
        font-size: 18px;
    }
}

/* Program Content */
.program-content {
    flex-grow: 1;
    margin-bottom: 25px;
}

.program-desc {
    font-size: 16px;
    color: #2a4d6e;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.program-features li {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 15px;
    color: #103452;
    line-height: 1.5;
}

.program-features li i {
    color: #7b8339;
    font-size: 18px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Program Footer */
.program-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f9f8f6;
}

.program-footer .main-btn {
    width: 100%;
    justify-content: center;
}

/* Services Intro Text */
.services-intro-text p {
    font-size: 17px;
    line-height: 1.75;
    color: #2a4d6e;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .single-program-card {
        padding: 30px 25px;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-right: 15px;
    }
    
    .program-desc,
    .program-features li {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .single-program-card {
        padding: 25px 20px;
    }
    
    .program-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .program-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .program-title {
        font-size: 17px;
    }
}
