/* education-specific.css */

/* Styles specific to the Higher Education section */
#education .grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
}

.higher-edu-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.higher-edu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.higher-edu-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.higher-edu-card h3 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.higher-edu-card p {
    font-size: 0.875rem; /* text-sm */
    color: #4a5568;
}
