/* Custom Styles for AI NEXUS */

/* Scroll Reveal Animations */
.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Glow Hover effect */
.glow-hover {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glow-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.5s ease;
}

.glow-hover:hover::after {
    left: 100%;
}

.glow-hover:hover {
    box-shadow: 0 0 20px rgba(0, 227, 253, 0.4);
    transform: translateY(-2px);
}

/* Custom Glassmorphism Card Overlay */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Custom details element styling */
details[open] summary span:last-child {
    transform: rotate(180deg);
}

summary::-webkit-details-marker {
    display: none;
}

summary {
    list-style: none;
}
