.center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center; /* Center content vertically */
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px; /* Adjust height to fit the smaller header */
}

.header-top-buttons .dropdown {
    position: relative;
}

/* Search Box Style */
.search-container {
    background: linear-gradient(to right, #cc3600, #ffece6);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.search-container .form-control,
.search-container .form-select {
    margin-right: 10px;
}

.search-container .btn {
    background-color: #04495E;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}

.search-container .btn:hover {
    background-color: #e63d00;
}

/* ================== Header Common ============================ */
.Header {
    background: linear-gradient(to right, #04495E, #011d25);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    height: 175px; /* Adjust this as needed */
    position: sticky;
    top: 0; /* This makes the header stick to the top */
    z-index: 1000; /* Ensures the header stays above other content */
}
.Header2 {
    background: linear-gradient(to right, #04495E, #011d25);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    height: 75px; /* Adjust this as needed */
    position: sticky;
    top: 0; /* This makes the header stick to the top */
    z-index: 1000; /* Ensures the header stays above other content */
}
.headerTop {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 45px;
    width: auto;
}
.headerTop .dropdown {
    display: inline;
}
.headerTopBtns i {
    margin: 0px 6px;
}

.myAccountDropdown::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, .15);
    border-left: 1px solid rgba(0, 0, 0, .15);
}

.myAccountDropdown {
    padding: 10px 0px;
    box-shadow: 0 3px 10px 1px rgb(0 0 0 / 5%);
    width: 240px;
    left: 0px;
}

.droplink {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #565656;
}

.droplink, .droplink * {
    font-size: 14px;
    font-weight: 600;
}

.new:hover {
    color: #0d6efd !important;
    cursor: pointer;
    background-color: rgb(226, 226, 226);
}

.lang_img {
    width: 24px;
    height: auto;
    transition: transform 0.3s ease; 
}
.lang-box {
    background-color: #e63d00;
    color: red;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
}

