﻿/*==================================================
HEADER
==================================================*/

#site-header {
    position: relative;
    width: 100%;
    z-index: 9999;
    background: #fff;
}

.main-header {
    background: #fff;
    position: relative;
    transition: all .35s ease;
}

    .main-header.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        animation: headerSlide .35s ease;
        box-shadow: 0 10px 40px rgba(0,0,0,.08);
        backdrop-filter: blur(14px);
    }

@keyframes headerSlide {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
/*==================================================
TOP BAR
==================================================*/

.top-bar {
    background: var(--primary);
    color: #fff;
    height: 42px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar a {
    color: #fff;
}

    .top-bar a:hover {
        opacity: .85;
    }

.divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,.25);
}

.top-bar i {
    margin-right: 6px;
}
/*==================================================
NAVIGATION
==================================================*/

.navbar-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    width: 260px;
}

    .navbar-brand img {
        width: 100%;
        max-width: 240px;
    }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

    .nav-menu > li {
        position: relative;
    }

.nav-link-custom {
    position: relative;
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 34px 0;
}

    .nav-link-custom:hover {
        color: var(--primary);
    }

    .nav-link-custom.active {
        color: var(--primary);
    }
    .nav-link-custom::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 26px;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: .3s;
    }

    .nav-link-custom:hover::after {
        width: 100%;
    }

    .nav-link-custom.active::after {
        width: 100%;
    }
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.search-box {
    display: flex;
    align-items: center;
    width: 240px;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 18px;
}

    .search-box i {
        color: #888;
    }

    .search-box input {
        border: none;
        outline: none;
        margin-left: 10px;
        width: 100%;
        font-size: 14px;
        background: none;
    }
.mobile-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}
.btn-primary-custom {
    box-shadow: 0 12px 30px rgba(11,61,145,.15);
}

    .btn-primary-custom:hover {
        box-shadow: 0 18px 40px rgba(11,61,145,.22);
    }
.main-header {
    border-bottom: 1px solid rgba(0,0,0,.04);
}