.after-icn::after {
    display: none !important;
}

.padding-top {
    padding-top: 20px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 10px 0;
}

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

.menu {
    display: flex;
    align-items: center;
    gap: 80px;
}

.logo {
    font-size: 32px;
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-size: 20px;
}

.login-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.fixed-header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(9px);
    box-shadow: 0px 4px 20.7px 0px rgba(255, 255, 255, 0.2);
}

.mobile-nav-toggle {
    background: transparent;
    border: none;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.custom-btn {
    border-radius: 25px !important;
    padding: 8px 20px !important;
    background-color: rgb(1, 7, 12) !important;
    /* instead of var(--background-color) */
    color: rgb(255, 255, 255) !important;
    /* instead of var(--text-color) */
    font-weight: 500 !important;
    border: 2px solid transparent !important;
    background-clip: padding-box, border-box !important;
    background-origin: border-box !important;
    background-image: linear-gradient(rgb(1, 7, 12), rgb(1, 7, 12)),
        /* inner bg */
            linear-gradient(
                110.19deg,
                rgb(133, 116, 255) -33.66%,
                rgb(226, 153, 251) 23.59%,
                rgb(255, 87, 122) 98.71%
            ) !important;
    /* gradient border */
    transition: color 0.3s ease, background 0.3s ease !important;
}

.custom-btn:hover {
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)),
        /* hover bg */
            linear-gradient(
                110.19deg,
                rgb(133, 116, 255) -33.66%,
                rgb(226, 153, 251) 23.59%,
                rgb(255, 87, 122) 98.71%
            ) !important;
    color: rgb(0, 0, 0) !important;
}

.gradient-text {
    background: linear-gradient(
        90deg,
        rgba(82, 173, 255, 0.91) 0.75%,
        rgba(93, 116, 183, 0.91) 20.34%,
        rgba(150, 105, 173, 0.91) 29.19%,
        rgba(190, 93, 164, 0.91) 40.54%,
        rgba(238, 64, 115, 0.91) 55.31%,
        rgba(241, 75, 78, 0.91) 83.17%,
        rgba(244, 85, 42, 0.91) 92.79%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -text-fill-color: transparent;
}

@media (max-width: 768px) {
    .main-nav,
    .login-btns {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-nav-toggle .bi {
        font-size: 35px;
        color: white;
    }
}

.pop-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    background-color: transparent;
    display: none;
    z-index: 9999;
    overflow: hidden;
}

.pop-menu.active {
    display: block;
}

.pop-menu .container {
    background: #fff;
    max-width: 1400px;
    margin: 60px auto;
    padding: 20px;
    border-radius: 8px;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.1); /* subtle border */
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.20);

}

/* Left navigation */
.pmenu-left {
    height: 55vh;
    border-right: 1px solid #ddd;
}

.pmenu-left a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

.pmenu-left a:hover {
    color: #9c27b0;
}

/* Right categories */
.pmenu-right ul li {
    font-weight: 600;
    font-size: 18px;
}

.pmenu-left ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pmenu-left ul li > img {
    width: 20px;
    height: 20px;
}

.pmenu-right {
    height: 55vh;
}

.pmenu-right ul li ul li {
    font-weight: normal;
    color: #555;
}

/* Close button */
.clopme {
    /* position: absolute; */
    position: relative;
    /* top: 15px;
                                right: 20px; */
    font-size: 35px;
    color: #444;
}

/* Bottom section */
.pmenu-bottom {
    width: 100%;
    border-top: 1px solid #ddd;
}

.close-icon {
    display: flex;
    justify-content: flex-end;
}

.custom-bi::before {
    position: relative;
    font-size: 35px;
    color: black;
}

@media (max-width: 768px) {
    .pop-menu {
        position: fixed;
        height: auto;
        top: 0;
        left: -100%;
        /* initially hidden */
        width: 80%;
        /* take 80% width on mobile */
        max-width: 600px;
        /* optional limit */
        max-height: 100vh;
        background: #fff;
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.8s ease-in-out;
        /* smooth slide animation */
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    /* When active, slide in */
    .pop-menu.active {
        left: 0;
    }

    .pmenu-left {
        border-right: none;
        /* remove desktop border */
        border-bottom: 1px solid #ddd;
        /* add bottom border for separation */
        margin-bottom: 15px;
        height: auto;
        /* let content decide */
    }
    .pmenu-left ul li a{
        font-size: 16px;

    }

    .pmenu-right {
        height: auto;
        border-bottom: 1px solid #ddd;
    }

    .pmenu-right ul {
        flex-direction: column;
    }
    .pmenu-right ul li{
        font-size: 16px;
    }

    /* .mobile-top-buttons{
                                                border-bottom:1px solid #ddd;
                                                border-right:none;
                                            } */

    .pmenu-bottom {
        border: none;
        padding-bottom: 20px;
    }

    .custom-btn {
        width: 200px;
        max-width: 300px;
    }

    .pop-menu .container {
        padding: 0px !important;
        margin: 0px !important;
    }

    .close-icon {
        background: linear-gradient(
            90deg,
            rgba(82, 173, 255, 0.91) 0.75%,
            rgba(93, 116, 183, 0.91) 20.34%,
            rgba(150, 105, 173, 0.91) 29.19%,
            rgba(190, 93, 164, 0.91) 40.54%,
            rgba(238, 64, 115, 0.91) 55.31%,
            rgba(241, 75, 78, 0.91) 83.17%,
            rgba(244, 85, 42, 0.91) 92.79%
        );
        padding: 10px;
        align-items: center;
    }

    .clopme {
        color: white;
    }

    .mobile-top-buttons {
        margin: 20px 0px;
    }

    .custom-link {
        font-weight: 600;
        color: text-gradient !important;
    }

    .custom-bi::before {
        color: rgb(255, 255, 255);
    }
}
