﻿
    :root {
        --primary-color: #2563eb;
        --text-main: #1e293b;
        --text-muted: #64748b;
        --bg-card: #ffffff;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .programs-section {
        padding: 60px 20px;
        background-color: #f8fafc;
        font-family: 'Poppins', 'Arial', sans-serif;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .programs-section-title {
        font-size: 2.5rem;
        color: var(--text-main);
        font-weight: 700;
        margin-bottom: 10px;
    }

    .title-underline {
        width: 80px;
        height: 4px;
        background: var(--primary-color);
        margin: 0 auto 20px;
        border-radius: 2px;
    }

    .programs-section-description {
        max-width: 700px;
        margin: 0 auto;
        color: var(--text-muted);
        font-size: 1.1rem;
    }

    .programs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .program-card {
        background: var(--bg-card);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: var(--transition);
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
    }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

    .program-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
        margin-bottom: 20px;
    }
    /* Gradient Classes */
    .blue-grad {
        background: linear-gradient(135deg, #0ea5e9, #2563eb);
    }

    .pink-grad {
        background: linear-gradient(135deg, #ec4899, #db2777);
    }

    .purple-grad {
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    }

    .program-name {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 12px;
    }

    .program-description {
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .program-link {
        text-decoration: none;
        color: var(--primary-color);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition);
    }

        .program-link:hover {
            gap: 12px;
            color: #1d4ed8;
        }
