body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}


.profile-card {
    width: 900px;
    height: 300px;
    background: rgba(255, 255, 255, 0.8); 
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    margin-bottom: 70px;
    margin-left: 200px;
    background-image: url(../IMAGE/pic01.jpg);
    background-size: cover; 
    background-position: center;
}


.profile-card img {
    width: 100px;
    height: 100px;
    border-radius: 20px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 3px solid white; 
}

.profile-card h2 {
    margin-top: 10px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.profile-card p {
    color: #f1f1f1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}


.profile-card .btn-custom {
    margin: 5px;
    font-weight: bold;
}


.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #6c5ce7;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}

.timeline-item .content {
    width: 45%;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.timeline-item .content:hover {
    background: #ececec;
    transform: translateY(-3px);
}

.timeline-item:nth-child(odd) .content {
    text-align: right;
}

.timeline-item:nth-child(even) .content {
    text-align: left;
}

.circle {
    width: 16px;
    height: 16px;
    background: #6c5ce7;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid white;
}

.profile-card button {
    width: 120px; 
    height: 45px; 
    font-size: 18px; 
    font-weight: bold; 
    border-radius: 25px; 
    border: none; 
    margin: 10px; 
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2); 
    transition: all 0.3s ease-in-out; 
}

#btn01.btn-custom {
    font-family: 'Times New Roman', Times, serif;
    background-color: #c39bd3 ; 
}

#btn01:hover {
    background-color: #af7ac5; 
    transform: scale(1.1); 
}

#btn02.btn-custom {
    font-family: 'Times New Roman', Times, serif;
    background-color: #7dcea0; 
}

#btn02.btn-custom:hover {
    background-color: #52be80; 
    transform: scale(1.1); 
}

