/*
Theme Name: PixelVect
Theme URI: https://pixelvect.com
Author: Shuvadip Sana
Author URI: https://pixelvect.com
Description: High-Converting, SEO-Optimized Custom WordPress Theme for PixelVect.
Version: 1.0.0
Text Domain: pixelvect
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc; /* Light Slate 50 */
    color: #0f172a; /* Dark Slate 900 */
    overflow-x: hidden;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ✨ Universal Animating Gradient Border Wrapper ✨ */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-border-wrap {
    position: relative;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1, #f8fafc, #e2e8f0); 
    background-size: 300% 300%;
    animation: gradient-shift 6s ease infinite;
    padding: 2px;
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gradient-border-wrap:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #3b82f6, #a855f7); 
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite; /* Speeds up on hover */
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.25);
}

.gradient-border-wrap.active {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #3b82f6);
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
    transform: scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.3);
    z-index: 10;
}

.gradient-border-content {
    background: #ffffff;
    border-radius: calc(1.5rem - 2px);
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Floating Animation for Hero Stats */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 5s ease-in-out infinite;
}
.animate-float-delayed {
    animation: float 5s ease-in-out 2.5s infinite;
}

/* Light Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Carousel Hide Scrollbar */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Premium Clip Path Initial State */
.clip-text {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0;
}