/* Programs Section Styling */
.programs {
    padding: 5rem 0;
    background-color: #f9fafc;
}

.programs .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.programs .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.programs .section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Program Cards Container */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Individual Program Cards */
.program-card {
    background: white;
    border-radius: 16px; /* Increased from 10px */
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eaeaea;
    overflow: hidden; /* Ensures child elements respect border radius */
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Featured Program Card */
.program-card.featured {
    border: 2px solid #1E3A8A;
    transform: scale(1.02);
    border-radius: 18px; /* Slightly more rounded for featured card */
}

.program-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Program Badge */
.program-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #1E3A8A;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 24px; /* Pill-shaped badge */
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.2);
}

/* Card Icon */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1E3A8A;
    background: rgba(52, 152, 219, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Circular icon background */
}

.card-icon.silver {
    color: #95a5a6;
    background: rgba(149, 165, 166, 0.1);
}

.card-icon.gold {
    color: #f1c40f;
    background: rgba(241, 196, 15, 0.1);
}

.card-icon.platinum {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* Program Title */
.program-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.program-subtitle {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Pricing */
.program-price {
    margin: 1.5rem 0;
    background: rgba(241, 243, 245, 0.5);
    padding: 1rem;
    border-radius: 12px;
}

.program-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.program-duration {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Features List */
.program-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.program-features li {
    padding: 0.7rem 0;
    color: #34495e;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f3f5;
}

.program-features li:last-child {
    border-bottom: none;
}

.program-features li i {
    color: #2ecc71;
    margin-right: 0.5rem;
    background: rgba(46, 204, 113, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
    font-size: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Action Buttons */
.program-actions {
    margin-top: 2rem;
}

.program-actions .btn {
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

/* Program Notice */
.program-notice {
    text-align: center;
    margin-top: 3rem;
    padding: 1.2rem;
    background: #f1f5f9;
    border-radius: 12px;
    color: #34495e;
    border: 1px dashed #dbe4e8;
}

.program-notice i {
    color: #1E3A8A;
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .pricing-tiers {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    .program-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .programs .section-header h2 {
        font-size: 2rem;
    }
    
    .program-card {
        padding: 1.5rem;
        border-radius: 14px;
    }
    
    .program-amount {
        font-size: 2rem;
    }
    
    .program-badge {
        right: 15px;
        padding: 0.4rem 1rem;
    }
}