/* Google Font */
body {
    font-family: 'Manrope', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
}

/* Card and Image Styling */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.card-title {
    font-weight: 600;
    font-size: 16px;
}

.btn {
    font-weight: 500;
}

/* Modal Styling */
.modal-body img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .card {
        margin-bottom: 30px;
    }

    .navbar-brand {
        font-size: 20px;
    }
}
