/* IRANYekanX Font Definition */
@font-face {
    font-family: 'IRANYekanX';
    src: url('../fonts/IRANYekanX/IRANYekanX.woff2') format('woff2'),
         url('../fonts/IRANYekanX/IRANYekanX.woff') format('woff'),
         url('../fonts/IRANYekanX/IRANYekanX.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IRANYekanX', 'Tahoma', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0a8f3c, #0d6efd);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-main {
    text-align: right;
    flex: 1;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.header-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.header-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

.floating-icon:nth-child(1) {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60px;
    right: 40px;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(3) {
    bottom: 40px;
    left: 40px;
    animation-delay: 3s;
}

.floating-icon:nth-child(4) {
    bottom: 20px;
    right: 20px;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Navigation */
.nav-back {
    background: #fff;
    padding: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-back a {
    color: #0a8f3c;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-back a:hover {
    color: #0d6efd;
}

/* Content Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section {
    background: white;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-right: 5px solid #0a8f3c;
}

/* Program Count Card */
.program-count-card {
    background: linear-gradient(135deg, #0a8f3c, #0d6efd);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(10, 143, 60, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-count-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 143, 60, 0.4);
}

.count-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.count-content {
    flex: 1;
}

.count-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.count-label {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
    font-weight: 500;
}

.count-description {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.4;
}

.section h2 {
    color: #0a8f3c;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section h3 {
    color: #0d6efd;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.4rem;
    font-weight: bold;
}

.section p {
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.8;
}

/* List Styles */
.section ul, .section ol {
    margin: 1rem 0;
    padding-right: 2rem;
}

.section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Table Styles */
.timeline-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-table th {
    background: #0a8f3c;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
}

.timeline-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: right;
}

.timeline-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Resource Grid */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.resource-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-right: 4px solid #0d6efd;
}

.resource-item h4 {
    color: #0d6efd;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Success Indicators */
.success-indicators {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.success-indicators h3 {
    color: white;
    margin-bottom: 1rem;
}

.success-indicators ul {
    list-style: none;
    padding: 0;
}

.success-indicators li {
    background: rgba(255,255,255,0.2);
    margin: 0.5rem 0;
    padding: 0.75rem;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    background: #343a40;
    color: white;
    margin-top: 3rem;
    border-radius: 12px 12px 0 0;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer p:last-child {
    margin-bottom: 0;
}

.developer-credit {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.developer-credit a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: #0a8f3c;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-table {
        font-size: 0.9rem;
    }
    
    .timeline-table th,
    .timeline-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Print Styles */
@media print {
    .nav-back,
    .footer {
        display: none;
    }
    
    .section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Index Page Specific Styles */
.index-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.index-header {
    background: linear-gradient(135deg, #0a8f3c, #0d6efd);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.index-header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: bold;
}



.policy-section {
    margin-bottom: 40px;
    padding: 25px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #fafbfc;
}

.policy-title {
    color: #0a8f3c;
    border-bottom: 3px solid #0a8f3c;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: bold;
}

.strategy-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: white;
}

.strategy-title {
    color: #495057;
    border-bottom: 2px solid #6c757d;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: bold;
}

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

.program-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #0a8f3c;
}

.program-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-left-color: #0d6efd;
}

.program-number {
    background: #0a8f3c;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.program-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

.program-link {
    display: inline-block;
    background: #0a8f3c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.program-link:hover {
    background: #087a33;
    color: white;
}

.back-link {
    display: inline-block;
    background: #6c757d;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 30px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.back-link:hover {
    background: #5a6268;
    color: white;
}

.stats-section {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin: 20px 0;
    text-align: center;
}

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

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #0a8f3c;
    display: block;
}

.stat-label {
    color: #666;
    margin-top: 5px;
}

.highlight {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
}

.highlight h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.highlight ul {
    margin: 0;
    padding-right: 1.5rem;
}

.highlight li {
    margin-bottom: 0.5rem;
    color: #856404;
}

/* Filter Controls */
.filter-controls {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #dee2e6;
}

.filter-controls h3 {
    margin-bottom: 1rem;
    color: #495057;
    font-size: 1.1rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* Active filter button states */
.filter-btn.active,
.filter-btn.strategy-btn.active {
    background-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    color: white;
    font-weight: 600;
}

/* Specific styling for active policy buttons */
.filter-btn[onclick*="filterByPolicy"].active {
    background-color: #007bff;
    border: 2px solid #0056b3;
}

/* Specific styling for active strategy buttons */
.strategy-btn.active {
    background-color: #007bff !important;
    border: 2px solid #0056b3 !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3) !important;
}

/* Enhanced strategy button active state */
.filter-btn.strategy-btn.active {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
    border: 2px solid #004085 !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4) !important;
    transform: translateY(-1px) !important;
}

/* Strategy button hover effects */
.filter-btn.strategy-btn:hover:not(.active) {
    background-color: #e3f2fd !important;
    border-color: #007bff !important;
    color: #007bff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2) !important;
}



/* Program Meta - Additional styles */
.program-policy,
.program-strategy {
    background-color: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.program-policy {
    background-color: #d1ecf1;
    color: #0c5460;
}

.program-strategy {
    background-color: #d4edda;
    color: #155724;
}

/* Responsive Design for Program Count Card */
@media (max-width: 768px) {
    .program-count-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }
    
    .count-icon {
        font-size: 2.5rem;
    }
    
    .count-number {
        font-size: 2rem;
    }
    
    .count-label {
        font-size: 1.1rem;
    }
    
    .count-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .program-count-card {
        padding: 1rem 0.8rem;
    }
    
    .count-icon {
        font-size: 2rem;
    }
    
    .count-number {
        font-size: 1.8rem;
    }
    
    .count-label {
        font-size: 1rem;
    }
    
    .count-description {
        font-size: 0.8rem;
    }
}

/* Awesome Dashboard Cards Styles */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a8f3c, #0d6efd, #ff6b35, #f7931e);
    border-radius: 16px 16px 0 0;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dashboard-card.main-card {
    background: linear-gradient(135deg, #0a8f3c, #0d6efd);
    color: white;
    grid-column: span 2;
}

.dashboard-card.main-card::before {
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
    height: 6px;
}

.dashboard-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.dashboard-card .card-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #0a8f3c;
}

.dashboard-card.main-card .card-number {
    color: white;
    font-size: 3rem;
}

.dashboard-card .card-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.dashboard-card.main-card .card-label {
    color: white;
    font-size: 1.4rem;
}

.dashboard-card .card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.dashboard-card.main-card .card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Card Link Styles */
.dashboard-card .card-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #0a8f3c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.dashboard-card .card-link:hover {
    background: #087a35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 143, 60, 0.3);
}

.dashboard-card.main-card .card-link {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dashboard-card.main-card .card-link:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Statistics Summary */
.stats-summary {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    border: 1px solid #dee2e6;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 1.2rem;
}

    .stat-text {
        font-size: 0.9rem;
        font-weight: 500;
        color: #495057;
    }

    /* Progress Section */
    .progress-section {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid #dee2e6;
    }

    .progress-section h3 {
        color: #0a8f3c;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        text-align: center;
    }

    .progress-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .progress-item {
        background: #f8f9fa;
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid #e9ecef;
    }

    .progress-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    .progress-label {
        font-weight: 600;
        color: #495057;
        font-size: 0.95rem;
    }

    .progress-percentage {
        font-weight: bold;
        color: #0a8f3c;
        font-size: 1.1rem;
    }

    .progress-bar {
        width: 100%;
        height: 12px;
        background: #e9ecef;
        border-radius: 6px;
        overflow: hidden;
        position: relative;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #0a8f3c, #0d6efd);
        border-radius: 6px;
        transition: width 2s ease-in-out;
        position: relative;
    }

    .progress-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
        0% {
            transform: translateX(-100%);
        }
        100% {
            transform: translateX(100%);
        }
    }

/* Enhanced Filter Controls */
.filter-controls {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.filter-controls h3 {
    color: #0a8f3c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.filter-level h4 {
    color: #495057;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

/* Enhanced Program Cards */
.program-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0a8f3c, #0d6efd);
    border-radius: 16px 16px 0 0;
}

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

.program-number {
    background: linear-gradient(135deg, #0a8f3c, #0d6efd);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.program-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0a8f3c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}



.program-description {
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.program-meta span {
    background: #f8f9fa;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #495057;
    border: 1px solid #e9ecef;
}

.program-link {
    display: inline-block;
    background: linear-gradient(135deg, #0a8f3c, #0d6efd);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.program-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 143, 60, 0.3);
    color: white;
}

/* Responsive Design for Dashboard Cards */
@media (max-width: 768px) {
    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-card.main-card {
        grid-column: span 1;
    }
    
    .stats-summary {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        justify-content: center;
    }
    
    /* Header responsive */
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .header-main {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .header p {
        font-size: 1.1rem;
    }
    
    .header-badges {
        justify-content: center;
    }
    
    .header-visual {
        width: 150px;
        height: 150px;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    /* Progress responsive */
    .progress-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .progress-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .dashboard-card {
        padding: 1rem;
    }
    
    .dashboard-card .card-number {
        font-size: 2rem;
    }
    
    .dashboard-card.main-card .card-number {
        font-size: 2.5rem;
    }
    
    .stats-summary {
        padding: 1rem;
    }
}
