.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #333;
    transition: 0.3s;
}

.profile-img:hover {
    transform: scale(1.1);
}

body {
    font-family: Arial;
}

h1,
h2 {
    color: white;
}

.card {
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.timeline {
    border-left: 3px solid #ffc107;
    padding-left: 20px;
}

.timeline-item h5 {
    margin-bottom: 5px;
}

.card {
    border-radius: 15px;
    transition: 0.3s;
    border: none;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card h5 {
    font-weight: 600;
}

.card p {
    font-size: 14px;
    color: #555;
}