/*
Theme Name: TN Digi Solution
Theme URI: https://tndigi.com
Author: TN Digi Solution
Author URI: https://tndigi.com
Description: A modern AI SaaS WordPress theme with dark gradient background, neon effects, and glassmorphism design
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: az-ai-theme
Tags: ai, saas, dark, modern, responsive, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #1a0b2e, #000000);
    min-height: 100vh;
    color: #cbd5e1;
    overflow-x: hidden;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(5, 5, 10, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.text-gradient {
    background: linear-gradient(to right, #00d4ff, #d400ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-border-card {
    position: relative;
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.neon-border-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: 1.05rem;
    background: linear-gradient(to bottom right, #00d4ff, #d400ff, rgba(0,0,0,0) 60%);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.neon-border-card:hover {
    border-color: #c026d3;
    box-shadow: 0 0 20px rgba(192, 38, 211, 0.3);
    transform: translateY(-5px);
}

.neon-border-card:hover::before {
    opacity: 1;
}

.pricing-glow {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.5);
}

.dashboard-glow {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.glow-underline {
    position: relative;
    display: inline-block;
}

.glow-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00f0ff, transparent);
    box-shadow: 0 0 15px #00f0ff;
    border-radius: 2px;
}

.workflow-line {
    background: linear-gradient(to right, #00ffff, #8a2be2, #00ff00);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    height: 4px;
    top: 40px;
    transform: translateY(-50%);
}

.neon-icon, img {
    mix-blend-mode: screen;
}

.text-neon-blue {
    color: #00f0ff;
}

.text-neon-purple {
    color: #bd00ff;
}

.text-neon-green {
    color: #00ff9d;
}

.border-neon-blue {
    border-color: #00f0ff;
}

.border-neon-purple {
    border-color: #bd00ff;
}

.border-neon-green {
    border-color: #00ff9d;
}

.hover\:text-neon-blue:hover {
    color: #00f0ff;
}

.hover\:text-neon-purple:hover {
    color: #bd00ff;
}

.hover\:text-neon-green:hover {
    color: #00ff9d;
}

.hover\:bg-neon-blue\/10:hover {
    background-color: rgba(0, 240, 255, 0.1);
}

.hover\:bg-neon-purple\/10:hover {
    background-color: rgba(189, 0, 255, 0.1);
}

.hover\:bg-neon-green\/10:hover {
    background-color: rgba(0, 255, 157, 0.1);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-0.25rem);
}

.pro-card {
    position: relative;
    background: linear-gradient(160deg, rgba(168, 85, 247, 0.9), rgba(6, 182, 212, 0.9));
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
    box-shadow: 0 0 0 2px transparent;
}

.pro-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    border-radius: inherit;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

#mobile-menu {
    transition: all 0.3s ease;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

.dashboard-glow {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.text-gradient {
    background: linear-gradient(to right, #00d4ff, #d400ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
