/* ========== HEADER ========== */

.salman-header {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #fff;
    padding: 12px 20px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.salman-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.salman-header .header-widget {
    flex: 1;
}

/* Make sure widgets don't overflow */
.salman-header .header-widget > * {
    max-width: 100%;
}


/* ========== FOOTER ========== */

.salman-footer {
    background: #fff;
    padding: 50px 20px 30px;
}

.salman-footer-widgets {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
	justify-content:center;
}

.salman-footer .footer-col {
    flex: 1 1 100%);
}


.salman-footer-copy {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;

}


/* ========== RESPONSIVE ========== */

@media (max-width: 992px) {
    .salman-header-inner {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .salman-footer .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 576px) {
    .salman-footer .footer-col {
        flex: 1 1 100%;
    }

    .salman-header {
        padding: 10px 15px;
    }
}
