﻿body {
    font-family: 'Segoe UI', sans-serif;
}

.banner img {
    max-height: 400px;
    object-fit: cover;
}
.navbar-title {
    color: #007bff; /* Bootstrap primary blue */
    font-weight: 700;
    font-size: 1.4rem;
}

/* Deep color for links and hover effect */
.navbar .nav-link.custom-link {
    color: #f8f9fa; /* light text on dark background */
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .navbar .nav-link.custom-link:hover {
        color: red; /* aqua/teal hover */
        transform: translateY(-2px);
    }

@media screen and (max-width: 768px) {
    .navbar .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
.navbar .container-fluid {
    padding-left: 100px;
}

marquee {
    font-size: 1.1rem;
    color: darkblue;
    font-weight: bold;
}

#galleryArea img {
    margin-bottom: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    #galleryArea img:hover {
        transform: scale(1.05);
    }
