.experience-section {
    padding: 40px 20px;
    text-align: center;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    text-align: left;
}

.experience-details {
    background-color: #f9f9f9;
    border-left: 4px solid #007bff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.experience-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.2);
    background-color: #f0f8ff;
}


.experience-details h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
}

.experience-details p {
    margin: 4px 0;
    font-size: 14px;
    color: #555;
}

.experience-details span {
    font-size: 13px;
    color: #777;
}

.experience-bullets {
    margin-top: 10px;
    padding-left: 18px;
}

.experience-bullets li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

@media (max-width: 600px) {
    .experience-details {
        padding: 12px 15px;
    }

    .experience-bullets li {
        font-size: 13px;
    }

    .experience-details h3 {
        font-size: 16px;
    }
}
