/* --- Main Footer Styling --- 
.site-footer {
    background-color: #0080ff;
    color: #333;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    border-top: 1px solid #e7e7e7;
}*/
.footer-main{
    background-color: #1b1b1b;
}

/* --- Section 1: Logo --- */
.footer-logo-container {
    max-width: 150px;
    height: auto;
    text-align: center; /* Center the logo */
    margin-bottom: 40px; /* Space between logo and columns */
    margin: 0 auto;
}

.footer-logo {
    max-width: 150px; /* Adjust size as needed */
    height: 150px;
    display: block;
    margin: 0 auto;
}

/* --- Section 2: Columns --- */
.footer-columns-container {
    display: flex;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
    justify-content: space-between; /* Distributes columns evenly */
    gap: 20px; /* Space between columns */
    max-width: 1200px;
    margin: 0 auto; /* Center the columns container */
    padding-bottom: 40px;
    border-bottom: 1px solid #e7e7e7; /* Line below columns */
    background-color: #1b1b1b;
}

.footer-column {
    flex: 1; /* Allows columns to grow and shrink */
    min-width: 150px; /* Prevents columns from getting too narrow */
    padding: 0 10px;
    background-color: #1b1b1b;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0056b3; /* A blue color for headings */
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #0056b3; /* Highlight on hover */
    text-decoration: underline;
}

/* --- Social Media Icons --- */
.footer-socials {
    margin-top: 15px;
}

.footer-socials a {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    color: #333;
}

.footer-socials a:hover {
    color: #0056b3;
}

/*centering the to top button*/
.to-top-container {
    width: 50px; /* Or whatever width you prefer */
    margin: 0 auto;
    text-align: center; /* To ensure the content is centered */
}

.copyright-text {
    color: white;
    text-align: center;
    margin: 0;
    padding-bottom: 10px;
}