/* =========================
   Gallery Banner
========================= */

.gallery-banner{
    height:250px;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url("../images/campus/slide1.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;
    text-align:center;
}

.gallery-banner h1{
    font-size:3rem;
    margin-bottom:10px;
}

.gallery-banner p{
    font-size:1.2rem;
}

/* =========================
   Gallery Section
========================= */

.gallery-section{
    padding:80px 10%;
}

.gallery-title{
    text-align:center;
    color:#0d47a1;
    margin-bottom:50px;
    font-size:2rem;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.gallery-card{
    background:white;
    border-radius:12px;
    overflow:hidden;

    box-shadow:0 4px 12px rgba(0,0,0,0.1);

    transition:0.3s ease;
}

.gallery-card:hover{
    transform:translateY(-5px);
}

.gallery-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.gallery-card h3{
    padding:15px;
    text-align:center;
    color:#333;
    font-size:1rem;
}