body {
    font-family: 'Arial', sans-serif;
    color: #000;
}

header {
    background: linear-gradient(135deg, #343a40 0%, #6c757d 100%);
    color: #fff;
    padding: 100px 0;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0;
}

header p {
    font-size: 1.5rem;
    margin-top: 0;
}

header img {
    border: 5px solid #fff;
}

section {
    padding: 60px 0;
}

section h2 {
    margin-bottom: 40px;
    font-weight: 700;
}

.card {
    border: none;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.card .card-body {
    color: #000;
}

#about {
    background-color: #f0f0f0;
}

#education {
    background-color: #e0e0e0;
}

#skills {
    background-color: #d0d0d0;
}

#projects {
    background-color: #c0c0c0;
}

#projects .card img {
    height: 200px;
    object-fit: cover;
}

#contact {
    background-color: #b0b0b0;
}

#contact .card {
    border: none;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #6c757d;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-unstyled li {
    margin-bottom: 10px;
}

.text-center a {
    color: #000;
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}

.text-center p {
    margin-bottom: 10px;
}

.skill-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.skill-box:hover {
    transform: scale(1.05);
}
