.footer{
    background: linear-gradient(90deg,#1C68A4,#5fb0d6);
    box-shadow: 0 2px 15px rgba(7, 7, 7, 0.2); 
    /* color:#fff; */
}
.footer-top{
    padding:60px 8%;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1.5fr;
    gap:30px;
}
.footer-brand h2{
    color: linear-gradient(90deg,#212427,#2C343D);
    margin-bottom:15px;
}
.footer-brand p{
    line-height:1.8;
    color:#d8d8d8;
}
.footer-links h3,
.footer-contact h3{
    color: linear-gradient(90deg,#212427,#2C343D);
    margin-bottom:20px;
}
.footer-links ul{
    list-style:none;
}
.footer-links ul li{
    margin-bottom:12px;
}
.footer-links a{
    text-decoration:none;
    color:#ddd;
    transition:.3s;
}
.footer-links a:hover{
    color:#ff6600;
    padding-left:5px;
}
.footer-contact p{
    color:#ddd;
    margin-bottom:10px;
}

.testimonial-box{
    text-align:center;
    /* padding:40px 8%; */
}

.testimonial-box h3{
    color: linear-gradient(90deg,#212427,#2C343D);
    margin-bottom:15px;
}

.testimonial-box p{
    font-style:italic;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}
.testimonial-box span{
    display:block;
    margin-top:15px;
    color:#f8ebe3;
}

.newsletter{
    padding:40px 8%;
    text-align:center;
}

.newsletter h3{
    color:#ff6600;
    margin-bottom:20px;
}

.newsletter form{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.newsletter input{
    width:350px;
    max-width:100%;
    padding:14px;
    border:none;
    border-radius:5px;
}

.newsletter button{
    padding:14px 25px;
    border:none;
    background:#ff6600;
    color:#fff;
    border-radius:5px;
    cursor:pointer;
}

.social-links{
    text-align:center;
    padding:20px;
}

.social-links a{
    color:#0a0909;
    text-decoration:none;
    margin:0 15px;
}

.social-links a:hover{
    color:#ff6600;
}

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#070606;
}

@media(max-width:992px){
    .footer-top{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .footer-top{
        grid-template-columns:1fr;
    }

    .newsletter form{
        flex-direction:column;
        align-items:center;
    }
}