.elementor-2751 .elementor-element.elementor-element-6ea5a5f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d000180 *//* Right Side Sticky Menu */
.sticky-right-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.sticky-right-menu ul {
    list-style: none;
    margin: 0;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.sticky-right-menu ul::-webkit-scrollbar {
    width: 4px;
}

.sticky-right-menu ul::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.sticky-right-menu ul::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 0, 0.5);
    border-radius: 10px;
}

.sticky-right-menu li {
    margin: 15px 0;
    text-align: center;
}

.sticky-right-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 0, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: #333;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
}

/* SIMPLE TOOLTIP - Test this first */
.sticky-right-menu a:hover::after {
    content: attr(data-text);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FF0000 50%, #FF8C00 100%);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    font-family: sans-serif;
    z-index: 10000;
}

.sticky-right-menu a:hover {
    background: red;
    transform: scale(1.1);
    color: white;
}

.sticky-right-menu img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

/* Mobile */
@media (max-width: 768px) {
    .sticky-right-menu {
        right: 5px;
    }
    
    .sticky-right-menu ul {
        padding: 10px 5px;
        max-height: 70vh;
    }
    
    .sticky-right-menu li {
        margin: 8px 0;
    }
    
    .sticky-right-menu a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .sticky-right-menu a:hover::after {
        right: 45px;
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .sticky-right-menu img {
        width: 40px;
        height: 40px;
    }
}
















/* Text overlay on image hover - FULL TEXT VISIBLE */
.sticky-right-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 0, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Image styling */
.sticky-right-menu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Text overlay - FULLY VISIBLE on hover */
.sticky-right-menu a::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    z-index: 10;
    padding: 8px;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.3;
    box-sizing: border-box;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Show FULL text on hover */
.sticky-right-menu a:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Hide or dim image on hover to make text more readable */
.sticky-right-menu a:hover img {
    opacity: 0.2;
    transform: scale(1.05);
}

/* For emoji/icon items (non-image) */
.sticky-right-menu a:not(:has(img)) {
    font-size: 24px;
}

.sticky-right-menu a:not(:has(img)):hover {
    background: linear-gradient(135deg, #FF0000 50%, #FF8C00 100%);
    transform: scale(1.1);
    color: white;
}

/* Increase size for better text visibility on hover */
.sticky-right-menu a:hover {
    transform: scale(1.1);
}

/* Mobile adjustments - slightly larger for touch */
@media (max-width: 768px) {
    .sticky-right-menu a {
        width: 45px;
        height: 45px;
    }
    
    .sticky-right-menu a::after {
        font-size: 9px;
        padding: 5px;
    }
}

/* For longer text - adjust font size dynamically */
.sticky-right-menu a[data-text-length="long"]::after {
    font-size: 9px;
}

/* If text has spaces or is longer than 10 characters */
.sticky-right-menu a[data-text*=" "]:not([data-text^="TEA"]):not([data-text^="About"]):not([data-text^="Services"]):not([data-text^="Portfolio"]):not([data-text^="Contact"])::after {
    font-size: 9px;
}/* End custom CSS */