

footer{
    background-color: #111;
}

.footer-container{
    width: 100%;
    padding: 70px 30px 20px;

}

.footer-container .social-icons{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer-container .social-icons a{
    color: #fff;
    font-size: 30px;
    transition: all 0.3s ease;
    flex-grow: 1;
    flex-direction: column;
    align-content: center;
    align-items: center;
    text-decoration: none;
    max-width: 193px;


}

footer-container .social-icons i{
    font-size: 2em;
    color: white;
    opacity: 0.9;
}
.social-icons a:hover{
    color: #6b6363;
    transition: 0.3s ease;
}
.footer-nav{
    display: flex;
    justify-content: left;
    margin-top: 20px;
    margin-left: 0px;
}
.footer-nav ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px;  /* Increased gap */
    
}

.footer-nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 1;
    transition: 0.3s ease;
    text-align: left;
    margin-bottom: 40px;
}

.footer-nav ul li a:hover{
    opacity: 0.7;
    transition: 0.3s ease;
}

.footerbottom{
    text-align: center;
    background: #111;
    padding: 20px;

}

.footerbottom p{
    color: #fff;
    font-size: 16px;
    opacity: 0.8;
}
