/* Hero Section for Small Pages */
.hero-small {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    color: #fff;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-small h1 {
    font-size: 3rem;
}
.hero-small p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Experience Section */
.experience {
    padding: 60px 0;
    background: #fff;
}
.experience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}
.experience-timeline {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}
.experience-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    padding-left: 60px;
}
.experience-year {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 1.5rem;
    color: #00bcd4;
    font-weight: bold;
}
.experience-content {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
}
.experience-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.experience-content h4 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
}
.experience-content p {
    font-size: 1rem;
}

/* Experience Item Hover */
.experience-item:hover .experience-content {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}
