     /* Tab Navigation Styles */
        .programs-tabs {
            background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
            padding: 0;
            border-radius: 12px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .programs-tabs .nav-tabs {
            border: none;
            display: flex;
            justify-content: center;
        }
        
        .programs-tabs .nav-link {
            color: rgba(255,255,255,0.7);
            border: none;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 0;
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .programs-tabs .nav-link:hover {
            color: #fff;
            background: rgba(255,255,255,0.1);
        }
        
        .programs-tabs .nav-link.active {
            color: #1a365d;
            background: #fff;
            border-radius: 12px 12px 0 0;
        }
        
        .programs-tabs .nav-link i {
            font-size: 1.2rem;
        }
        
        .tab-content {
            background: #fff;
            border-radius: 0 0 12px 12px;
            padding: 30px 0;
        }
        
        /* Course Card Styles */
        .course-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e9ecef;
        }
        
        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .course-card-header {
            background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
            color: #fff;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .course-code-badge {
            background: rgba(255,255,255,0.2);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .course-credits {
            background: #28a745;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .course-card-body {
            padding: 20px;
        }
        
        .course-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 10px;
        }
        
        .course-department {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .course-department i {
            margin-right: 5px;
        }
        
        .course-description {
            color: #495057;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .course-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            padding-top: 15px;
            border-top: 1px solid #e9ecef;
        }
        
        .course-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .course-meta-item i {
            color: #1a365d;
        }
        
        .course-actions {
            display: flex;
            gap: 10px;
            padding-top: 15px;
        }
        
        .btn-course-details {
            background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-course-details:hover {
            background: linear-gradient(135deg, #2d4a7c 0%, #1a365d 100%);
            color: #fff;
            transform: translateY(-2px);
        }
        
        /* RTL Adjustments */
        .rtl .course-department i {
            margin-right: 0;
            margin-left: 5px;
        }
        
        .rtl .programs-tabs .nav-link {
            flex-direction: row-reverse;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #6c757d;
        }
        
        .empty-state i {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.5;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .programs-tabs .nav-link {
                padding: 12px 20px;
                font-size: 0.95rem;
            }
            
            .programs-tabs .nav-link span {
                display: none;
            }
            
            .programs-tabs .nav-link i {
                font-size: 1.3rem;
            }
            
            .course-card-header {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        /* Scholarship Card Enhancements */
        .scholarship-mission-card,
        .scholarship-vision-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 25px;
            height: 100%;
            border-left: 4px solid #1a365d;
        }
        
        .rtl .scholarship-mission-card,
        .rtl .scholarship-vision-card {
            border-left: none;
            border-right: 4px solid #1a365d;
        }
        
        .scholarship-mission-card h4,
        .scholarship-vision-card h4 {
            color: #1a365d;
            margin-bottom: 15px;
            font-weight: 700;
        }