footer{
    background-color: var(--third-color);
    color: var(--white-color);
}
.footer-container{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 30px 0 30px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center; 
    backdrop-filter: blur(10px); 
    padding: 10px; 
    border-radius: 5px; 
    background-color: rgba(255, 255, 255, 0.5);
}

.footer-logo img{
    width: 300px;
}

.foot1{
    width: 30%;
}

.aitchnu{
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.aitchnu:hover{
    color: var(--second-color);
}

.footer-bottom{
    margin-bottom: -50px ;
    /* background-color: #33429a; */
    padding: 2px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footer-bottom p{
    width: 90%;
    margin: 5px auto;
}

.foot4{
    text-align: left;
}

.social-icons{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 15px;
}

.social-icon{
    margin-top: 8px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.social-icon:hover{
    background-color: var(--second-color);
    border: 2px solid var(--second-color);
}

.google-play{
    width: 130px;
    margin-top: -15px;
    margin-left: 0;
    transition: all 0.3s ease-in-out;
}

.google-play:hover{
    transform: scale(1.1);
}

.foot-list a{
    color: #fff;
   line-height: 35px;
}

.foot-list a:hover{
    color: var(--main-color);
}

.footer-card .line{
    width: 100%;
    height: 2px;
    margin: 0px;
    color: var(--main-color);
    background-color: var(--main-color);
}

.foot-btn{
    background-color: var(--main-color);
    padding: 5px 15px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
    border: 2px solid var(--main-color);
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}
.foot-btn:hover{
    background-color: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

@media (max-width: 1200px) {
    .footer-logo img{
        width: 200px;
    }
}
@media (max-width: 768px) {
    .footer-container{
        width: 80%;
        padding-bottom: 60px;
    }
    .foot1{
        width: 100%;
    }
}