body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.navbar {
    background-color: #2c2c2c;
}
.project-card {
    background-color: #2c2c2c;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.project-card-body {
    padding: 20px;
    flex-grow: 1;
}
.project-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.project-card-text {
    color: #b0b0b0;
    font-size: 1rem;
}
.btn-custom {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}
.btn-custom:hover {
    background-color: #0056b3;
}
.container {
    padding: 50px 0;
}
h1 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}
/* Metro-style layout */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
