/* Custom Styles */
.hero-section {
    background: url('https://picsum.photos/1920/1080?blur=2') no-repeat center center;
    background-size: cover;
    height: 100vh;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.card {
    border: none;
    overflow: hidden;
}

.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}
