/* Footer General Styles */
#site-footer {
    background-color: #14142b;
    color: white;
    font-size: 0.9rem;
    padding: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Space out the sections */
    align-items: flex-start; /* Align the items at the top */
    flex-wrap: wrap; /* Ensure it wraps on smaller screens */
    gap: 20px; /* Add spacing between the sections */
}

.footer-about p,
.footer-links ul,
.footer-contact p {
    margin: 10px 0;
    line-height: 1.6;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    color: #FFF;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-contact a {
    color: #FFF;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Bottom Footer */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: #FFF;
    text-decoration: none;
    text-align: left;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.sticky-footer {
    position: fixed;
    left: 0;
    bottom: -60px; /* Start hidden */
    height: 10%;
    width: 100%;
    background-color: #ebeaea;
    color: white;
    text-align: center;
    z-index: 1000;
    display: flex;
    justify-content: space-evenly;
    padding: 10px 0;
    transition: bottom 0.3s ease-in-out;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
    border-top: 1px solid #D9D9D9;
    background: #FFF;
}


.social-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px; /* Adjust spacing between icons */
}

.social-icons ul li {
    display: inline-block;
}

.social-icons img {
    width: 40px; /* Adjust icon size */
    height: auto;
}


.social-icons a {
    text-decoration: none;
    margin-right: 10px;
}




/* Desktop Responsive Design */
@media (min-width: 768px) {
    footer{
        padding: 60px 200px; /* 60px top/bottom, 200px left/right on larger screens */
    }
    .sticky-footer {
        display: none;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    #site-footer {
        padding-bottom: 100px;

    }
    .footer-container {
        flex-direction: column;
    }

}



