body {
    background-color: #fff !important;
    color: black !important;
    position: relative;
}

.text-gradient {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-button {
    position: fixed;
    right: 60px;
    bottom: 60px;
    background-color: #07060d;
    z-index: 9999;
    border-radius: 50%;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: border-radius 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.caret-icon {
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease-in-out;
}

/* Social icons container */
.social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
    

}

/* When open */
.social-button.open {
    border-radius: 100px;
}

.social-button.open .social-icons {
    max-height: 300px; /* enough to fit icons */
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
}

/* Rotate caret when open */
.social-button.open .caret-icon {
    transform: rotate(180deg);
}

.social-icon {
    background: white;
    padding: 8px;
    border-radius: 50%;
    color: black;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}
    
