/* Header Styles - Improved UI/UX */

/* Global header styles */
header {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

/* Logo styling */
.logo-transform {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
}

.logo-transform img {
    width: 130px;
    height: auto;
    max-height: 60px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.logo-transform img:hover {
    transform: scale(1.05);
}

/* Header bottom info section */
.header__bottom-info {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.header__info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.header__info-item {
    display: flex;
    align-items: center;
    margin-left: 30px;
    transition: all 0.3s ease;
}

.header__info-item:hover .header__info-icon,
.header__info-item:hover .header__info-text h5 a {
    color: #4361ee;
}

.header__info-icon {
    margin-right: 10px;
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
}

.header__info-text h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.header__info-text h5 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Phone number color fix */
.header__info-text h5 a.color {
    color: #333 !important;
}

.header__info-text h5 a.color:hover {
    color: #4361ee !important;
}

/* Menu area styling - Improved alignment */
.menu-area {
    background: #000;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.menu-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.main-menu {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-menu ul {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu ul li {
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.main-menu ul li:first-child {
    margin-left: 0;
}

.main-menu ul li:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #4361ee;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-menu ul li:hover:after {
    width: 80%;
}

.main-menu ul li a {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    padding: 0;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: 60px;
}

.main-menu ul li a span {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    line-height: normal;
}

.main-menu ul li a:hover {
    color: #4361ee;
}

/* Tracking button styling - Improved alignment */
.btn_track {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 25px;
}

.btn_track a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #4361ee;
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn_track a:hover {
    background-color: #1a46e5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.btn_track a svg {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn_track a span {
    display: inline-block;
}

/* Sticky menu styling - Improved alignment */
.sticky-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 5px 0;
    visibility: visible;
    opacity: 1;
}

.sticky-area .logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.sticky-area .logo img {
    width: 90px;
    height: auto;
    margin: 5px 0;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.sticky-area .logo img:hover {
    transform: scale(1.05);
}

.sticky-area.menu-sticky {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.sticky-area.menu-hidden {
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
}

.sticky-area .menu-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
}

.sticky-area .main-menu {
    height: 100%;
        margin-left: auto !important;
    margin: inherit;
}

.sticky-area .main-menu ul {
    height: 100%;
    display: flex;
    align-items: center;
        gap: 20px;
}

.sticky-area .main-menu ul li {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-area .main-menu ul li:after {
    bottom: 12px;
}

.sticky-area .main-menu ul li a {
    color: #333;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: 50px;
}

.sticky-area .main-menu ul li a span {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    line-height: normal;
}

/* Sticky tracking button specific styles */
.sticky-area .main-menu ul li.btn_track {
    margin-left: 20px;
}

.sticky-area .main-menu ul li.btn_track:after {
    display: none;
}

.sticky-area .main-menu ul li.btn_track a {
    background-color: #4361ee;
    color: #fff;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    height: auto;
        line-height: 30px;
}

.sticky-area .main-menu ul li.btn_track a:hover {
    background-color: #1a46e5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    color: #fff;
}

.sticky-area .main-menu ul li.btn_track a svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    flex-shrink: 0;
}

.sticky-area .main-menu ul li.btn_track a span {
    display: inline-block;
}

.sticky-area .btn_track {
    margin-left: 15px;
    display: none;
}

/* Mobile toggle button */
.header__toggle-btn {
    cursor: pointer;
    padding: 10px;
    z-index: 5;
}

.header__bar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
}

.header__bar span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header__toggle-btn:hover .header__bar span {
    background-color: #4361ee;
}

/* Sidebar styling improvements */
.sidebar__area {
    z-index: 9999;
}

.sidebar__wrapper {
    background-color: #fff;
    padding: 30px 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 100%;
}

.sidebar__close-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar__close-btn:hover {
    color: #4361ee;
    transform: rotate(90deg);
}

.sidebar__logo {
    text-align: center;
    margin-bottom: 30px !important;
}

.sidebar__logo img {
    max-width: 120px;
}

.sidebar__search .single-input-field {
    position: relative;
}

.sidebar__search input {
    width: 100%;
    border: 1px solid #f0f0f0;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar__search input:focus {
    border-color: #4361ee;
    outline: none;
}

.sidebar__search i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.mobile-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: #4361ee;
    padding-left: 5px;
}

.sidebar__info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.sidebar__info-icon {
    margin-right: 15px;
    color: #4361ee;
    font-size: 18px;
    padding-top: 2px;
}

.sidebar__info-text {
    flex: 1;
}

.sidebar__info-text span {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.sidebar__info-text h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.sidebar__info-text h5 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar__info-text h5 a:hover {
    color: #4361ee;
}

.sidebar__social {
    margin-top: 30px;
}

.sidebar__social ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar__social ul li {
    margin-right: 10px;
}

.sidebar__social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
}

.sidebar__social ul li a:hover {
    background-color: #4361ee;
    color: #fff;
    transform: translateY(-3px);
}

/* Body overlay */
.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.body-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Media queries for responsive design */
@media (max-width: 1199px) {
    .sticky-area {
        padding: 10px 0;
    }
    
    .header__info-item {
        margin-left: 15px;
    }
    
    .main-menu ul li {
        margin: 0 15px;
    }
}

@media (max-width: 991px) {
    .header__info-item {
        margin-left: 10px;
    }
    
    .header__info-text h5 {
        font-size: 13px;
    }
    
    .main-menu ul li {
        margin: 0 10px;
    }
    
    .main-menu ul li a {
        font-size: 13px;
    }
    
    .btn_track a {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .logo-transform img {
        width: 100px;
    }
    
    .header__bottom-info {
        padding: 8px 0;
    }
    
    .header__toggle-btn {
        padding: 5px;
    }
    
    .sidebar__logo img {
        width: 100px;
    }
    
    .sidebar__info-item {
        margin-bottom: 12px;
    }
    
    .sidebar__info-text span {
        font-size: 11px;
    }
    
    .sidebar__info-text h5 {
        font-size: 13px;
    }
} 