        /* Additional styles for research page */
        .research-section {
            margin: 3rem 0;
        }
        
        .research-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .research-card:hover {
            transform: translateY(-5px);
        }
        
        .research-card-content {
            padding: 1.5rem;
        }
        
        .research-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .student-project {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--accent);
        }
        
        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .project-status {
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .status-ongoing {
            background-color: #e8f5e9;
            color: #2e7d32;
        }
        
        .status-completed {
            background-color: #e3f2fd;
            color: #1565c0;
        }
        
        .publication-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
        }
        
        .pub-authors {
            color: #666;
            font-style: italic;
            margin-bottom: 0.5rem;
        }
        
        .pub-journal {
            color: var(--primary);
            font-weight: 500;
        }
        
        .funding-opportunity {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
            border-top: 4px solid var(--secondary);
        }
        
        .deadline {
            color: var(--secondary);
            font-weight: bold;
            margin: 0.5rem 0;
        }
        
        .news-event-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .news-event-content {
            padding: 1.5rem;
        }
        
        .event-date {
            color: var(--secondary);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .news-type {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .type-news {
            background-color: #f3e5f5;
            color: #7b1fa2;
        }
        
        .type-event {
            background-color: #e8f5e9;
            color: #2e7d32;
        }
        
        @media (max-width: 768px) {
            .project-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .project-status {
                margin-top: 0.5rem;
            }
        }
.highlight-author {
    font-weight: bold;
    color: #2a6c8e; /* A professional blue */
    text-decoration: underline;
}
