body{
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    background: #ffffff;
}

/*
=================================
Top Bar
=================================
*/

.top-bar{
    background: linear-gradient(90deg,#006bda,#0052a8);
    color: #fff;
    font-size: 14px;
    padding: 9px 0;
}

.top-bar a{
    color: #fff;
    text-decoration: none;
    margin-right: 22px;
    font-weight: 500;
    transition: 0.3s;
}

.top-bar a:hover{
    opacity: 0.8;
}

.top-bar-right{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
}

/*
=================================
Main Header
=================================
*/

.main-header{
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar{
    min-height: 92px;
    padding: 10px 0;
}

/*
=================================
Logo
=================================
*/

.brand-logo{
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-icon{
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg,#0d6efd,#0056d6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 12px 24px rgba(13,110,253,0.25);
}

.brand-text{
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
}

.brand-text span{
    color: #ff8c00;
}

/*
=================================
Navbar Links
=================================
*/

.navbar-nav{
    gap: 10px;
}

.navbar-nav .nav-link{
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 14px !important;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover{
    color: #0d6efd;
}

.navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    left: 14px;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #0d6efd;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after{
    width: calc(100% - 28px);
}

/*
=================================
Header Actions
=================================
*/

.header-actions{
    display: flex;
    align-items: center;
    gap: 15px;
}

/*
=================================
Modern Search Box
=================================
*/

.modern-search{
    height: 58px;
    min-width: 250px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 22px;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.modern-search:hover{
    background: #fff;
    border-color: #0d6efd;
    box-shadow: 0 10px 25px rgba(13,110,253,0.12);
}

.modern-search i{
    color: #0d6efd;
    font-size: 18px;
}

.search-placeholder{
    color: #94a3b8;
    font-size: 15px;
    font-weight: 500;
}

/*
=================================
Buttons
=================================
*/

.header-btn{
    height: 58px;
    padding: 0 28px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s;
}

.primary-btn{
    background: linear-gradient(135deg,#0d6efd,#0056d6);
    color: #fff;
    box-shadow: 0 10px 25px rgba(13,110,253,0.22);
}

.primary-btn:hover{
    transform: translateY(-2px);
    color: #fff;
}

.secondary-btn{
    background: #eef5ff;
    color: #0d6efd;
}

.secondary-btn:hover{
    background: #0d6efd;
    color: #fff;
}

/*
=================================
Search Popup
=================================
*/

.search-popup{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.96);
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-popup.active{
    display: flex;
}

.search-box{
    width: 100%;
    max-width: 850px;
    position: relative;
}

.search-box input{
    width: 100%;
    height: 80px;
    border-radius: 22px;
    border: none;
    padding: 0 85px 0 35px;
    font-size: 22px;
    outline: none;
    background: #fff;
}

.search-submit{
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #0d6efd;
}

.close-search{
    position: absolute;
    top: 35px;
    right: 45px;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
}

/*
=================================
Navbar Toggler
=================================
*/

.navbar-toggler{
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #f3f6fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
=================================
Responsive
=================================
*/

@media(max-width:1199px){

    .navbar-collapse{
        padding-top: 25px;
    }

    .navbar-nav{
        gap: 5px;
    }

    .header-actions{
        margin-top: 25px;
        flex-direction: column;
        align-items: stretch;
    }

    .modern-search{
        width: 100%;
    }

    .header-btn{
        width: 100%;
    }
}

@media(max-width:991px){

    .brand-text{
        font-size: 26px;
    }

    .search-box input{
        height: 68px;
        font-size: 18px;
    }
}

@media(max-width:767px){

    .top-bar{
        text-align: center;
    }

    .top-bar .d-flex{
        flex-direction: column;
        gap: 6px;
    }

    .brand-text{
        font-size: 22px;
    }

    .brand-icon{
        width: 46px;
        height: 46px;
    }
    .brand-logo{
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-image{
    width: 55px;
    height: auto;
    object-fit: contain;
}

.brand-text{
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
}

.brand-text span{
    color: #ff8c00;
}

    .modern-search{
        min-width: 100%;
        height: 54px;
    }

    .search-box input{
        height: 62px;
        font-size: 16px;
        border-radius: 16px;
    }

    .close-search{
        top: 20px;
        right: 20px;
        font-size: 34px;
    }

    .navbar{
        min-height: 80px;
    }
}