/* 🌙 Footer Styles */
.footer {
    background: #1c1c1e;
    color: white;
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #00c9ff, #92fe9d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.footer-tagline {
    font-size: 1rem;
    color: #ccc;
    margin-top: 5px;
    line-height: 1.6;
}

.footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-right h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffffcc;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00c9ff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-bottom hr {
    border: none;
    border-top: 1px solid #555;
    margin-bottom: 10px;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }

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