.education-section {
    margin-top: 2.5rem;
}

.education-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.education-icon {
    background: var(--color-card-bg, #e3eefd);
    border-radius: 12px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
}
.education-icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.education-timeline {
    position: relative;
    margin-left: 32px;
    padding-left: 32px;
    border-left: 2px solid #bbb;
}

.education-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 0.5rem;
}

.education-dot {
    position: absolute;
    left: -41px;
    top: 12px;
    width: 16px;
    height: 16px;
    background: var(--color-highlight, #1976d2);
    border: 3px solid var(--color-background, #fff);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
}

.education-content h3 {
    margin: 0 0 0.3rem 0;
    font-weight: bold;
    color: var(--color-navbar-text, #1a237e);
    font-size: 1.15rem;
}

.education-content p {
    margin: 0 0 0.3rem 0;
    color: #444;
    font-size: 1rem;
}

.education-years {
    display: block;
    color:  #1a237e;
    font-weight: 600;
    margin-bottom: 0.3rem;
    margin-top: 0.2rem;
    font-size: 1.05rem;
}

body.dark-mode .education-content p {
    color: #ccd6f6;
}


.experience-section {
    margin-top: 2.5rem;
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.experience-icon {
    background: var(--color-card-bg, #e3eefd);
    border-radius: 12px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
}
.experience-icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.experience-timeline {
    position: relative;
    margin-left: 32px;
    padding-left: 32px;
    border-left: 2px solid #bbb;
}

.experience-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 0.5rem;
}

.experience-dot {
    position: absolute;
    left: -41px;
    top: 12px;
    width: 16px;
    height: 16px;
    background: var(--color-highlight, #1976d2);
    border: 3px solid var(--color-background, #fff);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
}

.experience-content h3 {
    margin: 0 0 0.3rem 0;
    font-weight: bold;
    color: var(--color-navbar-text, #1a237e);
    font-size: 1.15rem;
}

.experience-content p {
    margin: 0 0 0.3rem 0;
    color: #444;
    font-size: 1rem;
}

.experience-years {
    display: block;
    color: #FFD600;
    font-weight: 600;
    margin-bottom: 0.3rem;
    margin-top: 0.2rem;
    font-size: 1.05rem;
}

body.dark-mode .experience-content p {
    color: #ccd6f6;
}

.education-icon,
.experience-icon {
    background: var(--color-card-bg, #e3eefd);
    border-radius: 12px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.education-icon:hover,
.experience-icon:hover {
    background: var(--color-highlight, #1976d2);
    box-shadow: 0 4px 16px var(--color-hover, #1565c0);
}

.download-cv-btn {
    display: inline-block;
    margin: 1.2rem 0 0 0;
    padding: 0.7rem 1.6rem;
    background: var(--color-highlight, #1976d2);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
    transition: background 0.2s, color 0.2s;
}
.download-cv-btn:hover {
    background: var(--color-hover, #1565c0);
    color: #fff;
}

/* Mobile and Tablet Responsive Design */
@media (max-width: 768px) {
    .education-section,
    .experience-section {
        margin-top: 1.5rem;
    }
    
    .education-header,
    .experience-header {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .education-header h2,
    .experience-header h2 {
        font-size: 1.4rem;
        margin: 0;
    }
    
    .education-icon,
    .experience-icon {
        padding: 0.6rem;
    }
    
    .education-icon img,
    .experience-icon img {
        width: 28px;
        height: 28px;
    }
    
    .education-timeline,
    .experience-timeline {
        margin-left: 20px;
        padding-left: 25px;
    }
    
    .education-item,
    .experience-item {
        margin-bottom: 2rem;
        padding-left: 0.3rem;
    }
    
    .education-dot,
    .experience-dot {
        left: -32px;
        top: 8px;
        width: 12px;
        height: 12px;
        border: 2px solid var(--color-background, #fff);
    }
    
    .education-content h3,
    .experience-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    .education-content p,
    .experience-content p {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    
    .education-years,
    .experience-years {
        font-size: 1rem;
        margin-bottom: 0.2rem;
        margin-top: 0.1rem;
    }
    
    .download-cv-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        margin: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .education-section,
    .experience-section {
        margin-top: 1rem;
    }
    
    .education-header,
    .experience-header {
        margin-bottom: 1rem;
    }
    
    .education-header h2,
    .experience-header h2 {
        font-size: 1.2rem;
    }
    
    .education-icon,
    .experience-icon {
        padding: 0.5rem;
    }
    
    .education-icon img,
    .experience-icon img {
        width: 24px;
        height: 24px;
    }
    
    .education-timeline,
    .experience-timeline {
        margin-left: 15px;
        padding-left: 20px;
        border-left-width: 1px;
    }
    
    .education-item,
    .experience-item {
        margin-bottom: 1.5rem;
        padding-left: 0.2rem;
    }
    
    .education-dot,
    .experience-dot {
        left: -25px;
        top: 6px;
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
    
    .education-content h3,
    .experience-content h3 {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }
    
    .education-content p,
    .experience-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .education-years,
    .experience-years {
        font-size: 0.9rem;
    }
    
    .download-cv-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }
}

@media (max-width: 360px) {
    .education-timeline,
    .experience-timeline {
        margin-left: 10px;
        padding-left: 15px;
    }
    
    .education-dot,
    .experience-dot {
        left: -20px;
        width: 8px;
        height: 8px;
    }
    
    .education-content h3,
    .experience-content h3 {
        font-size: 0.95rem;
    }
    
    .education-content p,
    .experience-content p {
        font-size: 0.85rem;
    }
    
    .education-years,
    .experience-years {
        font-size: 0.85rem;
    }
}