/* Mesmerizing Effects for ArchGPT */

/* Subtle Hero Background Animation */
.hero-header {
    background-size: 400% 400% !important;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced Professional Card Hover */
.professional-card {
    position: relative;
    overflow: hidden;
    transform: translateZ(0); /* Force hardware acceleration */
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-30deg);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.professional-card:hover::before {
    left: 100%;
}

/* Button Hover Glow */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.7), 0 0 30px rgba(99, 102, 241, 0.5);
}

/* Custom Text Selection Color */
::selection {
    background-color: #6366f1; /* Primary color */
    color: #ffffff;
}

::-moz-selection {
    background-color: #6366f1;
    color: #ffffff;
}