body{
    font-family: Arial, sans-serif;
}
.top-bar{
    background:#3f989c;
    color:#fff;
    font-size:14px;
}
.navbar-brand{
    font-weight:700;
    color:#c40000 !important;
}
.page-header{
    background:#f5f5f5;
    padding:60px 0;
}
.section-title{
    color:#c40000;
    font-weight:700;
}

/* Gallery */
.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:6px;
}
.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.4s;
}
.gallery-item:hover img{
    transform:scale(1.1);
}
.gallery-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(196,0,0,0.7);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.4s;
    text-align:center;
    padding:10px;
}
.gallery-item:hover .gallery-overlay{
    opacity:1;
}

footer{
    background:#111;
    color:#ccc;
}
footer a{
    color:#ccc;
    text-decoration:none;
}
footer a:hover{
    color:#fff;
}
.gallery-img {
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-img:hover {
    transform: scale(1.05);
}



