.site-footer {
    background-color: #ede8f5;
    padding: 30px 0;
    color: #3d52a0;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr min-content 1fr min-content 1fr; /* Adjusted grid to include bars */
    gap: 20px; /* Reduced gap for compact look */
    padding: 0 20px;
    align-items: center; /* Vertically center */
}

.footer-logo, .footer-info, .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bar {
    width: 2px; /* Narrower width */
    background-color: #8697ca; /* Bar color */
    height: 80%; /* Reduced height for better alignment */
    align-self: center; /* Center bars vertically */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow */
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    max-width: 100px;
    margin-bottom: 10px;
}
.footer-logo span{
    padding-top: 10px;
}
.footer-info {
    text-align: center;
    
}
.footer-info p{
    padding: 10px;
}
.footer-info p, .footer-links a, .social-icons a {
    color: #000000;
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 6px 0;
}

.footer-links a {
    color: #000000;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
   
}

.social-icons a {
    font-size: 20px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-links li {
        margin: 10px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #3d52a0;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: none; /* Hide initially */
    z-index: 999;
    transition: opacity 0.3s;
}

.back-to-top:hover {
    background-color: #283573;
}

