/* Neo-brutalism Education Section */
#education.section {
    background-color: var(--background-color);
    border: 2px solid #000;
    border-radius: 8px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.7);
    margin: 40px 20px;
    padding: 30px 20px;
}

.dark #education.section {
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.15);
}

#education .section-title {
    margin-bottom: 2.5rem;
    position: relative;
    font-weight: 700;
    color: var(--text-color);
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #000;
}

.dark #education .section-title {
    border-bottom: 3px solid rgba(255, 255, 255, 0.7);
}

#education .section-title::after {
    display: none;
}

.neo-education-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.neo-education-card {
    flex: 1 1 350px;
    max-width: 450px;
    background: var(--background-color);
    border: 2px solid #000;
    border-radius: 8px;
    padding: 25px;
    position: relative;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.7);
    transition: all 0.2s ease;
}

.dark .neo-education-card {
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.15);
}

.neo-education-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.7);
}

.dark .neo-education-card:hover {
    box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.2);
}

.neo-education-card:nth-child(1) {
    border-top: 6px solid #FF9A8B; /* Soft pink */
}

.neo-education-card:nth-child(2) {
    border-top: 6px solid #9DCEFF; /* Soft blue */
}

.neo-education-card:nth-child(3) {
    border-top: 6px solid #FFD166; /* Soft yellow */
}

.neo-education-header {
    border-bottom: 2px solid #000;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
}

.dark .neo-education-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}

.neo-education-date {
    background-color: #000;
    color: #fff;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    right: 10px;
}

.dark .neo-education-date {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.1);
}

.neo-degree {
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.neo-institution {
    display: block;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.neo-institution i {
    margin-right: 8px;
}

.neo-education-body {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
}

.neo-education-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.neo-education-body ul li {
    margin-bottom: 8px;
    position: relative;
}

.neo-education-body ul li::before {
    content: "▹";
    color: var(--primary-color);
    position: absolute;
    left: -20px;
    font-size: 1.2rem;
}

.neo-grade {
    display: inline-block;
    background-color: #f0f0f0;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 15px;
    border: 1.5px solid #000;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.7);
}

.dark .neo-grade {
    background-color: #333;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .neo-education-card {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }
    
    .neo-degree {
        font-size: 1.2rem;
    }
    
    .neo-institution {
        font-size: 1rem;
    }
    
    .neo-education-date {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}
