.site-footer{
    background:linear-gradient(135deg,#141e30,#243b55);
    color:#fff;
    padding-top:50px;
    margin-top:50px;
    font-family:'Segoe UI',sans-serif;
}

.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:35px;
    padding-bottom:40px;
    align-items:start;
}

/* Logo Section */

.footer-box:first-child{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.footer-banner{
    width:280px;
    max-width:100%;
    height:auto;
    display:block;
    margin:15px 0 20px 0;
}

/* Heading */

.footer-box h2{
    font-size:28px;
    margin-bottom:15px;
    color:#ffcc00;
}

.footer-box h3{
    font-size:22px;
    margin-bottom:18px;
    color:#ffcc00;
    position:relative;
}

.footer-box h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:55px;
    height:3px;
    background:#ffcc00;
    border-radius:10px;
}

/* Text */

.footer-box p{
    color:#ddd;
    line-height:1.8;
    font-size:15px;
}

/* Links */

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin:12px 0;
}

.footer-box ul li a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#ffcc00;
    padding-left:6px;
}

.footer-box a{
    color:#ddd;
    text-decoration:none;
}

.footer-box a:hover{
    color:#ffcc00;
}

/* Bottom Footer */

.footer-bottom{
    text-align:center;
    background:#101820;
    padding:18px 10px;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-bottom p{
    margin:0;
    color:#bbb;
    font-size:14px;
}

/* Mobile */

@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-banner{
        width:220px;
        margin:0 auto 20px auto;
    }

    .footer-box h3::after{
        left:50%;
        transform:translateX(-50%);
    }


.social-title{
    margin-top:20px;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:15px;
    flex-wrap:wrap;
}

.social-icons a{
    text-decoration:none;
}

.social-icons img{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    padding:4px;
    transition:0.3s;
}

.social-icons img:hover{
    transform:translateY(-4px);
}

@media(max-width:768px){

    .social-icons{
        justify-content:center;
    }

}
