/* ========================================
   NAVBAR VARIANTS - MODERN DESIGNS
   Khaliwork Custom Navbar Styles
======================================== */

/* ============ NAVBAR 04 - MODERN TRANSPARENT ============ */
.header-style-04 {
    position: relative;
    z-index: 999;
}

.navbar-area-04 {
    background: linear-gradient(135deg, rgba(97, 118, 246, 0.95), rgba(67, 97, 238, 0.95));
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-area-04.nav-fixed {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar-area-04.nav-fixed .navbar-nav-04 li a {
    color: #333 !important;
}

.logo-wrapper-04 .logo img {
    max-height: 45px;
    filter: brightness(0) invert(1);
}

.navbar-area-04.nav-fixed .logo-wrapper-04 .logo img {
    filter: none;
}

.navbar-nav-04 {
    gap: 30px;
}

.navbar-nav-04 li a {
    color: white !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav-04 li a:hover,
.navbar-nav-04 li a.active {
    color: #ffd700 !important;
}

.navbar-nav-04 li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.navbar-nav-04 li a:hover::after,
.navbar-nav-04 li a.active::after {
    width: 100%;
}

.navbar-toggler-04 {
    border: 2px solid white;
    color: white;
}

/* ============ NAVBAR 05 - CENTERED LOGO ============ */
.header-style-05 {
    position: relative;
    z-index: 999;
}

.navbar-area-05 {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #f0f0f0;
}

.logo-wrapper-05 .logo img {
    max-height: 55px;
}

.navbar-nav-05 {
    display: flex;
    gap: 25px;
    align-items: center;
}

.navbar-left-menu .navbar-nav-05 {
    justify-content: flex-end;
}

.navbar-right-menu .navbar-nav-05 {
    justify-content: flex-start;
}

.navbar-nav-05 li a {
    color: #333;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav-05 li a:hover,
.navbar-nav-05 li a.active {
    color: #6176f6;
}

.navbar-nav-05 li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 6px;
    height: 6px;
    background: #6176f6;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s ease;
}

.navbar-nav-05 li a:hover::before,
.navbar-nav-05 li a.active::before {
    transform: translateY(-50%) scale(1);
}

.navbar-nav-05-mobile {
    padding: 20px 0;
}

.navbar-nav-05-mobile li {
    margin-bottom: 10px;
}

.navbar-nav-05-mobile li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav-05-mobile li a:hover {
    background: #f8f9fa;
    color: #6176f6;
}

.navbar-toggler-05 {
    border: 2px solid #6176f6;
    color: #6176f6;
}

/* ============ NAVBAR 06 - MINIMAL WITH SEARCH ============ */
.header-style-06 {
    position: relative;
    z-index: 999;
}

.navbar-area-06 {
    background: white;
    padding: 15px 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e8e8e8;
}

.logo-wrapper-06 .logo img {
    max-height: 40px;
}

.navbar-search-06 {
    position: relative;
}

.search-wrapper-06 {
    display: flex;
    background: #f8f9fa;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-wrapper-06:focus-within {
    border-color: #6176f6;
    background: white;
    box-shadow: 0 3px 15px rgba(97, 118, 246, 0.15);
}

.search-input-06 {
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 14px;
    flex: 1;
}

.search-input-06:focus {
    outline: none;
    box-shadow: none;
}

.search-btn-06 {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn-06:hover {
    color: #6176f6;
}

.navbar-nav-06 {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar-nav-06 li a {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav-06 li a:hover,
.navbar-nav-06 li a.active {
    color: #6176f6;
}

.navbar-nav-06 li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #6176f6;
    transition: width 0.3s ease;
}

.navbar-nav-06 li a:hover::after,
.navbar-nav-06 li a.active::after {
    width: 100%;
}

.navbar-search-06-mobile {
    padding: 0 15px;
}

.navbar-nav-06-mobile {
    padding: 20px 15px;
}

.navbar-nav-06-mobile li {
    margin-bottom: 8px;
}

.navbar-nav-06-mobile li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav-06-mobile li a:hover {
    background: #f8f9fa;
    color: #6176f6;
}

.navbar-toggler-06 {
    border: 2px solid #6176f6;
    color: #6176f6;
}

/* ============ RESPONSIVE STYLES ============ */
@media (max-width: 991px) {
    .navbar-area-04,
    .navbar-area-05,
    .navbar-area-06 {
        padding: 12px 0;
    }
    
    .logo-wrapper-04 .logo img,
    .logo-wrapper-05 .logo img,
    .logo-wrapper-06 .logo img {
        max-height: 35px;
    }
}

@media (max-width: 767px) {
    .navbar-search-06 {
        margin-top: 10px;
    }
}

