body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafb;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    position: sticky;
    width: auto;
    padding: 10px;
    top: 0rem;
    z-index: 1;
    /* margin-bottom: 20px; */
}
header .container {
    display: flex;
    justify-content: space-between;
    /* width: 100%; */
}
.logo {
    font-size: 36px;
    font-weight: 700;
    color: #3b82f6;
    height: 50px;
}

.logo img {
    height: 50px;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
nav {
    display: flex;
    align-items: center;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
}
nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #3b82f6;
}
.search-icon {
    font-size: 20px;
    cursor: pointer;
    margin-left: 30px;
}
.search-panel {
    position: absolute;
    top: 60px;
    right: 30px;
    background: white;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    border-radius: 5px;
}
.search-panel input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 220px;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
                vertical-align: middle;
        align-items: center;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background: white;
        width: 100%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        text-align: center;
        padding: 10px 0;
    }
}

footer {
    background: #1e293b;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    width: auto;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer ul li {
    display: inline;
    margin: 0 15px;
}
footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}
footer ul li a:hover {
    color: #3b82f6;
}

@media (max-width: 767px) {
    .container .tint-category .widget {
        width: calc((100% - 50px) / 1);
        margin: 10px auto;
    }

    .heading_text {
        padding: 20px;
        width: auto !important;
    }

    .container {
       
        width: auto;;
    }

    header .container {
        padding: 0;
    }
}