
        /* Dropdown Wrapper */
        .custom-dropdown {
            position: relative;
            display: inline-block;
        }

        /* Dropdown Button */
        .custom-dropdown-btn {
            background-color: #f8f6f0;
            color: #87365b;
            border: none;
            padding: 8px 14px;
            border-radius: 15px;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .custom-dropdown-btn:hover {
            background-color: #87365b;
            color: #f8f6f0;
        }

        .custom-dropdown-btn.custom-show {
            background-color: #87365b;
            color: #f8f6f0;
        }

        /* Dropdown Menu */
        .custom-dropdown-menu {
            display: none;
            position: absolute;
            top: 110%;
            left: 0;
            background-color: #f8f6f0;
            min-width: 200px;
            box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            z-index: 1000;
            padding: 8px 0;
            list-style: none;

        }

        /* Menu Items */
        .custom-dropdown-menu li a {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
            font-size: 18px;
            color: black;
            transition: background 0.2s ease;
        }

        .custom-dropdown-menu li a:hover {
            background-color: #f5f5f5;
            color: #87365b;
        }

        /* Divider */
        .custom-dropdown-menu .divider {
            height: 1px;
            margin: 6px 0;
            background: #e0e0e0;
        }

        @media (max-width: 965px) {

            /* Dropdown Wrapper */
            .custom-dropdown {
                position: absolute;
                display: block;
                width: 100%;
            }

            /* Dropdown Button */
            .custom-dropdown-btn {
                background-color: #f8f6f0;
                color: #87365b;
                border: none;
                padding: 10px 14px;
                border-radius: 15px;
                cursor: pointer;
                font-size: 15px;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            /* Dropdown Menu */
            .custom-dropdown-menu {
                display: none;
                position: absolute;
                z-index: 2000;
                background-color: #f8f6f0;
                width: 200px;
                /* margin-top: 6px; */
                box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
                border-radius: 15px;
                padding: 8px 0;
                list-style: none;
            }

            /* Menu Items */
            .custom-dropdown-menu li a {
                display: block;
                padding: 12px 15px;
                text-decoration: none;
                font-size: 18px;
                color: black;
                transition: background 0.2s ease;
            }

            .custom-dropdown-menu li a:hover {
                background-color: #f5f5f5;
                color: #87365b;
            }

            /* Divider */
            .custom-dropdown-menu .divider {
                height: 1px;
                margin: 6px 0;
                background: #e0e0e0;
            }

        }

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f6f0; /* خلفية اللودر */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.logo-loader {
    width: 150px;
    height: 150px;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

