#main-footer-new {
    /* Applying Glassmorphism */
    background: rgba(20, 20, 20, 0.5); /* Dark, semi-transparent base */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    
    color: rgba(255, 255, 255, 0.7); /* Softer text color for paragraphs/links */
    padding: 60px 0 0;
    font-family: 'Poppins', sans-serif;
    position: relative; /* Ensures footer stacks correctly */
    z-index: 10;
}

[data-theme="light"] #main-footer-new {
    /* In light mode, a dark footer still looks best for this design */
    background: rgba(30, 30, 30, 0.7); 
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] #main-footer-new {
     background: rgba(18, 18, 18, 0.5); /* Even darker for dark mode */
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: rgba(255, 255, 255, 0.7);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    /* Updated to a more subtle border color */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff; /* Brighter color for headings */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); /* Use rgba for consistency */
    transition: color 0.3s ease, transform 0.3s ease; /* Updated transition */
}

.footer-column ul a:hover {
    color: var(--primary-color); /* Hover color is primary purple */
    transform: translateX(5px); /* Modern indent effect */
}

/* Contact Info Column */
.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info i {
    font-size: 1rem;
    margin-right: 15px;
    margin-top: 5px;
    width: 20px;
    color: var(--primary-color);
}

.contact-info a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); /* Use rgba for consistency */
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color); /* Hover color is primary purple */
}

/* Social Links */
.footer-social-links {
    margin-top: 25px;
}

.footer-social-links a {
    color: rgba(255, 255, 255, 0.7); /* Use rgba for consistency */
    font-size: 1.4rem;
    margin-right: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5); /* More subtle color */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }

    .footer-column ul a:hover {
        transform: translateX(0); /* Disable indent on mobile */
    }
}