/* sticky-banner.css */
.sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

a.banner-item:link, a.banner-item:active, a.banner-item:visited {
    text-align: center;
    flex: 1;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--c1-color);
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    transition: all 0.5s ease;
    box-sizing: border-box;
}

a.banner-item:hover {
    background: var(--c2-color);
}

.banner-item .icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.social-section {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 60px; /* Place above the sticky banner */
    left: 0;
    width: 100%;
    background: var(--c1-color);
    color: #fff;
    text-align: center;
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.social-icons a:link, .social-icons a:active, .social-icons a:visited {
    color: #fff !important;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--c1-color);
}
.iconColor {
    color: #fff !important;
}

@media (min-width: 768px) {
    .social-section {
        display: none; /* Hide on larger screens */
    }
    .sticky-banner {
        display: none; /* Hide on larger screens */
    }
}
