/* PNGStock.in - Premium Master Design System Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #06070a;
    --bg-darker: #030406;
    --card-bg: rgba(13, 16, 28, 0.55);
    --card-border: rgba(255, 255, 255, 0.05);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --primary: #8b5cf6;
    --primary-rgb: 139, 92, 246;
    --primary-glow: rgba(139, 92, 246, 0.15);
    
    --secondary: #06b6d4;
    --secondary-rgb: 6, 182, 212;
    
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

/* Base Body Framework */
body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.text-muted {
    color: var(--text-muted) !important;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: var(--secondary);
}

/* Premium Dynamic Background Mesh Gradients */
.bg-mesh-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    overflow: hidden;
    background: var(--bg-main);
}

.mesh-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
    filter: blur(80px);
    animation: rotateMesh 20s infinite alternate;
}

.mesh-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.08) 0%, transparent 70%);
    filter: blur(80px);
    animation: rotateMesh 25s infinite alternate-reverse;
}

@keyframes rotateMesh {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(5%, 10%) rotate(120deg); }
}

/* Glassmorphic Navigation Bar */
.navbar-premium {
    background: rgba(6, 7, 10, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.4s ease;
}
.navbar-premium.scrolled {
    background: rgba(3, 4, 6, 0.9);
    padding: 0.5rem 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Elegant Cards styling */
.card-premium {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--primary-rgb), 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(var(--primary-rgb), 0.1);
}

.card-premium:hover::before {
    opacity: 1;
}

/* Styled Interactive Buttons */
.btn-premium {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    color: white;
    border: none;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    border-radius: 10px;
    padding: 0.65rem 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-premium:hover {
    color: white;
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-premium-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    border-radius: 10px;
    padding: 0.65rem 1.75rem;
    transition: all 0.3s ease;
}
.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Neon categories pills */
.badge-neon {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
}

.badge-neon-sec {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(6, 182, 212, 0.25);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
}

/* Typography styles */
.gradient-text {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 70%, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Glass inputs */
.form-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    border-radius: 10px;
}
.form-glass:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    color: var(--text-primary);
}

/* Testimonial slider custom styling */
.testimonial-swiper-card {
    padding: 2.5rem;
    background: rgba(13, 16, 28, 0.45);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    position: relative;
}

/* Footer structure overrides */
footer {
    border-top: 1px solid var(--card-border);
    background-color: var(--bg-darker);
}
