* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.header {
    background-color: #ffffff;
    position: sticky;
    top: 0px;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.header .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header .left-nav .image {
    height: 80px;
    width: 80px;
}

.header .mid-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    list-style: none;
    margin-bottom: 0px;
}

.underline-rtl {
    position: relative;
    display: inline-block;
}

.underline-rtl::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(270deg, #F59609 0%, #FFD494 100%);

    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.underline-rtl:hover::after {
    transform: scaleX(1);
}

.header .right-nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.separator {
    height: 1.2px !important;
    background: linear-gradient(270deg, #FFBA53 0%, #FFD494 100%);
    border-radius: 20px;
}

.golden-text {
    color: transparent !important;
    background: linear-gradient(270deg, #F59609 0%, #FFD494 100%);
    background-clip: text;
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}


/* Mobile Start */

.mobile-only {
    display: none;
}

.header .navbar .mobile-only #hamburger {
    font-size: 1.5rem;
}

@media (max-width: 1023px) {

    .header .left-nav .image {
        height: 60px;
        width: 60px;
    }

    .header .mobile-navbar ul {
        list-style: none;
        margin-bottom: 0px;
        padding-left: 0px;
    }

    .mobile-navbar ul li {
        background: linear-gradient(0deg, #e98600 0%, #ff9200 50%, #ed8b00);
        /* background-color: #EF8019; */
        padding-left: 2rem;
        text-decoration: none;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .mobile-navbar ul li:hover {
        background: #fff;
        /* background-color: #fff; */
    }

    .mobile-navbar ul li .mobile-nav-options {
        font-weight: 600;
        font-size: 18px;
        color: #fff;
        text-decoration: none;
    }

    .mobile-navbar ul li:hover .mobile-nav-options {
        color: #EF8019;
        text-decoration: underline;
        text-underline-offset: 5px;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

}

/* Mobile End */