body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    background-image: url("legacy.jpg"), url("legacy4.jpg");
    background-repeat: no-repeat, no-repeat;
    background-size: 50% 100%, 50% 100%;
    background-position: left, right;
}
.container {
    width: 800px;
    margin: 80px auto;
    background-color: #ffffff;
    background-image: url("huree2.png");
    background-size: contain;
    padding: 60px;
    border-radius: 12px;
}
.header {
    text-align: center;
    margin-bottom: 30px;
}
.header img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    border: 3px solid #d8870d;
}
.header h1 {
    font-size: 40px;
    margin: 10px 0;
    color: #1e60a2;
}
.header h2 {
    font-size: 30px;
    color: #d8870d;
    margin-bottom: 15px;
}
.section {
    margin-bottom: 40px;
}
.section p {
    font-size: 15px;
    color: #000;
}
.section h3 {
    margin-bottom: 15px;
    font-size: 25px;
    color: #d8870d;
    border-bottom: 2px solid #d8870d;
    padding-bottom: 5px;
    font-weight: 600;
}
.abilities, .experience, .skills, .contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.experience-item, .skill {
    width: 30%;
    text-align: center;
    margin: 10px 0;
}
.ability, .contact-info-inner {
    width: 20%;
    text-align: center;
    margin: 10px 0;
}
.ability p {
    font-weight: bold;
}

.ability img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #ffb74d;
}
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.timeline-event {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin: 0 10px;
    width: 160px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 2px solid #ffb74d;
}
.timeline-event:hover {
    transform: scale(1.05);
}
.progress-bar {
    display: flex;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}
.progress-bar-inner {
    height: 100%;
    background-color: #ffb74d;
    transition: width 10px;
}
.contact-info img {
    width: 40px;
    height: 40px;
}
.contact-info p {
    font-weight: bold;
    color: #8fc7ff;
    margin: 5px 0;
}
.contact-info a {
    color: #8fc7ff;
    text-decoration: none;
    font-weight: bold;
}