footer{
    background-color: #F8F8F8;
    /*height: 467px;*/
}
footer .container{
    height: 280px;
    display: grid
;
}
.footerImg{
    text-align: center;
    padding: 20px;
}
.footerContent{
    display: flex;
    justify-self: anchor-center;
    column-gap: 110px;
}
.footerEnd{
    background-color: #003399;
    color: #ffffff;
    height: 102px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerEnd p{
    margin: 0;
}
.footerContent h3{
    width: 100%; 
    text-align: left; 
    margin-bottom: 10px;
}
.footer-list {
    display: flex;
    gap: 10px;
}
.footerContent ul {
    display: flex;
    flex-direction: column; 
}
.footer-list li a img {
    height: 25px;
    width: 25px;
    padding: 5px;
}
.footer-list li {
    transition: background-color 0.3s ease-in-out, border-radius 0.3s ease-in-out;
    border-radius: 5px;
    width: 35px;
    height: 35px;
}

.footer-list li:hover {
    background-color: #96cbff69;
    border-radius: 10px;
    transform: scale(1.1); /* Zoom in effect */
}
