


img {
    filter: brightness(100%) contrast(105%) saturate(110%);
}

.text-secondary {
    color: #F4B400 !important;
}
.copyright {
    
    background: #F4B400 !important;
}
.shivam-logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    font-family:'Poppins', sans-serif;
}

.brand-icon{
    width:90px;
    margin-right:12px;
}

.logo-main{
    font-family:'Poppins', sans-serif;
    font-size:64px;
    font-weight:900;
    color:#0A3478;
    line-height:0.9;
    letter-spacing:2px;
    text-transform:uppercase;
}

.logo-campus{
    font-family:'Poppins', sans-serif;
    font-size:25px;
    font-weight:700;
    color:#F4B400;
    line-height:1;
    letter-spacing:1px;
    text-transform:uppercase;
}

.logo-tag{
    font-family:'Poppins', sans-serif;
    font-size:16px;
    font-weight:500;
    color:#0A3478;
    margin-top:5px;
    letter-spacing:0.3px;
}

@media(max-width:991px){
    .brand-icon{
        width:60px;
    }

    .logo-main{
        font-size:36px;
    }

    .logo-campus{
        font-size:16px;
    }

    .logo-tag{
        font-size:10px;
    }
}














/* Gallery Section */
/* ==========================
   Gallery Section
========================== */

.sec-gallery{
    background:#fff;
}

.sec-gallery-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    transition:.35s;
    height:100%;
}

.sec-gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.sec-gallery-image{
    overflow:hidden;
}

.sec-gallery-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.sec-gallery-card:hover .sec-gallery-image img{
    transform:scale(1.08);
}

.sec-gallery-body{
    padding:25px;
    text-align:center;
}

.sec-gallery-body h5{
    margin-bottom:18px;
    font-weight:700;
    color:#002b5b;
}

/* Button */

.sec-gallery-btn{
    display:inline-block;
    background:#f5b400;
    color:#fff;
    text-decoration:none;
    padding:10px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    border:2px solid #f5b400;
}

.sec-gallery-btn:hover{
    background:#fff;
    color:#f5b400;
    border-color:#f5b400;
}

/* Mobile */

@media(max-width:768px){

    .sec-gallery-image img{
        height:220px;
    }

}