.custom-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: none;
    padding: 10px;
    border-radius: 12px;
    position: relative;
}

.explore-container {
    position: relative;
    width: 120px;
    transition: width 0.4s ease-in-out;
}

.explore-btn {
    width: 100%;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.menu-items {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    background: black;
    padding: 10px;
    border-radius: 10px;
    color: white;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.menu-items a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.menu-items a:hover {
    color: #bbb;
}

.explore-container:hover {
    width: 300px;
}

.explore-container:hover .menu-items {
    opacity: 1;
    visibility: visible;
}

.contact-btn {
    padding: 10px;
    background: white;
    color: black;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.site-title {
    font-size: 18px;
    font-weight: bold;
}


/* Hide the default checkbox */
.elementor-field-option input[type="checkbox"] {
    display: none !important;
}

/* Style the label to look like a button */
.elementor-field-option label {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #000;
    border-radius: 8px;
    background-color: ;
    color: #000;
    cursor: pointer;
    margin: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* When checkbox is checked, style the label like an active button */
.elementor-field-option input[type="checkbox"]:checked + label {
    background-color: #e4a700;
    color: #fff;
}
