/**
 * AAIRO - Agentic AI Recruitment Orchestrator
 * Main Stylesheet
 * 
 * Features:
 * - Custom CSS Variables for theming
 * - Custom cursor with brand color
 * - 3D transforms and perspective
 * - GSAP-ready animations
 * - Glassmorphism effects
 * - Dark/Light mode support
 * - Responsive design
 * 
 * @version 1.0.0
 */

/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */
:root {
    /* Brand Colors */
    --brand-primary: #D325F7;
    --brand-secondary: #7B2FF7;
    --brand-accent: #00D4FF;
    --brand-gradient-start: #D325F7;
    --brand-gradient-end: #7B2FF7;
    
    /* Dark Theme (Default) */
    --bg-primary: #0A0A0F;
    --bg-secondary: #12121A;
    --bg-tertiary: #1A1A25;
    --bg-card: rgba(26, 26, 37, 0.8);
    --bg-glass: rgba(18, 18, 26, 0.7);
    
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(211, 37, 247, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(211, 37, 247, 0.3);
    --shadow-glow-accent: 0 0 40px rgba(0, 212, 255, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Scale */
    --z-cursor: 9999;
    --z-overlay: 1000;
    --z-navbar: 900;
    --z-modal: 800;
    --z-dropdown: 700;
    --z-tooltip: 600;
    
    /* Custom Cursor */
    --cursor-size: 20px;
    --cursor-ring-size: 40px;
    
    /* 3D Perspective */
    --perspective: 1000px;
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #E9ECEF;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.8);
    
    --text-primary: #0A0A0F;
    --text-secondary: rgba(10, 10, 15, 0.7);
    --text-muted: rgba(10, 10, 15, 0.5);
    
    --border-color: rgba(10, 10, 15, 0.1);
    --border-glow: rgba(211, 37, 247, 0.2);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================
   BASE RESET & GLOBAL STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: none; /* Hide default cursor for custom cursor */
}

/* Show default cursor on touch devices */
@media (pointer: coarse) {
    body {
        cursor: auto;
    }
}

/* Selection */
::selection {
    background: var(--brand-primary);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-secondary);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

/* Lists */
ul, ol {
    list-style: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: var(--z-cursor);
    mix-blend-mode: difference;
    display: none;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
    }
}

.cursor-dot {
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: var(--brand-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-ring {
    width: var(--cursor-ring-size);
    height: var(--cursor-ring-size);
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor-glow {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(211, 37, 247, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(10px);
    transition: transform 0.2s ease;
}

/* Cursor States */
.custom-cursor.hover-link .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
}

.custom-cursor.hover-link .cursor-ring {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.8;
}

.custom-cursor.hover-button .cursor-dot {
    transform: translate(-50%, -50%) scale(2);
    background: var(--brand-accent);
}

.custom-cursor.hover-button .cursor-ring {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--brand-accent);
    opacity: 0.9;
}

.custom-cursor.hover-card .cursor-dot {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.8;
}

.custom-cursor.hover-card .cursor-ring {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.6;
}

/* Cursor Click Animation */
@keyframes cursorPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(0.8); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.custom-cursor.clicking .cursor-dot {
    animation: cursorPulse 0.3s ease;
}
/*Custom my css*/


.text-muted {
    color: #ae1dcb !important;
}
.text-white{
       color: #697DFB !important;
 
}
.carde{
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}
 
.carde::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 37, 247, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

/*for contact us form*/
.cardform{
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cardform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 37, 247, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;   /* ðŸ‘ˆ ADD THIS */
}
/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: var(--z-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.transition-logo {
    text-align: center;
}

.transition-logo .logo-text {
    font-size: var(--text-5xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.page-transition.active .logo-text {
    opacity: 1;
    transform: scale(1);
}

.logo-particles {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    margin: var(--space-4) auto 0;
    border-radius: var(--radius-full);
    transform: scaleX(0);
    transition: transform 0.8s ease 0.3s;
}

.page-transition.active .logo-particles {
    transform: scaleX(1);
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: calc(var(--z-navbar) + 1);
    background: transparent;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    box-shadow: 0 0 10px var(--brand-primary);
    transition: width 0.1s linear;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    padding: var(--space-4) 0;
    transition: all var(--transition-base);
    z-index: var(--z-navbar);
}

.navbar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all var(--transition-base);
    z-index: -1;
}

.navbar.scrolled .navbar-bg {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-glow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.navbar.scrolled .navbar-glow-line {
    opacity: 0.5;
}

.navbar-spacer {
    height: 80px;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-icon {
    display: flex;
    transition: transform var(--transition-bounce);
}

.logo-container:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    font-size: var(--text-2xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Navigation Links */
.navbar-nav {
    gap: var(--space-2);
}

.nav-link {
    position: relative;
    padding: var(--space-2) var(--space-4) !important;
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: color var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--brand-primary);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform var(--transition-bounce);
    box-shadow: 0 0 10px var(--brand-primary);
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
    transform: translateX(-50%) scale(1);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 0 15px rgba(211, 37, 247, 0.3);
}

.theme-icon {
    position: absolute;
    transition: all var(--transition-base);
    color: var(--text-secondary);
}

.theme-icon.light {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

.theme-icon.dark {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-icon.light {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-icon.dark {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

/* Navigation CTA Button */
.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border: none;
    border-radius: var(--radius-full);
    color: white !important;
    font-weight: 600;
    font-size: var(--text-sm);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-nav:hover::before {
    left: 100%;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.btn-nav:hover .btn-glow {
    opacity: 0.5;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: var(--space-2);
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: none;
}

.toggle-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
    transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: calc(var(--z-navbar) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--space-6);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-10);
}

.mobile-logo {
    font-size: var(--text-2xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: none;
    padding: var(--space-2);
}

.mobile-nav-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-primary);
}

.link-number {
    font-size: var(--text-sm);
    font-family: var(--font-mono);
    color: var(--brand-primary);
    opacity: 0.7;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.btn-mobile {
    width: 100%;
    justify-content: center;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-weight: 600;
    font-size: var(--text-base);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 0 20px rgba(211, 37, 247, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: white;
}

/* Button Sizes */
.btn-lg {
    padding: var(--space-5) var(--space-8);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

/* Button with Icon */
.btn-icon-only {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-6xl); }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-4xl); }
h4 { font-size: var(--text-3xl); }
h5 { font-size: var(--text-2xl); }
h6 { font-size: var(--text-xl); }

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Section Title */
.section-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    line-height: 1.1;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-10);
}

/* Label/Badge */
.label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(211, 37, 247, 0.1);
    border: 1px solid rgba(211, 37, 247, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-primary);
}

.label-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* ============================================
   CARDS
   ============================================ */
.card-3d {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-base);
    transform-style: preserve-3d;
    perspective: var(--perspective);
    position: relative;
    overflow: hidden;
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 37, 247, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card-3d:hover::before {
    opacity: 1;
}

.card-3d:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--border-glow);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    font-size: var(--text-2xl);
}

.card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.card-text {
    color: var(--text-secondary);
    font-size: var(--text-base);
    margin-bottom: 0;
}

/* Glass Card */
.card-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-20) 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(211, 37, 247, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: gradientFloat 10s ease-in-out infinite;
}

@keyframes gradientFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(211, 37, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(211, 37, 247, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--brand-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-label {
    margin-bottom: var(--space-6);
}

.hero-title {
    font-size: clamp(var(--text-4xl), 8vw, var(--text-7xl));
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--space-6);
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: var(--space-8);
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-stats {
    display: flex;
    gap: var(--space-10);
    margin-top: var(--space-16);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    perspective: var(--perspective);
}

.hero-dashboard {
    position: relative;
    transform-style: preserve-3d;
    animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%, 100% { transform: translateY(0) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateY(-5deg); }
}

.dashboard-frame {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dot.red { background: #FF5F57; }
.window-dot.yellow { background: #FFBD2E; }
.window-dot.green { background: #28CA42; }

.dashboard-content {
    padding: var(--space-4);
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-placeholder {
    text-align: center;
    color: var(--text-muted);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-md);
    animation: elementFloat 4s ease-in-out infinite;
}

.floating-element.element-1 {
    top: -30px;
    right: -20px;
    animation-delay: 0s;
}

.floating-element.element-2 {
    bottom: 20px;
    left: -30px;
    animation-delay: 1s;
}

.floating-element.element-3 {
    top: 50%;
    right: -40px;
    animation-delay: 2s;
}

@keyframes elementFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--space-24) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--bg-secondary);
}

.feature-card {
    height: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(211, 37, 247, 0.2), rgba(123, 47, 247, 0.2));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card-3d:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--brand-primary);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    overflow: hidden;
}

.process-timeline {
    position: relative;
    padding: var(--space-10) 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-secondary));
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-16);
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
    padding: 0 var(--space-10);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: 800;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-glow);
}

.step-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.step-description {
    color: var(--text-secondary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    height: 100%;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-glow);
}

.testimonial-quote {
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    position: relative;
    padding-left: var(--space-6);
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: var(--text-6xl);
    color: var(--brand-primary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info h5 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: 0;
}

.author-info span {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 37, 247, 0.1), rgba(123, 47, 247, 0.1));
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.cta-description {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    padding-top: var(--space-24);
    overflow: hidden;
}

.footer-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.footer-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--brand-primary);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--brand-secondary);
    bottom: 100px;
    right: -100px;
}

.footer-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(211, 37, 247, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(211, 37, 247, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.footer-main {
    padding-bottom: var(--space-16);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.footer-description {
    color: var(--text-secondary);
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    position: relative;
    transition: all var(--transition-base);
    overflow: hidden;
}

.social-link:hover {
    color: var(--text-primary);
    transform: translateY(-3px);
}

.social-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.social-link:hover .social-glow {
    opacity: 1;
}

.footer-title {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-5);
    color: var(--text-primary);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-link:hover {
    color: var(--brand-primary);
    transform: translateX(5px);
}

/* Newsletter */
.newsletter-text {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.newsletter-form {
    position: relative;
}

.form-group {
    display: wrap;
    gap: var(--space-2);
}

.newsletter-input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 15px rgba(211, 37, 247, 0.2);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: var(--space-6) 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.legal-link {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.legal-link:hover {
    color: var(--brand-primary);
}

.legal-separator {
    color: var(--text-muted);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--brand-accent);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.top-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.back-to-top:hover .top-glow {
    opacity: 0.2;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .section-title {
        font-size: var(--text-4xl);
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        padding: var(--space-6);
        border-radius: var(--radius-xl);
        margin-top: var(--space-4);
        border: 1px solid var(--border-color);
    }
    
    .navbar-nav {
        gap: var(--space-1);
    }
    
    .nav-link {
        padding: var(--space-3) var(--space-4) !important;
    }
    
    .navbar-actions {
        margin-top: var(--space-4);
        justify-content: center;
    }
    
    .hero-section {
        text-align: center;
        padding: var(--space-16) 0;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: var(--space-10);
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }
    
    .step-number {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .step-content {
        padding: 0;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
    }
    
    .section {
        padding: var(--space-16) 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .stat-item {
        text-align: center;
    }
    
    .cta-title {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ============================================
   ANIMATION UTILITIES
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scale-in {
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
}

.glow {
    box-shadow: var(--shadow-glow);
}

.glow-accent {
    box-shadow: var(--shadow-glow-accent);
}

.gradient-border {
    position: relative;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-16 { margin-top: var(--space-16); }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-16 { margin-bottom: var(--space-16); }

/* Display Utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

/* Position Utilities */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }
.overflow-visible { overflow: visible !important; }

/* Visibility for Screen Readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ===== FORCE TIMELINE LEFT ALIGN (ALL SCREENS) ===== */

.process-timeline::before {
    left: 30px !important;   /* vertical line left */
    transform: none !important;
}

.process-step {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding-left: 80px !important; /* space for line + number */
}

.process-step:nth-child(even) {
    flex-direction: column !important; /* disable alternating layout */
}

.step-number {
    left: 30px !important;
    transform: translateX(-50%) !important;
    position: absolute;
}

.step-content {
    padding: 0 !important;
    text-align: left !important;
}

.form-group1 {
    display: flex;
    gap: var(--space-2);
    flex-wrap: nowrap;
}

body {
    background: #0b0f1a;
    font-family: Arial, sans-serif;
}

/* layout */
.stats-container {
    display: flex;
    gap: 20px;
    justify-content: left;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

/* number wrapper */
.stat-number {
    font-weight: bold;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

/* Up to */
.prefix {
    font-size: 14px;
    color: #ffffff;
    margin-right: 4px;
}

/* main number */
.number {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(90deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* % / x */
.suffix {
    font-size: 16px;
    color: #ffffff;
    margin-left: 3px;
}

/* label */
.stat-label {
    margin-top: 6px;
    font-size: 14px;
    color: #9ca3af;
}


/* ============================================
   ✅ LIGHT MODE FIX OVERRIDES (ADD AT END)
   ============================================ */

/* Fix body override issue */
body {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    font-family: var(--font-primary) !important;
}

/* Fix hardcoded text colors */
.text-muted {
    color: var(--text-muted) !important;
}

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

/* Stats section fix */
.prefix,
.suffix {
    color: var(--text-primary) !important;
}

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

/* Fix any cards/forms forcing dark look */
.carde,
.cardform {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

/* Fix navbar + sections if stuck in dark */
.navbar,
.section,
.features-section,
.testimonials-section,
.cta-section {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Ensure inputs adapt to theme */
input,
textarea {
    background: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}

/* Placeholder fix */
input::placeholder,
textarea::placeholder {
    color: var(--text-muted) !important;
}
