/* css/about.css */
.hero {
    position: relative;
    text-align: center;
    color: white;
}
.hero img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
}
.profile-img {
    max-width: 300px;
    border: 5px solid #007BFF;
}
.skill-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    background-color: #F8F9FA;
}
.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.skill-card i {
    margin-bottom: 1rem;
}
.list-group-item {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    border-left: 4px solid #28A745;
    margin-bottom: 0.5rem;
}
.btn-primary {
    background-color: #007BFF;
    border-color: #007BFF;
}
.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}