.research-initiatives-section {
    width: 100%;
    padding: 80px 20px;
    background: #f5f7fa;
    color: #192850;
    display: flex;
    justify-content: center;
}

.research-container {
    max-width: 1200px;
    width: 100%;
}

/* Header */
.research-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.research-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.research-header p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Tabs */
.research-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-button {
    background: #ffffff;
    border: 2px solid #38b6ff;
    color: #192850;
    padding: 12px 25px;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: #38b6ff;
    color: #fff;
}

/* Tab Content */
.tab-contents {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.content-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.content-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.content-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.content-card p {
    font-size: 14px;
    opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .research-header h2 {
        font-size: 36px;
    }

    .research-header p {
        font-size: 15px;
    }

    .content-card h3 {
        font-size: 16px;
    }

    .content-card p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .research-header h2 {
        font-size: 28px;
    }

    .research-header p {
        font-size: 14px;
    }

    .tab-button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .content-card {
        padding: 15px;
    }

    .content-card img {
        width: 60px;
        height: 60px;
    }
}
