/* ===================== SISAT Critical Header CSS ===================== */

.whb-header {
    min-height: 70px;
}


/* Header Row */
.whb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Columns for logo, search, and contact */
.whb-column {
    display: flex;
    align-items: center;
}

.site-logo img {
    width: 200px;
    height: 50px; /* مطابق HTML */
    display: block;
}


.wd-search-form input[type="text"] {
    width: 100%;
    padding: 8px;
    font-size: 14px;
}

.wd-search-form button {
    background-color: #ff6f31;
    color: #fff;
    padding: 8px;
    font-size: 14px;
}

/* Mobile Specific Styles */
@media (max-width: 1024px) {
    .whb-row {
        flex-direction: column;
    }

    .whb-column .site-logo img {
        max-width: 160px;
    }
}

/* Mobile-specific Header Menu */
.whb-column-mobile {
    display: none;
}
@media (max-width: 768px) {
    .whb-column-mobile {
        display: block;
    }
}

/* Header Bottom Menu */
.whb-header-bottom {
    display: flex;
    justify-content: space-between;
}

.wd-header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.wd-header-nav li {
    margin-right: 15px;
}

.wd-header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
