	/* Sticky section css start */

/* Sticky Mobile Bar */
.optixmobilesticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 8px 0;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    border-top: 2px solid #f4f4f4;
    display: none; /* Hide by default */
}

/* Show only on mobile */
@media (max-width: 768px) {
    .optixmobilesticky {
        display: block;
    }
}

/* Flexbox for equal spacing */
.optixmobilesticky .row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    padding: 5px 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
}

/* Button Styling */
.optixmobilesticky a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Button Icons */
.optixmobilesticky img {
    width: 35px;
    height: auto;
    margin-bottom: 5px;
}

/* Column styling for equal distribution */
.optixmobilesticky .col-md-3 {
    flex: 1;
    padding: 5px;
}

/* Hover Effect */
.optixmobilesticky a:hover {
    color: #007bff;
}