body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #7b2cff;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.top-bar .container,
.header-flex {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.main-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

/* Logo */
.logo img {
    height: 45px;
    width: 90px;
    object-fit: contain;
}

/* Menu */
.menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Search */
.search-box {
    position: relative;
    border: 1px solid #ff6a00;
    border-radius: 100px;
}

.search-box input {
    padding: 8px 12px;
    width: 100%;
    border: 0;
    border-radius: 100px;
}

#searchResults {
    position: absolute;
    top: 40px;
    left: 0;
    width: 250px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
}

.logo {
    width: 10%;
}

nav.menu {
    width: 55%;
}

.search-box {
    width: 20%;
}

.cta {
    width: 10%;
    float: right;
}

/* Button */
.btn {
    background: #ff6a00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    /* width: 100% !important; */
    display: block;
    text-align: center;
}
/* TOGGLE BUTTON */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    padding: 20px;
    transition: 0.3s;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

/* Tabs */
.tabs {
    display: flex;
    margin-bottom: 15px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: #eee;
    cursor: pointer;
}

.tab-btn.active {
    background: #7b2cff;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Menu list */
.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin-bottom: 10px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #333;
}

.search-box {
    position: relative;
}

.search-box input {
    padding-right: 40px;
    width: 100%;
}

.search-icon {
    position: absolute;
    right: 3px;
    top: 51%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #ffffff;
    background-color: #ff6a00;
    height: 35px;
    width: 38px;
    border-radius: 100px;
    line-height: 0;
}

.search-icon:hover {
    color: #000;
}

.for-cls,
.tgl-mnu {
    display: none;
}

/* RESPONSIVE */
@media(max-width: 992px) {

    .for-cls,
    .menu-toggle {
        display: block;
    }
    
    .tgl-mnu {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        align-items: center;
        display: block;
        display: flex;
}
.search-box{
    width: 50%;
}

}

/* RESPONSIVE */
@media(max-width: 992px) {

    .search-box input { width: 140px; }
    .main-header{
        display: none;
    }
}

@media(max-width: 600px) {
    .header-flex {
        flex-direction: column;
        gap: 10px;
    }
}