/* Navbar Base */
.header-area {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Navbar Text */
.header-navigation-light .main-nav>li>a {
    color: #111 !important;
}

.header-navigation-light .main-nav>li>a:hover {
    color: #e73c17;
}

.main-nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

/* Underline Animation */
.main-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0%;
    height: 2px;
    background: #e73c17;
    transition: 0.3s ease;
}

.main-nav-link:hover::after {
    width: 100%;
}

/* .main-nav-item {
    margin: 0 18px;
} */

.header-action i {
    color: #111;
}

.header-action i:hover {
    color: #e73c17;
}

.header-wrapper {
    /* position: sticky; */
    top: 0;
    z-index: 999;
}

/* Fix spacing between header icons */
.header-action {
    gap: 18px;
    /* clean modern spacing */
}

/* Remove old margins that are messing layout */
.header-action a,
.header-action button {
    margin-right: 0 !important;
}

.header-action a,
.header-action button {
    font-size: 20px;
    transition: 0.3s ease;
}

.header-action a:hover,
.header-action button:hover {
    color: #e73c17;
    transform: translateY(-2px);
}

.header-action {
    gap: 22px;
}
/* Contact Strip */
.contact-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: transparent;
    border-bottom: 1px solid #eee;
    padding: 6px 0;
    font-size: 13px;
    color: #555;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.contact-item i {
    font-size: 13px;
    color: #111;
}

.contact-item:hover {
    color: #e73c17;
}

.contact-item:hover i {
    color: #e73c17;
}
.contact-item i {
    background: #f1f1f1;
    padding: 6px;
    border-radius: 50%;
    font-size: 11px;
}