#experience {
    align-items: stretch;
}

.experience-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.experience-heading {
    font-size: 3.5em;
    color: #f6aa1c;
    text-align: center;
    margin-bottom: 40px;
}

.experience-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #778da9;
}

.exp-item {
    position: relative;
    margin-bottom: 32px;
    background-color: #1b263b;
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.exp-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.exp-item::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #f6aa1c;
    border: 3px solid #0A0A15;
    box-shadow: 0 0 10px rgba(246, 170, 28, 0.6);
}

.exp-date {
    display: inline-block;
    color: #f6aa1c;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.exp-title {
    font-size: 1.4em;
    color: #eae0d5;
    margin: 0 0 4px 0;
}

.exp-org {
    color: #b8c7d1;
    font-size: 1em;
    font-style: italic;
    margin-bottom: 10px;
}

.exp-desc {
    color: #e0e1dd;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.exp-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    color: #e0e1dd;
    font-size: 0.9em;
    line-height: 1.55;
}

.exp-bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.exp-bullets li:before {
    content: "\25B8";
    position: absolute;
    left: 0;
    color: #f6aa1c;
    font-weight: bold;
}

.exp-bullets strong {
    color: #eae0d5;
}

.exp-desc a {
    color: #f6aa1c;
    text-decoration: none;
}

.exp-desc a:hover {
    text-decoration: underline;
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.exp-tag {
    background-color: rgba(119, 141, 169, 0.2);
    color: #b8c7d1;
    border: 1px solid rgba(119, 141, 169, 0.5);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 600;
}

@media (max-width: 1300px) {
    .experience-heading {
        font-size: 2.5em;
    }

    .experience-timeline {
        padding-left: 20px;
    }

    .exp-item::before {
        left: -28px;
    }
}
