/* Main Styles for Rethink AI Labs */

/* Custom animations */
.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        padding-top: 4rem;
    }
    
    .section-padding {
        padding: 3rem 1rem;
    }
}

/* Utility classes */
.text-gradient {
    background: linear-gradient(90deg, #135bec, #6a8de8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-primary {
    box-shadow: 0 10px 15px -3px rgba(19, 91, 236, 0.1), 0 4px 6px -2px rgba(19, 91, 236, 0.05);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Dark mode specific styles */
.dark .bg-content {
    background-color: rgba(30, 41, 59, 0.8);
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #135bec 0%, #0d4aab 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(19, 91, 236, 0.3), 0 4px 6px -2px rgba(19, 91, 236, 0.1);
}

/* Card styles */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Navigation styles */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #135bec;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Footer specific styles */
.footer-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}