/* New Header Style - Layout Only, Keeping Original Colors */

/* Top Bar Styles */
.header-new-style .header-top-bar {
    background-color: #1686d9;
    padding: 3px 0;
    color: #ffffff;
}

.header-new-style .top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-new-style .top-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-new-style .top-contact-item {
    color: #fff;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-new-style .top-contact-item i {
    font-size: 20PX;
}

.header-new-style .top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-new-style .top-social {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-new-style .top-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.header-new-style .top-social a:hover {
    color: #E73944;
}

.header-new-style .language-dropdown {
    position: relative;
}

.header-new-style .language-select {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 25px 5px 10px;
    font-size: 15px;
    border-radius: 3px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 16px;
}

.header-new-style .language-select:focus {
    outline: none;
    border-color: #E73944;
}

.header-new-style .language-select option {
    background: #1a3a52;
    color: #fff;
}

/* Main Header Styles */
.header-new-style .header-main {
    position: relative;
    background-color: #ffffff;
    padding: 0px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.header-new-style .logo-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    float: none !important;
}

.header-new-style .logo img {
    max-height: 200px;
    max-width: 100px;
    display: block;
}

/* Contact Info Container */
.header-new-style .header-contact-info {
    display: flex;
    align-items: center;
    gap: 40px;
    float: none !important;
}

.header-new-style .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-new-style .contact-item i {
    font-size: 24px;
    color: #E73944;
    flex-shrink: 0;
}

/* Special styling for location pin icon */
.header-new-style .contact-item i.location-pin {
    font-size: 28px;
    color: #E73944;
    margin-top: -2px;
}

.header-new-style .contact-text {
    display: flex;
    flex-direction: column;
}

.header-new-style .contact-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    display: block;
    text-align: left;
}

.header-new-style .contact-text strong {
    font-size: 14px;
    color: #E73944;
    font-weight: 700;
    line-height: 1.3;
}

.header-new-style .contact-text strong a {
    color: inherit;
    text-decoration: none;
}

.header-new-style .contact-text strong a:hover {
    color: #333;
}

.header-new-style .header-lower {
    background: #333;
    position: relative;
}

.header-new-style.main-header .header-lower {
    position: relative !important;
    top: auto !important;
}

.header-new-style .nav-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none !important;
}

.header-new-style .main-menu {
    flex: 1;
    float: none !important;
}

.header-new-style .navigation {
    margin: 0;
    padding: 0;
}

.header-new-style .navigation > li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.header-new-style .navigation > li > a {
    display: block;
    padding: 20px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.header-new-style .navigation > li:hover > a,
.header-new-style .navigation > li.current > a {
    background:  #ff0000;
;
    color: #fff;
}

.header-new-style .btn-box {
    margin-left: 20px;
}

.header-new-style .btn-box .theme-btn {
    background: #ff0000;
;
    color: #fff;
    padding: 15px 30px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header-new-style .btn-box .theme-btn:hover {
    background: #fff;
    color: #ff0000;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .header-new-style .header-contact-info {
        gap: 25px;
    }
    
    .header-new-style .contact-item i {
        font-size: 20px;
    }
    
    .header-new-style .contact-label {
        font-size: 10px;
    }
    
    .header-new-style .contact-text strong {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .header-new-style .top-left {
        gap: 15px;
    }
    
    .header-new-style .top-contact-item {
        font-size: 12px;
    }
    
    .header-new-style .top-right {
        gap: 15px;
    }
    
    .header-new-style .language-select {
        font-size: 12px;
        padding: 4px 20px 4px 8px;
    }
    
    .header-new-style .header-inner {
        flex-wrap: wrap;
    }
    
    .header-new-style .header-contact-info {
        width: 100%;
        margin-top: 15px;
        justify-content: center;
        gap: 20px;
    }
    
    .header-new-style .navbar-toggle {
        background: #E73944;
        border: none;
        padding: 10px 12px;
        margin: 15px 0;
    }
    
    .header-new-style .navbar-toggle .icon-bar {
        background: #fff;
    }
    
    .header-new-style .navigation {
        display: none;
    }
    
    .header-new-style .navbar-collapse.in .navigation {
        display: block;
    }
    
    .header-new-style .navigation > li {
        display: block;
        border-bottom: 1px solid #444;
    }
    
    .header-new-style .navigation > li > a {
        padding: 15px 20px;
    }
}

/* Sticky Header Fixes */
.header-new-style .sticky-header .auto-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.header-new-style .sticky-header .logo {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    padding: 5px 0 !important;
}

.header-new-style .sticky-header .logo img {
    display: block !important;
    max-height: 100px !important;
    width: auto !important;
}

.header-new-style .sticky-header .right-col {
    float: none !important;
    display: flex !important;
    align-items: center !important;
}

.header-new-style .sticky-header .main-menu {
    float: none !important;
}

.header-new-style .sticky-header .navigation {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

.header-new-style .sticky-header .navigation > li {
    display: inline-block !important;
    margin: 0 !important;
}

.header-new-style .sticky-header .navigation > li > a {
    padding: 12px 15px !important;
    display: block !important;
    line-height: 1.2 !important;
}

@media (max-width: 767px) {
    .header-new-style .header-top-bar {
        padding: 8px 0;
    }
    
    .header-new-style .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-new-style .top-left {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .header-new-style .top-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-new-style .header-contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-new-style .contact-item {
        width: 100%;
        justify-content: center;
    }
}
