/* Footer Styles */
.footer-white {
    background: linear-gradient(270deg, #010B1F 0%, #233D7D 100%);

    color: #fff;
}

.footer-top {
    padding: 40px 0px 25px 0px;
}

.footer-top .container {
    
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-divider-wrapper {
    padding: 0;
}

.footer-divider-wrapper .container {
    
    margin: 0 auto;
    padding: 0 15px;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    width: 100%;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom .container {
   
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 6px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

.social-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.at-logo-main img {
    height: 40px;
    
}

.footer-buttons {
    display: flex;
    gap: 15px;
}

.footer-btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    justify-content: center;
}

.footer-register-btn {
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    min-width: 100px;
}

.footer-register-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-subscribe-btn {
    background-color: #ed1c24;
    color: #fff;
    border: none;
    min-width: 120px;
    padding-right: 40px;
    position: relative;
}

.footer-subscribe-btn img {
    height: 20px;
    width: auto;
    position: absolute;
    right: 10px;
}

.footer-subscribe-btn:hover {
    background-color: #d01921;
}

@media (max-width: 992px) {
    .footer-top .container,
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }
} 
