
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background: #0D3B66;
    color: white;
    padding: 1em 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1em;
}

section {
    padding: 3em 1em;
}

.btn-warning {
    background-color: #F4D35E;
    color: #0D3B66;
    font-weight: bold;
}

.btn-warning:hover {
    background-color: #e0be4f;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-title {
    font-weight: 700;
}

.card-text {
    font-size: 0.95rem;
    color: #444;
}

/* Ensure card images maintain consistent dimensions */
.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: contain;

}

.project-card img {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

footer {
    background: #0D3B66;
    color: white;
    text-align: center;
    padding: 2em 0;
}

footer img {
    max-height: 40px;
}

.blockquote-footer {
  color: #555 !important;
  background: none !important;
}
