/* SECTION BACKGROUND */
#experience-2 {
    background: #000;
    color: white;
    padding: 80px 20px;
    min-height: 100vh;
    overflow-y: auto;
}

.experience-title,
.skills-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: red;
}

.exp-entry {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 25px;
    border-radius: 10px;
    background: #111;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.2);
}

/* 🔥 add space at the bottom */
.exp-entry:last-child {
    margin-bottom: 100px;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: baseline;
}

.exp-header h3 {
    font-size: 1.4rem;
    color: white;
    margin: 0;
}

.exp-date {
    font-size: 1rem;
    color: red;
    font-weight: 600;
}

/* COMPANY TEXT */
.company {
    color: red;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* BULLET POINTS */
.exp-entry ul {
    margin: 0;
    padding-left: 20px;
}

.exp-entry ul li {
    font-size: 1rem;
    margin-bottom: 8px;
    color: white;
}

/* SKILLS SECTION */
.skills-wrapper {
    margin-top: 60px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.skill-group h3 {
    font-size: 1.3rem;
    color: red;
    margin-bottom: 10px;
    border-bottom: 1px solid red;
    padding-bottom: 5px;
}

.skill-group span {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
    color: white;
}