
/* Footer */
/* footer {
    background-color: var(--base-color) !important;
    text-align: center;
    padding: 0 0 40px 0;
    margin-top: 60px;
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5em;
}

.footer-links a, .social-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color) !important;
}

footer p {
    color: #343434;
} */




footer {
    background-color: var(--base-color);
    /* Dark gradient background */
    color: #eee;
    padding: 40px 0 20px;
    /* Increased padding */
    margin-top: 60px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Responsive grid */
    gap: 30px;
}

.footer-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--text-color);
}

.footer-info p {
    color: var(--text-color);
}

.footer-info img {
    width: 6em;
    height: auto;
    background-color: black;
    padding: 0.7em;
    border-radius: 10px;
}

.social-links {
    display: flex;
}

.social-links a {
    margin-right: 15px;
    font-size: 1.2em;
    color: #eee;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
    /* Example hover color */
}

.footer-links h4,
.footer-newsletter h4,
.footer-features h4,
.footer-connect h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    border-bottom: 1px solid #272727bd;
    /* Separator */
    padding-bottom: 5px;
    color: var(--text-color);
}

.footer-newsletter p {
    color: var(--text-color);
}

.footer-links a,
.footer-connect a,
.footer-features a {
    display: block;
    /* Make links stack vertically */
    margin-bottom: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-connect a:hover {
    color: var(--accent-color);
}

.footer-features a:hover {
    color: var(--accent-color);
}

.footer-newsletter input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #272727bd;
    background-color: rgb(255, 255, 255, 0.1);
    color: var(--text-color);
    border-radius: 5px;
    outline: none;
}

.footer-newsletter button {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-connect a {
    display: flex;
    gap: 1em;
    align-items: center;
}

/* .footer-newsletter button:hover {
    background-color: #0056b3;
} */

.bottom-bar {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #272727bd;
    margin-top: 30px;
}

.copyright {
    font-size: 0.9em !important;
    color: #343434 !important;
}


@media (max-width: 786px) {
    .footer-info, .footer-links, .footer-connect, .footer-features {
        text-align: center;
    }

    .footer-connect a {
        justify-content: center;
    }
}