

/* navbar section code  */
.navbar-brand i {
    color: red;
    font-style: normal;
}
.nav-item .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    margin-right: 10px;
}
.signup-btn {
    background-color: #f44336;
    color: #fff;
    border-radius: 5px;
    padding: 5px 12px;
    font-weight: bold;
}
.icon-dots {
    font-size: 1.4rem;
    cursor: pointer;
    margin-left: 10px;
}


/* footer section code */
.site-footer {
    background-color: #f8f9fa; /* Very light grey, adjust as needed */
    padding: 40px 0 20px;
    color: #555;
    font-size: 0.9rem;
}

.container {
    /* Basic container, adjust if using a framework */
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.footer-main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 180px; /* Ensure columns don't get too narrow */
    margin-bottom: 20px; /* For stacking on small screens */
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: bold;
    color: #e5332a; /* Red color for headings */
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #333; /* Darker grey for links */
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e5332a; /* Red hover for links */
}

.footer-app-badges {
    margin-top: 10px;
}

.app-badge img {
    height: 40px; /* Adjust as needed */
    margin-right: 10px; /* Space between badges if they were side-by-side */
    margin-bottom: 10px; /* Space if they stack */
    display: inline-block;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
}

.footer-bottom-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #6c757d; /* Slightly lighter grey for bottom bar text */
}

.language-btn {
    background: none;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    color: #555;
}
.language-btn .icon-globe,
.language-btn .icon-arrow-down {
    margin-right: 5px;
}

.footer-copyright {
    text-align: center; /* Center on smaller screens when it wraps */
}

.footer-social-and-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.footer-social-icons li a img {
    height: 20px; /* Adjust icon size */
    width: 20px; /* Adjust icon size */
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.footer-social-icons li a:hover img {
    opacity: 1;
}

.show-hidden-icons-btn {
    background-color: #343a40; /* Dark background for button */
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
}
.show-hidden-icons-btn:hover {
    background-color: #23272b;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-column {
        min-width: calc(50% - 20px); /* Two columns on medium screens */
    }
    .footer-column:last-child .footer-app-badges {
        /* Align app badges to start of column if they wrap weirdly */
        /* justify-content: flex-start; */
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .footer-main-content {
        flex-direction: column; /* Stack columns */
    }
    .footer-column {
        min-width: 100%; /* Full width for columns */
        text-align: center; /* Center text in columns */
    }
    .footer-links {
        display: inline-block; /* Allow centering of ul */
        text-align: left; /* Re-align list items left */
    }
    .footer-app-badges {
        text-align: center;
    }
    .footer-app-badges .app-badge img {
        margin-right: 5px;
        margin-left: 5px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 10px;
    }
    .footer-copyright {
        order: 1; /* Copyright first on mobile stack */
    }
    .footer-language-selector {
        order: 2;
    }
    .footer-social-and-toggle {
        order: 3;
        flex-direction: column; /* Stack social icons and toggle button */
    }
}
