.programs-hero {
    padding-top: 100px !important;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.program-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border-top: 5px solid #2a5298;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.program-badge {
    background: rgba(42, 82, 152, 0.1);
    color: #2a5298;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
}

.program-card h2 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 22px;
}

.program-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sub-courses-list {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.sub-courses-list strong {
    display: block;
    margin-bottom: 8px;
    color: #444;
}

.sub-courses-list ul {
    margin: 0;
    padding-left: 20px;
}

.sub-courses-list li {
    margin-bottom: 5px;
    color: #555;
}

.sub-courses-list li a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 500;
}

.sub-courses-list li a:hover {
    text-decoration: underline;
}

.view-btn {
    display: inline-block;
    background: #2a5298;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    transition: background 0.2s;
}

.view-btn:hover {
    background: #1e3c72;
}

.prog-sections-inner {
    margin: 0 auto;
    padding: 60px 0px;

}

.prog-sec-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.prog-sec-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #2a5298;
    margin: 10px auto 0;
}

/* Stats Styling */
/* .prog-stats-section {
            background: #f8f9fa;
        } */

.prog-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.prog-stat-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.prog-stat-card h3 {
    font-size: 2.5rem;
    color: #2a5298;
    margin: 0 0 10px 0;
}

.prog-stat-card p {
    margin: 0;
    color: #666;
    font-weight: 500;
}

/* Process Styling */
.prog-process-section {
    background: #f8f9fa
}

.prog-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}

.prog-step-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    position: relative;
}

.prog-step-num {
    font-size: 2rem;
    color: rgba(42, 82, 152, 0.1);
    font-weight: bold;
    position: absolute;
    top: 6px;
    right: 20px;
}

.prog-step-card h4 {
    margin: 0 0 10px 0;
    color: #2a5298;
    font-size: 1.2rem;
}

.prog-step-card p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FAQ Styling */


.prog-faq-container {
    max-width: 950px;
    margin: 0 auto;
}

.prog-faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #eef0f2;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.prog-faq-question {
    padding: 12px 20px;
    font-weight: bold;
    color: #333;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s, color 0.2s;
    user-select: none;
}

.prog-faq-question:hover {
    background: #f1f4f9;
    color: #2a5298;
}

/* Plus indicator icon */
.prog-faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: #2a5298;
    transition: transform 0.2s ease;
}

/* Jab active (open) hoga toh minus dikhega */
.prog-faq-item.active .prog-faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

/* Answer hidden by default */
.prog-faq-answer {
    padding: 0 20px 18px 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    background: #ffffff;
    display: none;
    /* JS isko handle karega */
}