﻿/* Advertisement Banner */



/* Hero Image */
.hero img {
    width: 100%;
    height: auto;
}

/* About Section */
.about-section {
    background-color: #0056b3;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

/* Gallery Section */
.gallery {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #fff;
    padding: 30px 0;
}

    .gallery img {
        height: 220px;
        object-fit: cover;
        border-radius: 5px;
    }



.gallery-section {
    padding: 1rem;
}

.gallery-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #0f4ea3; /* Matches navbar/sidebar color */
}


        .gallery img:hover {
            transform: scale(1.05);
        }
