/* Footer */
.footer {
    background-color: #1F2833;
    color: #ffffff;
    padding: 20px;
    width: 100%;
}

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

.footer-section1 {
    flex: 1; 
    text-align: left; 
    font-family: "Quicksand", sans-serif;
}

.footer-section2 {
    flex: 1; 
    text-align: right; 
    padding-right: 30px;
}

.footer-section1 p {
    font-family: "Quicksand", sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    margin: 5px 0;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 20px;
}

.footer-bottom p {
    font-family: "Quicksand", sans-serif;
    font-size: 0.8rem;
    color: #ccc;
}


.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #007bff;
}

.social-links i {
    font-size: 1.5rem; /* Set a fixed size for all icons */
    width: 1.5rem; /* Ensure consistent width */
    height: 1.5rem; /* Ensure consistent height */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 2rem;
    aspect-ratio: 1/1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 20px;
}

.footer-bottom p {
    font-family: "Quicksand", sans-serif;
    font-size: 0.8rem;
    color: #ccc;
}

/* Media Query for Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {

    .footer{
        display: flex;
        width: 100%;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .footer-container {
        width: 100%;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-section1 {
        width: 100%;
        text-align: center;
    }
    .footer-section2 {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 15px;
    }
}