* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Siliguri', Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Navbar Styles */
nav {
    width: 100%;
    background-color: #e60000;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
}

.navbar-brand img {
    margin-right: 10px;
    border-radius: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 15px;
    transition: background 0.3s, color 0.3s;
    border-radius: 5px;
}

.nav-menu li a:hover {
    background-color: #ffffff;
    color: #e60000;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* Responsive Navbar Styles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        background-color: #e60000;
        width: auto;
        flex-direction: column;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        text-align: right;
    }

    .nav-menu li a {
        display: block;
        padding: 10px;
        width: 100%;
    }
}
#gallery-container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

#gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.gallery-item .image-title {
    padding: 10px;
    font-size: 16px;
    color: #555;
}

/* Responsive Styles for Gallery */
@media (max-width: 768px) {
    #gallery-list {
        gap: 10px;
    }
    
    .gallery-item {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
    }
}
footer {
    background: #e60000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    
}

footer p {
    margin: 0;
    color: #ffffff;
}