/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
} */

.header {
    background: linear-gradient(135deg, #000000 50%, #ffcc00 50%);
    color: white;
    padding: 20px 10px;
    text-align: center;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sign-in-button {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
}

.search-container {
    margin: 20px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1032px;
    margin: 0 auto;
}

.search-container h2 {
    margin: 10px 0;
    position: relative;
    z-index: 1;
}

.search-container input {
    padding: 10px;
    width: 80%;
    max-width: 600px;
    border: none;
    border-radius: 20px;
    z-index: 1;
    position: relative;
}

.main-content {
    padding: 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.order-help-button {
    background-color: #000;
    color: #fff !important;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 20px;
    margin: 20px 0;
    
}
.help-button{
    color: #fff !important;
}

.nav-tabs {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    border-bottom: 2px solid transparent;
    margin: 0 10px;
}

.tab.active {
    border-bottom: 2px solid #000;
}

.featured-articles {
    margin-top: 20px;
}

.featured-articles h3 {
    margin-bottom: 20px;
}

.articles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.article {
    background-color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: calc(33% - 40px);
    box-sizing: border-box;
}
.query-content{
    position: relative;
    background-color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: calc(96% - 40px);
    box-sizing: border-box;
}
.query-content h6{
    font-size: medium;
    font-weight: 900;
}

.header-content h1,
.search-container h2 {
    position: relative;
    z-index: 1;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffcc00 50%, #000000 50%);
    z-index: 0;
}

.header-content, .search-container {
    position: relative;
    z-index: 1;
}

.header-content h1 {
    background: linear-gradient(135deg, #000000 50%, #080808 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-container h2 {
    background: linear-gradient(135deg, #000000 50%, #020202 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* .contact-us{
    background: linear-gradient(135deg, #000000 49%, #ffcc00 48%) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    /* position: fixed; */
    width: 100%;
    bottom: 0;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    /* background-color: #000000; */
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    line-height: 25px;
}

.close-btn:hover {
    background-color: #0e0d0d;
    color: rgb(255, 255, 255);
}
.contact-us-content{
    font-size: xx-large;
    font-weight: 500;
    margin-right: 180px;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .header-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .sign-in-button {
        padding: 10px 20px;
        margin-bottom: 10px;
    }

    .search-container input {
        width: 90%;
    }

    .article {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .article {
        width: calc(100% - 20px);
    }
}
