footer {
    background-color: #002244;
    color: #fff;
    padding: 20px 40px;
    margin-top: 100px;
    margin-bottom: 50px;
}

.footer-secction {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo img {
    width: 100px;
    height: 100px;
}

.footer-logo i {
    margin-left: 8px;
    font-size: 20px;
}

.social-link{
    margin-top: 20px;
}
.social-link a{
    padding: 10px 10px 8px 6px; 
    text-align: center;
    border-radius: 6px;
    /* font-size: 18px; */
    background-color: rgb(224, 222, 222);
    color: black;
}
.social-link a:hover{
    background-color: orange;
    color: white;

}

.footer-logo p{
    line-height: 24px;
    text-align: justify;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link i {
    cursor: pointer;
    margin-right: 5px;
}
.link:hover i{
   /* transform: scale(1.06); */
   color: orange;
}
.link:hover{
    transform: scale(1.06);
}
.link a:hover {
  
    color: orange;
 }

.add h2,
.links h2 {
    color: orange;
}
.add{
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
}
.add p{
    line-height: 22px;
    margin-bottom: 12px;
}
.add i {
    color: #f6621c;
    margin-right: 8px;
}

.link a {
    text-decoration: none;
    color: white;
}

.copyright {
    margin-top: 50px;
    padding-top: 18px;
    border-top: 1px solid rgb(231, 210, 210);
    text-align: center;
}

.copyright p {
    margin: 0;
}

/* Tablet view */
@media (max-width: 1024px) {
    footer {
        padding: 20px;
    }

    .footer-secction {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile view */
@media (max-width: 768px) {
    footer {
        padding: 20px;
    }

    .footer-secction {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .copyright {
        margin-top: 20px;
        padding-top: 10px;
    }

    .copyright p {
        font-size: 14px;
    }
}
