/* custom.css */
.hero-section {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.card img {
    height: 200px;
    object-fit: cover;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}
/* Footer Styles */
footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffc107 !important; /* Bootstrap warning yellow */
}

footer .list-unstyled li a:hover {
    color: #ffc107;
}

footer i {
    transition: transform 0.3s;
}

footer i:hover {
    transform: scale(1.2);
}