/* public/assets/css/new_header_style.css */

:root {
    --header-bg: #1a2035;
    --primary-blue: #0d6efd;
    --white-color: #ffffff;
    --live-red: #ff0000;
}

/* V3 Styles */
.new-header-v3 {
    background-color: #1a2035;
    padding: 1rem 0;
}

.new-header-v3 .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.new-header-v3 .left-section {
    display: flex;
    align-items: center;
}

.new-header-v3 .left-section .logo-icon {
    color: #ffd700; /* Golden icon */
    font-size: 2rem;
    margin-right: 0.5rem;
}

.new-header-v3 .left-section .navbar-brand {
    color: var(--white-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.new-header-v3 .center-section {
    background-color: var(--white-color);
    border-radius: 50px;
    padding: 0.5rem 1rem;
}

.new-header-v3 .center-section .navbar-nav {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.new-header-v3 .center-section .nav-link {
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 1rem;
}

.new-header-v3 .right-section {
    display: flex;
    align-items: center;
}

.new-header-v3 .right-section .btn-round {
    background-color: transparent;
    border: 1px solid var(--white-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
    padding: 10px;
}

.new-header-v3 .right-section .btn-round i {
    color: var(--white-color);
}

.new-header-v3 .right-section .lang-btn {
    font-weight: 700;
    text-transform: uppercase;
}

.new-header-v3 .center-section .nav-link:hover {
    color: white;
}

.new-header-v3 .right-section .btn-round:hover {
    background-color: #f0f0f0;
}

.new-header-v3 .center-section {
    background-color: var(--white-color);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    position: relative;
}

.new-header-v3 .center-section:hover::before {
    left: 0;
}

.new-header-v3 .center-section .navbar-nav {
    position: relative;
    z-index: 1;
}

.new-header-v3 .center-section .navbar-nav {
    position: relative;
    z-index: 1;
}


.new-header-v3 .center-section .highlight {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-color: #006f91;
    border-radius: 50px;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

.offcanvas-body .nav-link {
    position: relative;
    overflow: hidden;
    color: #1a2035;
    background-color: transparent !important;
}

.offcanvas-body .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -105%;
    width: 100%;
    height: 100%;
    background-color: #006f91;
    transition: left 0.5s cubic-bezier(0.8, 0, 0, 0.8);
    z-index: -1;
    transform: skewX(-30deg);
}

.offcanvas-body .nav-link:hover::before {
    left: -5%;
}

.offcanvas-body .nav-link:hover {
    color: white;
}