﻿
                                                /*-------------------------NavBar css----------------------------*/
body {
    margin: 0;
    font-family: 'Alta', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-logo img {
    width: 65px;
    height: auto;
    transition: transform 0.3s ease;
    border: none;
    outline: none;
}

    .navbar-logo img:hover {
        transform: scale(1.05);
    }

.navbar-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    gap: 30px;
}

    .navbar-menu a {
        text-decoration: none;
        color: #3d3d3d;
        font-size: 1.05em;
        position: relative;
        transition: all 0.3s ease;
    }

        .navbar-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0%;
            height: 2px;
            background: linear-gradient(to right, #d4af37, #f8e38a);
            transition: width 0.3s ease;
        }

        .navbar-menu a:hover::after {
            width: 100%;
        }

        .navbar-menu a:hover {
            color: #5A0717;
        }

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .navbar-icons i {
        font-size: 20px;
        color: #3d3d3d;
        cursor: pointer;
        transition: color 0.3s ease;
    }

        .navbar-icons i:hover {
            color: #5A0717;
        }

.search-box {
    position: relative;
}

    .search-box input {
        border: none;
        border-bottom: 1px solid #3d3d3d;
        padding: 5px 25px 5px 5px;
        font-size: 14px;
        outline: none;
        background: transparent;
        color: #3d3d3d;
    }

    .search-box i {
        position: absolute;
        right: 5px;
        top: 7px;
        font-size: 14px;
        color: #3d3d3d;
    }

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #5A0717;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    padding: 2px 5px;
}

.top-offer {
    background-color: #5A0717;
    color: white;
    text-align: center;
    padding: 6px 0;
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
}
/* Dropdown show on hover */
.category-menu:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* remove bullet / dot */
.category-menu {
    list-style: none !important;
}

    /* dropdown hover effect */
    .category-menu:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* dropdown style */
.category-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
}

    /* dropdown items */
    .category-dropdown .dropdown-item {
        padding: 8px 16px;
        color: #333;
        transition: background 0.2s;
        font-size: 18px;
    }

        .category-dropdown .dropdown-item:hover {
            background: #f8f9fa;
        }
.navbar-toggle {
    font-size: 24px;
    color: #5A0717;
    cursor: pointer;
    display: none;
}
/* ------------------ Mobile Zoom & Spacing Fix ------------------ */
@media (max-width: 768px) {
    body {
        zoom: 1.05;
        transform-origin: top left;
    }
    .about {
        text-align: center;
    }
    .footer-text {
        text-align: justify;
    }
    .navbar-logo img {
        text-align: center;
        width: 55px;
    }

    .navbar-toggle {
        font-size: 22px;
    }

    .footer-container {
        padding: 0 10px;
        text-align: left;
    }

    .footer-section {
        margin-bottom: 25px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section ul li a,
    .footer-section.contact p {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-bottom: 10px;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 10px 20px;
        position: relative;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        left: -260px;
        width: 240px;
        height: 100%;
        background-color: #fffaf3;
        flex-direction: column;
        padding-top: 80px;
        gap: 25px;
        align-items: flex-start;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease-in-out;
        z-index: 9999;
    }

        .navbar-menu.active {
            left: 0;
        }

        .navbar-menu a {
            width: 100%;
            padding-left: 25px;
            font-size: 16px;
        }

    .navbar-icons {
        display: none;
    }

    /* Dropdown adjust inside mobile menu */
    .category-dropdown {
        position: relative;
        top: 0;
        left: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none;
        display: none;
        box-shadow: none;
        background: #fffaf3;
    }

    .category-menu.open .category-dropdown {
        display: block;
    }
}

@media (max-width: 576px) {
    .navbar-menu {
        width: 200px;
    }
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fffaf3;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
    overflow-y: auto;
    z-index: 1000;
    padding: 15px 0;
}

    .mobile-menu.active {
        left: 0;
    }
.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #5a0717;
    cursor: pointer;
    line-height: 1;
}
    .mobile-menu .close-btn {
        background: none;
        border: none;
        font-size: 28px;
        color: #5a0717;
        float: right;
        margin-right: 15px;
        cursor: pointer;
    }

    .mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .mobile-menu ul li {
            border-bottom: 1px solid #f1e5d5;
        }

.submenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 17px;
    color: #3b1e1e;
    cursor: pointer;
    transition: background 0.3s;
}

    .submenu-header:hover {
        background: #fff4ea;
    }

    .submenu-header .left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .submenu-header i {
        color: #5a0717;
        font-size: 17px;
    }

    .submenu-header .arrow {
        font-size: 14px;
        color: #5a0717;
        transition: transform 0.3s ease;
    }

.has-submenu.open .submenu-header .arrow {
    transform: rotate(90deg);
}

.submenu {
    list-style: none;
    padding-left: 45px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.has-submenu.open .submenu {
    max-height: 400px;
}

.submenu li {
    padding: 8px 20px;
}

    .submenu li a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: #5a0717;
        font-size: 15px;
        transition: color 0.3s;
    }

        .submenu li a:hover {
            color: #a71c29;
        }

.mobile-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f1e5d5;
    color: #3b1e1e;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s;
}

    .mobile-menu .nav-link:hover {
        background-color: #fff4ea;
    }

    .mobile-menu .nav-link i {
        color: #5a0717;
        font-size: 17px;
        margin-right: 12px;
    }
.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f1e5d5;
    background-color: #fffaf3; /* matches menu background */
}
.menu-user i {
    font-size: 33px;
    color: #5a0717;
}

.mobile-menu .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #5a0717;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 991px) {
    .navbar-menu,
    .navbar-icons {
        display: none !important;
    }

    .navbar-toggle {
        display: block !important;
        font-size: 26px;
        color: #5A0717;
        cursor: pointer;
    }

    .navbar {
        justify-content: space-between;
        align-items: center;
        padding: 12px 24px;
    }

    .navbar-logo img {
        width: 85px;
        height: auto;
    }

    /* Optional: smooth animation for logo/menu */
    .navbar-toggle i {
        transition: transform 0.3s ease;
    }

        .navbar-toggle i:hover {
            transform: scale(1.1);
        }
}

/* 🔹 Desktop styles (unchanged) */
@media (min-width: 992px) {
    .navbar-toggle {
        display: none;
    }
}

/*-------------------------Footer css----------------------------*/
/*main Page Footer*/
.ekaiva-footer {
  /*  background: #5A0717;
    background-image: url('https://www.thejewelrymagazine.com/wp-content/uploads/2019/06/Registration-opens-for-2019-Bharat-Diamond-Week.jpg');
    background-repeat: no-repeat;*/
    background-color: #5A0717;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px 20px;
    position: relative;
    background-size: cover;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f8c471;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

    .footer-section ul li {
        margin-bottom: 8px;
    }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
        }

            .footer-section ul li a:hover {
                color: #f8c471;
            }

.footer-section.contact p {
    font-size: 18px;
    margin: 5px 0;
}

.footer-section.contact i {
    margin-right: 8px;
    color: #f8c471;
}

.social-icons {
    margin-top: 15px;
}

    .social-icons a {
        display: inline-block;
        color: #fff;
        /*background: #fFF;*/
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        border-radius: 50%;
        margin-right: 8px;
        transition: all 0.3s;
    }

        .social-icons a:hover {
            background: #fff;
            color: #111;
        }

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

    .footer-bottom span {
        color: #f8c471;
        font-weight: 600;
    }


.heading-component-main-container {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Cinzel', serif;
}

    .heading-component-main-container h1 {
        font-size: 42px;
        font-weight: 700;
        color: #5A0717;
        margin-bottom: 10px;
    }

    .heading-component-main-container h2 {
        font-size: 20px;
        font-weight: 400;
        color: #555;
    }

@media (max-width: 992px) {
    .heading-component-main-container h1 {
        font-size: 34px;
    }

    .heading-component-main-container h2 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .heading-component-main-container h1 {
        font-size: 28px;
    }

    .heading-component-main-container h2 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .heading-component-main-container h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .heading-component-main-container h2 {
        font-size: 15px;
        line-height: 1.4;
    }
}



.footer-section.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section.links li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.footer-section.links i {
    color: #c5a572; /* gold shade or your theme color */
    margin-right: 8px;
    font-size: 18px;
}

.footer-section.links a:hover {
    color: #c5a572;
}


/* Scroll To Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background-color: #7a0c2e; /* maroon shade */
    color: #fff;
    border: none;
    outline: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

    #scrollToTopBtn:hover {
        background-color: #a11f42;
        transform: translateY(-3px);
    }

/* Optional glow animation */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px #fff, 0 0 10px #a11f42;
    }

    50% {
        box-shadow: 0 0 15px #fff, 0 0 25px #a11f42;
    }

    100% {
        box-shadow: 0 0 5px #fff, 0 0 10px #a11f42;
    }
}

#scrollToTopBtn.show {
    animation: glow 1.5s infinite ease-in-out;
}

.user-menu {
    position: relative;
    display: inline-block;
}

.user-trigger {
    padding: 10px; /* increases hover area */
    cursor: pointer;
}

.user-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 40px; /* enough to avoid gap */
    right: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    width: 160px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

.user-menu:hover .dropdown-menu {
    display: block;
}

/* clickable items */
.user-menu .dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
}

    .user-menu .dropdown-menu li a:hover {
        background: #f0f0f0;
    }

.mobile-modal {
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 0 40px rgba(0,0,0,0.15);
}

.mobile-close {
    position: absolute;
    right: 15px;
    top: 15px;
    border: none;
    background: #f3f3f3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.mobile-body {
    text-align: center;
}

.mobile-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.mobile-subtitle {
    color: #777;
    font-size: 15px;
    margin-bottom: 25px;
}

.mobile-input-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 20px;
}

.country-code {
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
}

.mobile-input {
    border: none;
    width: 100%;
    font-size: 16px;
    outline: none;
}

.mobile-submit-btn {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 12px;
    font-size: 17px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

    .mobile-submit-btn:hover {
        background: #333;
    }


/* Modal Background */
.otp-modal {
    border-radius: 20px;
    padding: 30px 25px;
    background: #ffffff;
    position: relative;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
}

/* Close button */
.otp-close {
    position: absolute;
    right: 15px;
    top: 12px;
    border: none;
    background: none;
    font-size: 22px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

/* Title */
.otp-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 10px;
    color: #222;
}

/* Subtitle */
.otp-subtitle {
    font-size: 14px;
    margin-top: -5px;
    color: #666;
    margin-bottom: 20px;
}

/* OTP Boxes */
.otp-input-box {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    margin-top: 10px;
}

.otp-input {
    width: 48px;
    height: 55px;
    text-align: center;
    font-size: 22px;
    border-radius: 10px;
    border: 1.8px solid #d8d8d8;
    outline: none;
    transition: all 0.2s ease-in-out;
}

    .otp-input:focus {
        border-color: #000;
        box-shadow: 0px 0px 8px rgba(0,0,0,0.1);
    }

/* Verify Button */
.otp-verify-btn {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

    .otp-verify-btn:hover {
        background: #333;
    }

/* Resend */
.otp-resend {
    margin-top: 18px;
    font-size: 14px;
    color: #777;
}

    .otp-resend a {
        font-weight: 600;
        color: #000;
        cursor: pointer;
    }


.country-static-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
}

.country-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.mobile-input-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 12px;
    gap: 10px;
}
/* Modal look */
.user-info-modal {
    border-radius: 14px;
    border: none;
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

/* Close (X) button */
.user-info-close {
    background: transparent;
    border: none;
    font-size: 22px;
    position: absolute;
    right: 15px;
    top: 12px;
    cursor: pointer;
}

/* Title */
.user-info-title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 22px;
}

/* Label */
.user-info-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

/* Input */
.user-info-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all 0.2s;
}

    .user-info-input:focus {
        background: #fff;
        border-color: #005eff;
        box-shadow: 0 0 6px rgba(0, 94, 255, 0.3);
    }

/* Disabled input */
.mobile-input {
    background: #efefef !important;
}

/* Mobile number wrapper */
.mobile-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #efefef;
}

/* Prefix area */
.mobile-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    background: #f5f5f5;
    border-right: 1px solid #dcdcdc;
}

.flag-icon {
    width: 18px;
    height: 14px;
    object-fit: cover;
}

.dial-code {
    font-weight: 600;
    font-size: 14px;
    color: #222;
}

.mobile-input {
    border: none !important;
    padding-left: 12px;
    height: 45px;
    background: transparent !important;
}

.user-info-submit-btn {
    width: 100%;
    padding: 13px;
    border-radius: 8px;
    background: #0066ff;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

    .user-info-submit-btn:hover {
        background: #0050cc;
    }

.user-menu {
    position: relative;
}


.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

    .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
.navbar-icons {
    z-index: 101 !important;
}

.category-menu, [data-bs-toggle="dropdown"] {
    z-index: 1049 !important;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5A0717;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

    .user-avatar:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
    }

/*.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin-top: 16px;
    background-color: #fff;
    overflow: hidden;
}*/

.user-profile-card {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user-card-header {
    background: #5A0717;
    padding: 18px 16px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.user-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.user-card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.user-card-name {
    margin: 0;
    font-weight: 700;
    color: white;
    font-size: 16px;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    word-break: break-word;
}

.user-card-mobile {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .user-card-mobile i {
        font-size: 12px;
        flex-shrink: 0;
        color: white;
    }

.user-card-icon {
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 6px;
    flex-shrink: 0;
    color: white;
}

    .user-card-icon:hover {
        transform: rotate(45deg) scale(1.1);
        color: white;
    }

.dropdown-menu li {
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    color: white;
}

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

.dropdown-item {
    padding: 14px 16px;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

    .dropdown-item:hover {
        background-color: #fef5f7;
        color: #d0627d;
        padding-left: 18px;
    }

    .dropdown-item i {
        font-size: 20px;
        width: 18px;
        text-align: center;
        color: #5A0717;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }


    .dropdown-item:hover i {
        color: #5A0717;
    }

.logout-item {
    color: #d0627d;
    font-weight: 600;
}

    .logout-item:hover {
        background-color: #fef0f4;
        color: #a8234a;
    }

    .logout-item i {
        color: currentColor;
    }
@media (max-width: 768px) {
    .dropdown-menu {
        width: 280px !important;
        min-width: 280px !important;
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-15px);
    }

        .dropdown-menu.show {
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu::before {
            right: auto;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
        }

    .user-card-header {
        padding: 14px 12px;
    }

    .dropdown-item {
        padding: 12px 14px;
    }
}

/* Mobile Menu Active State */
.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu {
    transform: translateX(-100%);
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Submenu Show State */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

    .submenu.show {
        max-height: 500px;
    }

/* Arrow Rotation */
.arrow {
    transition: transform 0.3s ease;
}

    .arrow.rotate {
        transform: rotate(90deg);
    }

/* User Dropdown */
#userDropdownMenu {
    display: none;
}

    #userDropdownMenu.show {
        display: block;
    }

/* Scroll to Top Button */
#scrollToTopBtn {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    #scrollToTopBtn.show {
        opacity: 1;
        visibility: visible;
    }