/* ============================================================
   EXOGENICS - Reusable CSS Hover Effects
   Use these classes on any Elementor widget or element
   by adding them in: Advanced > CSS Classes
   ============================================================ */

/* 1. Bioluminescent Cyan Glow */
.hover-glow-cyan {
    transition: box-shadow var(--transition-normal, 0.3s) ease, transform var(--transition-normal, 0.3s) ease;
}
.hover-glow-cyan:hover {
    box-shadow: 0 0 25px rgba(61, 161, 202, 0.6) !important;
    transform: translateY(-2px);
}

/* 2. Bioluminescent Purple Glow */
.hover-glow-purple {
    transition: box-shadow var(--transition-normal, 0.3s) ease, transform var(--transition-normal, 0.3s) ease;
}
.hover-glow-purple:hover {
    box-shadow: 0 0 25px rgba(85, 60, 144, 0.6) !important;
    transform: translateY(-2px);
}

/* 3. Elevate & Float Card */
.hover-float {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important, box-shadow var(--transition-normal, 0.3s) ease !important;
}
.hover-float:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

/* 4. Smooth Scale Up */
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.hover-scale:hover {
    transform: scale(1.03) !important;
}

/* 5. Holographic Shimmer / Sweeping Light Reflection */
.hover-shimmer {
    position: relative;
    overflow: hidden;
}
.hover-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: none;
    pointer-events: none;
    z-index: 10;
}
.hover-shimmer:hover::after {
    left: 150%;
    transition: left 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 6. Dynamic Gradient Border */
.hover-gradient-border {
    position: relative;
    border: 1px solid transparent !important;
    background-clip: padding-box !important;
}
.hover-gradient-border::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, #3da1ca, #553c90);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hover-gradient-border:hover::before {
    opacity: 1;
}

/* 7. Icon Accent Rotate */
.hover-icon-rotate {
    cursor: pointer;
}
.hover-icon-rotate i,
.hover-icon-rotate svg {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.hover-icon-rotate:hover i,
.hover-icon-rotate:hover svg {
    transform: rotate(15deg) scale(1.15) !important;
}
