/**************************** Header Start ****************************/
header {
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(26, 32, 41, 0.08);
}

.navbar-top .nav-link {
    color: var(--deep-forest-green-100) !important;
    font-weight: 400;
}

.navbar-top .dropdown-toggle:hover {
    box-shadow: none;
    text-shadow: none;
    background-image: none;
    background-color: transparent;
}

.navbar-top .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: none;
    text-shadow: none;
    background-image: none;
}

.navbar-top .navbar-toggler {
    border: unset;
    outline: unset;
    padding: 8px;
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.navbar-top .navbar-toggler img {
    width: 24px;
    height: 24px;
}

.navbar-top .navbar-toggler:focus {
    box-shadow: unset;
}

.navbar-top .dropdown-toggle::after {
    background-image: url("/static/athar/images/down-arrow.db2fa0efdfed.svg");
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 15px;
    height: 15px;
}

.navbar-top .profile-dropdown .dropdown-toggle {
    font-weight: 700;
    letter-spacing: normal;
}

.navbar-top .profile-dropdown .dropdown-menu {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 8px 16px 0px rgba(26, 32, 41, 0.08);
    border: unset;
    min-width: 256px;
    width: 100%;
    left: -45px;
}

.navbar-top .profile-dropdown .dropdown-item {
    color: #1A2029;
    font-weight: 400;
    padding: .5rem 1rem;
}

.navbar-top .dropdown-item {
    color: var(--deep-forest-green-100);
}

.navbar-top .dropdown-item.active,
.dropdown-item:active {
    background-color: transparent;
}


.navbar-top .profile-dropdown .dropdown-toggle:focus {
    box-shadow: unset;
}

.navbar-top .profile-dropdown {
    position: relative;
}

.navbar-top .profile-dropdown::before {
    content: '';
    border: 1px solid #1A2029;
    height: 30px;
    opacity: 16%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.log-out {
    color: #E20000 !important;
    font-weight: 700 !important;
}

.profile-dropdown img {
    border-radius: 50%;
    object-fit: cover;
    width: 40px !important;
}


.auth-info .white-btn {
    margin-right: 5px;
}

nav .primary-btn {
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    background: var(--chartreuse-accent-100);
    color: var(--deep-forest-green-100);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

nav .white-btn {
    display: inline-flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: var(--deep-forest-green-80);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}

nav .sm-btn {
    line-height: 16px;
    font-weight: 600;
}

nav .xs-btn {
    font-size: 10px;
    line-height: 16px;
    font-weight: 600;
}

nav .primary-btn:hover {
    background: var(--chartreuse-accent-80);
    color: var(--deep-forest-green-100);
    text-decoration: none;
    transform: translateY(-1px);
}

nav a:hover, nav a:focus {
    text-decoration: none !important;
}

.navbar-top .dropdown-item {
    color: var(--deep-forest-green-100);
}

/* Custom Button Styles (Elementor-inspired) */
.custom-button-wrapper {
    display: inline-block;
}

.custom-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 1px solid var(--chartreuse-accent-100);
    background: var(--chartreuse-accent-100);
    color: var(--deep-forest-green-100);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
}

.custom-button-link {
    text-decoration: none !important;
}

.custom-size-sm {
    padding: 12px 24px;
    font-size: 17px;
    line-height: 1.2;
}

.custom-button-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.custom-button-text {
    font-size: 17px;
    font-weight: bold;
    color: inherit;
    white-space: nowrap;
}

.custom-button:hover {
    background: #ffffff;
    color: var(--deep-forest-green-100);
    text-decoration: none;
    border: 1px solid var(--deep-forest-green-100);
}

.custom-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(181, 186, 18, 0.3);
}

.custom-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hide burger menu on desktop */
@media (min-width: 992px) {
    .navbar-top .navbar-toggler {
        display: none !important;
    }
}

/**************************** Header End ****************************/