/* Research Page Specific Styles */

/* Hero Section */
.research-hero {
    background: linear-gradient(rgba(40, 0, 40, 0.7), rgba(40, 0, 40, 0.7)), url('../images/research-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
    color: #fff;
}

.research-hero h1 {
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7); /* Stronger shadow for better visibility */
    color: #fff; /* Ensure text is white */
}

.research-hero .lead {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6); /* Shadow for lead text */
    color: #f0f0f0; /* Ensure text is bright */
}

/* Research Focus Section */
.research-focus-section {
    padding: 5rem 0;
}

.focus-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.focus-card .icon {
    font-size: 3.5rem;
    color: #800080;
    margin-bottom: 1rem;
}

/* Research Projects Section */
.research-projects-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.project-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.project-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.project-card .card-title {
    font-weight: 600;
}