/* Footer CSS */
.footer {
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 2%;
    width: 100%;
    background-color: #4a90e2;
    color: #f7f7f5;
    flex-wrap: wrap;
    box-sizing: border-box;    
    margin-top: auto;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.brandfoot {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brandfoot img {
    height: 30px;
    width: auto;
}
.brandfoot .logo {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #f7f7f5;    
}
.copyright {
    display: flex;
    flex-direction: column;
    color: #f7f7f5;
    margin-top: 10px;
}
.footer-right {
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    padding: 10px 10px;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    
}
.footer-right .btn {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: #f7f7f5;
}

.footer-right .btn:hover,
.footer-right .btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
  outline: none;
}

/* ---------- MOBILE STYLING ---------- */
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        padding: 40px 5%;
        margin-top: auto;
    }

    .footer-left,
    .footer-right {
        align-items: center;
        text-align: center;
        justify-content: center;
        flex: 1 1 100%;
    }

    .brandfoot {
        justify-content: center;
    }

    .footer-right .btn {
        width: 100%;
        max-width: 250px;
    }
}