/* Footer */
.footer {
    background-color: #282828;
    color: #fff;
    padding: 40px 20px  !important;
    display: flex  !important;
    justify-content: center !important; /* Center columns in the footer */
}

.footer-content {
    display: flex;
    gap: 80px; /* Space between each column */
    /* max-width: 1000px; Set a max width for central alignment */
    justify-content: space-between;
}

.footer-column {
    width: 180px; /* Adjust width as needed */
}

.h4footer {
    font-size: 16px;
    text-align: left;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ff6701;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ccc;
}

.footer-column p {
    font-size: 14px;
    margin: 5px 0;
    line-height: 1.6;
}
.app-download-section {
    text-align: center;
    padding: 20px 0;
    background-color: #f8f8f8;
}

.app-download-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.app-icons {
    display: flex;
    justify-content: center;
    align-items: left;
    gap: 15px;
}

.app-icons img {
    width: 117px;
    height: 32px;
}

.trending-section {
    margin-top: 30px;
}

.trending-section h4 {
    color: #ff6701;
    margin-bottom: 15px;
}

.left-links1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trending-links {
    display: flex;
    justify-content: flex-start;  /* Align links to the left */
    gap: 20px;
    flex-wrap: wrap;  /* Allow the links to wrap into multiple lines if needed */
}

.trending-links a {
    color: #ccc;
    text-decoration: none;  /* Remove default underline */
    font-size: 14px;
    padding: 1px;
    border-bottom: 1px solid #595959;  /* Add a permanent top border as underline */
    margin-top: 3px;  /* Add a top margin to the underline */
    margin-right: 15px;
}


.trending-links a:hover {
    color: #ff6701;
    border-bottom: 1px solid #aaa; /* Grey underline on hover */
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-column {
        width: 100%; /* Full width on small screens */
        text-align: center;
    }
}
/* App Download Section */
