/* Simple animation styles for Experience & Education page (consistent with other sections) */
.timeline-content {
    background: #1b2128;
    padding: 25px;
    width: 85%;
    max-width: 900px;
    margin: 0 auto 40px auto;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border-left: 3px solid var(--gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

.timeline-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.3);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Simple card effect for timeline container (consistent with other sections) */
.timeline-container.card {
    background: rgba(26, 45, 66, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 165, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-container.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.3);
}

/* Simple content title animation (consistent with other sections) */
.content-title {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.timeline-content:hover .content-title::after {
    width: 100%;
}

/* Back to Top Button - keeping simple version */
.back-to-top {
    text-align: center;
    margin: 50px auto 30px;
}

.back-to-top-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--navy-light);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 165, 0, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.back-to-top-button:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.3);
}

@media (max-width: 768px) {
    .back-to-top-button {
        bottom: 20px;
        right: 20px;
        padding: 8px 15px;
    }
    
    .back-to-top-button span {
        display: none;
    }
    
    .timeline-content {
        width: 90%;
    }
}

/* Simple page subtitle and intro styling (consistent with other sections) */
.page-subtitle {
    color: var(--off-white);
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.8;
    font-size: 1.1rem;
}

.experience-intro {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-intro:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.3);
}
