.academics {
    padding: 20px 0;
}

.academics h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--text-black);
}

.education-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.education-entry {
    background: var(--bg-black);
    color: var(--text-white);
    padding: 30px;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
}

.education-entry:hover {
    transform: translateY(-5px);
}

.education-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: white;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.education-text h3 {
    color: var(--bg-yellow);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.education-text p {
    margin-bottom: 5px;
    font-weight: 700;
    opacity: 0.9;
}

.education-text strong {
    color: var(--bg-yellow);
}

@media (max-width: 768px) {
    .education-entry {
        flex-direction: column;
        text-align: center;
    }
}
