.stickyIcon {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
    width: 43px;
}

.stickyIcon .social {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.stickyIcon .social li {
    display: flex;
    align-items: center;
    border-radius: 50px 0 0 50px;
    overflow: hidden;
    width: 50px;
    margin: 5px 0;
    position: relative;
    z-index: 1;
    right: 0;
    transition: all 0.4s ease-in-out;
}

.stickyIcon .social li:hover {
    width: 180px;
    z-index: 10;
    right: 90px;
}

.stickyIcon .social li a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    height: 40px;
    white-space: nowrap;
}

.stickyIcon .social li .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stickyIcon .social li .label {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease-in-out;
    font-weight: 600;
    padding-right: 15px;
}

.stickyIcon .social li:hover .label {
    opacity: 1;
    transform: translateX(0);
}

.stickyIcon .facebook {
    background: #1877f2;
}

.stickyIcon .instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.stickyIcon .youtube {
    background: #ff0000;
}

.stickyIcon .twitter {
    background: #000;
}

.stickyIcon .linkedin {
    background: #0077b5;
}

.stickyIcon .social li .icone {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    margin-right: 10px;
}

.stickyIcon .facebook .icone i {
    color: #1877f2;
}

.stickyIcon .instagram .icone i {
    background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stickyIcon .youtube .icone i {
    color: #ff0000;
}

.stickyIcon .twitter .icone i {
    color: #000000;
}

.stickyIcon .linkedin .icone i {
    color: #0077b5;
}

.stickyIcon .social li .icone i {
    font-size: 1.4rem;
}

/* Navbar Hover on top Designing */
.custom-hover .icon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 5px;
    position: relative;
}

.custom-hover .icon-text i {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: 3px;
    height: 10px;
}

@media (min-width: 992px) {
    .custom-hover:hover .icon-text i {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .custom-hover .icon-text i {
        display: none;
    }
}

@media (min-width: 992px) {
    .custom-hover.active .icon-text i {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.toggle-dropdown {
    position: relative;
    top: 6px;
    /* 5px neeche shift karega */
    transition: top 0.3s ease;
    /* agar hover animation chahiye toh */
}