

.gallery-page-section{
    padding: 50px 0;
    background: #f5f8fc;
}

.gallery-heading h5{
    color: #00A3FF;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.gallery-heading h2{
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 20px;
}

.gallery-section{
    padding: 90px 0;
    background: #f8f9fc;
}

.gallery-heading{
    margin-bottom: 60px;
}

.gallery-heading h5{
    color: #00A3FF;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.gallery-heading h2{
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 20px;
}


.gallery-card{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 30px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.gallery-card:hover{
    transform: translateY(-8px);
}

.gallery-card img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.6s ease;
}

/* IMAGE ZOOM */
.gallery-card:hover img{
    transform: scale(1.1);
}

/* OVERLAY */
.gallery-overlay{
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    padding: 25px;
    background: linear-gradient(
        to top,
        rgba(11,44,95,0.95),
        rgba(11,44,95,0.4),
        transparent
    );
    transition: 0.5s ease;
}

.gallery-card:hover .gallery-overlay{
    bottom: 0;
}

.gallery-overlay h3{
    color: #fff;
    font-size: 24px;
    margin-bottom: 8px;
    transform: translateY(30px);
    transition: 0.5s ease;
}

.gallery-overlay p{
    color: #ddd;
    font-size: 15px;
    margin: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.gallery-card:hover .gallery-overlay h3,
.gallery-card:hover .gallery-overlay p{
    transform: translateY(0);
}

/* ICON ANIMATION */

.gallery-icon{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: rotate(180deg) scale(0);
    transition: 0.5s ease;
}

.gallery-icon i{
    color: #0b2c5f;
    font-size: 18px;
}

.gallery-card:hover .gallery-icon{
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* FADE UP ANIMATION */

.gallery-card{
    animation: fadeUp 1s ease;
}

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .gallery-heading h2{
        font-size: 30px;
        line-height: 40px;
    }

    .gallery-card img{
        height: 250px;
    }

}


.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
}

.footer .widget-title {
    color: #fff;
    font-weight: 600;
}

.footer p,
.footer a {
    color: #cbd5e1;
}

.footer a:hover {
    color: #4267B2;
}

.footer-widget-col-1,
.footer-widget-col-2,
.footer-widget-col-3,
.footer-widget-col-4 {
    transition: 0.3s;
}

.footer-widget-col-1:hover,
.footer-widget-col-2:hover,
.footer-widget-col-3:hover,
.footer-widget-col-4:hover {
    transform: translateY(-5px);
}

.footer .menu li a {
    position: relative;
    transition: 0.3s;
}

.footer .menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    /* background: #f97316; */
    transition: 0.3s;
}

.footer .menu li a:hover::after {
    width: 100%;
}
