/* University / units and departments */
.welcome .welcome-image {
    display: none;
}
.welcome .welcome-content {
    display: none;
}
div.welcome {
    padding: 0 !important;
}

/* Research Section Styles */
.research-page {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Research Cards */
/* .research-cards {
    margin-bottom: 80px;
} */

.research-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
}

.research-card .card-icon {
    /* background: linear-gradient(135deg, var(--primary) 0%, #2d4bb0 100%); */
    background: var(--primary);
}

.card-content {
    flex-grow: 1;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 15px;
}

.card-description {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.card-link i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.card-link:hover {
    color: var(--primary);
}

.card-link:hover i {
    transform: translateX(3px);
}

/* Call to Action */
/* .research-cta {
    background: var(--primary);
    border-radius: 12px;
    padding: 50px;
    color: white;
    text-align: center;
} */

.research-cta{
    display: none;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


.btn-primary {
    background-color: var(--light);
    color: var(--primary);
    border-radius: 20px;
    border-color: var(--light);
}

.btn-primary:hover {
    border: 2px solid rgba(255, 255, 255, 0.7);
    background-color: transparent;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    border-radius: 20px;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .research-page {
        padding: 50px 0;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .research-card {
        padding: 20px;
    }
    
    /* .research-cta {
        padding: 30px 20px;
    } */
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .research-card{
        align-items: center;
    }
    .research-card .card-description{
        display: none;
    }
    .research-card .card-content{
        text-align: center;
    }
}