/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Light Theme Colors */
    --primary-bg: #ffffff;
    --secondary-bg: #f8fafc;
    --tertiary-bg: #f1f5f9;
    --card-bg: rgba(255, 255, 255, 0.95);
    --accent-bg: #e2e8f0;
    --border-color: rgba(148, 163, 184, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(148, 163, 184, 0.3);
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-accent: #334155;
    
    /* Enhanced Brand Colors - Professional Blue/Teal Theme */
    --brand-primary: #0ea5e9;
    --brand-secondary: #0284c7;
    --brand-accent: #f97316;
    --brand-gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    --brand-gradient-alt: linear-gradient(45deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
    --brand-glow: 0 0 20px rgba(14, 165, 233, 0.2);
    --brand-glow-strong: 0 0 30px rgba(14, 165, 233, 0.3);
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 120px 0;
    --card-padding: 2.5rem;
    
    /* Enhanced Animations */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Enhanced background with subtle gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(2, 132, 199, 0.02) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(1deg); }
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Enhanced Navigation with Light Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    /* background: var(--brand-gradient); */
    opacity: 0.6;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: lightgray;
    text-shadow: var(--brand-glow);
    transition: var(--transition-normal);
}

.nav-logo .logo-text:hover {
    text-shadow: var(--brand-glow-strong);
    transform: scale(1.05);
}

.logo-accent {
    color: var(--brand-primary);
    position: relative;
}

.logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-gradient);
    border-radius: 1px;
    animation: pulse 2s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: lightgray;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    border-radius: 25px;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.nav-link:hover {
    color: var(--brand-primary);
    text-shadow: var(--brand-glow);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
    box-shadow: var(--brand-glow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    transition: var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 1px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.nav-toggle:hover {
    background: var(--glass-bg);
    box-shadow: var(--brand-glow);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-normal);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(14, 165, 233, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    animation: heroBackgroundShift 15s ease-in-out infinite;
}

@keyframes heroBackgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.05) rotate(1deg); opacity: 0.8; }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(3px 3px at 20px 30px, rgba(14, 165, 233, 0.3), transparent),
        radial-gradient(3px 3px at 40px 70px, rgba(249, 115, 22, 0.3), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(2, 132, 199, 0.3), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(14, 165, 233, 0.3), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(71, 85, 105, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    animation: float 25s infinite linear;
    opacity: 0.6;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(40px, -10px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px) rotateX(15deg);
    animation: slideUpEnhanced 1s var(--bounce) forwards;
    perspective: 1000px;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.accent-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: none;
}

.accent-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-gradient);
    opacity: 0.1;
    filter: blur(20px);
    z-index: -1;
    animation: glow 3s ease-in-out infinite;
}

@keyframes slideUpEnhanced {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes glow {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.05); }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    line-height: 1.7;
    font-weight: 400;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
    transform: translateY(30px);
}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    box-shadow: var(--brand-glow);
    border: 1px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--brand-glow-strong), 0 10px 30px rgba(14, 165, 233, 0.2);
}

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

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--brand-glow);
}

.btn-full {
    width: 100%;
}

/* Enhanced Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px) saturate(180%);
    animation: float-card 8s ease-in-out infinite;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
    cursor: pointer;
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.1) rotateY(5deg);
    box-shadow: 
        var(--brand-glow-strong),
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.floating-card.card-1 {
    top: 20%;
    right: 55%;
    animation-delay: 0s;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(14, 165, 233, 0.05) 100%);
}

.floating-card.card-2 {
    top: 45%;
    right: 10%;
    animation-delay: 2.5s;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.floating-card.card-3 {
    bottom: 45%;
    right: 30%;
    animation-delay: 5s;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(2, 132, 199, 0.05) 100%);
}

@keyframes float-card {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg); 
        filter: brightness(1);
    }
    25% { 
        transform: translateY(-15px) rotateX(2deg) rotateY(1deg); 
        filter: brightness(1.05);
    }
    50% { 
        transform: translateY(-25px) rotateX(0deg) rotateY(-1deg); 
        filter: brightness(1.1);
    }
    75% { 
        transform: translateY(-10px) rotateX(-1deg) rotateY(0deg); 
        filter: brightness(1.05);
    }
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.5)); }
}

.card-text {
    font-weight: 700;
    color: var(--text-accent);
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: var(--brand-gradient);
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(-50%, -50%);
    animation: pulseEnhanced 6s ease-in-out infinite;
    filter: blur(40px);
}

.hero-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: var(--brand-gradient-alt);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseEnhanced 4s ease-in-out infinite reverse;
    filter: blur(20px);
}

@keyframes pulseEnhanced {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
        opacity: 0.05;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg); 
        opacity: 0.08;
    }
}

/* Enhanced Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--brand-gradient);
    opacity: 0.2;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    width: 100px;
    height: 3px;
    background: var(--brand-gradient);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: var(--brand-glow);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-gradient);
    opacity: 0.05;
    filter: blur(30px);
    z-index: -1;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

/* Enhanced About Section */
.about {
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3.5rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
}

.about-item:hover {
    transform: translateY(-5px);
    background: rgba(14, 165, 233, 0.03);
    border-color: var(--brand-primary);
    box-shadow: var(--brand-glow);
}

.mission-icon {
    font-size: 3rem;
    flex-shrink: 0;
    animation: iconFloat 4s ease-in-out infinite;
}

.about-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.about-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(14, 165, 233, 0.03);
    border-color: var(--brand-primary);
    box-shadow: var(--brand-glow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Enhanced Product Section */
.product {
    background: var(--primary-bg);
    position: relative;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.product-preview {
    position: relative;
}

.preview-window {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--tertiary-bg);
    border-bottom: 1px solid var(--glass-border);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.control.close {
    background: #ef4444;
}

.control.minimize {
    background: #f59e0b;
}

.control.maximize {
    background: #10b981;
}

.control:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px currentColor;
}

.window-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.window-content {
    padding: 2rem;
    background: var(--primary-bg);
}

.dashboard-preview {
    position: relative;
}

.dashboard-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.dashboard-cards {
    grid-column: span 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.2);
}

.product-features {
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(14, 165, 233, 0.03);
    border-color: var(--brand-primary);
    box-shadow: var(--brand-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Enhanced Services Section */
.services {
    background: var(--secondary-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.01) 0%, transparent 50%);
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(14, 165, 233, 0.03);
    border-color: var(--brand-primary);
    box-shadow: var(--brand-glow-strong);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.3));
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: bold;
}

/* Enhanced Contact Section */
.contact {
    background: var(--primary-bg);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(14, 165, 233, 0.03);
    border-color: var(--brand-primary);
    box-shadow: var(--brand-glow);
}

.contact-icon {
    font-size: 2rem;
    color: var(--brand-primary);
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
}

.contact-details h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: var(--brand-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Enhanced Footer */
.footer {
    background: var(--tertiary-bg);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--brand-gradient);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
    transition: var(--transition-normal);
}

.footer-section a:hover {
    color: var(--brand-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition-normal);
        border-top: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-visual {
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .floating-card {
        padding: 1rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animation utilities */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
*:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero-particles,
    .floating-card {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}


/* Dashboard Showcase Styles */
.dashboard-showcase {
    margin-bottom: 5rem;
    position: relative;
}

.dashboard-preview-container {
    /* max-width: 1000px; */
    margin: 0 auto;
    position: relative;
}

.preview-window {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8); */
    /* backdrop-filter: blur(20px) saturate(180%); */
    transition: var(--transition-normal);
    height: 600px;
}

.preview-window:hover {
    transform: translateY(-5px);
    box-shadow: 
        var(--brand-glow),
        0 30px 80px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.window-header {
    background: linear-gradient(135deg, var(--tertiary-bg) 0%, var(--secondary-bg) 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.control.close {
    background: #ff5f57;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #28ca42;
}

.control:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px currentColor;
}

.window-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.window-content {
    padding: 0;
    background: var(--primary-bg);
}

.dashboard-scroll-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

/* Custom scrollbar styling */
.dashboard-scroll-container::-webkit-scrollbar {
    height: 12px;
}

.dashboard-scroll-container::-webkit-scrollbar-track {
    background: var(--tertiary-bg);
    border-radius: 6px;
    margin: 0 1rem;
}

.dashboard-scroll-container::-webkit-scrollbar-thumb {
    background: var(--brand-gradient);
    border-radius: 6px;
    border: 2px solid var(--tertiary-bg);
    transition: var(--transition-normal);
}

.dashboard-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--brand-gradient-alt);
    box-shadow: var(--brand-glow);
}

/* Firefox scrollbar */
.dashboard-scroll-container {
    scrollbar-width: auto;
    scrollbar-color: var(--brand-primary) var(--tertiary-bg);
}

.dashboard-images {
    display: flex;
    gap: 2rem;
    min-width: max-content;
    padding-top: 1rem;
}

.dashboard-image-item {
    flex-shrink: 0;
    /* width: 400px; */
    height: 470px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    cursor: pointer;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
}

.dashboard-image-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        var(--brand-glow),
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(14, 165, 233, 0.1);
    border-color: var(--brand-primary);
}

.dashboard-image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-gradient);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
    border-radius: 15px;
}

.dashboard-image-item:hover::before {
    opacity: 0.1;
}

.dashboard-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
    border-radius: 15px;
}

.dashboard-image-item:hover img {
    transform: scale(1.05);
}

/* Add a subtle animation to the scroll container */
.dashboard-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--secondary-bg));
    pointer-events: none;
    opacity: 0.8;
}

.dashboard-scroll-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(270deg, transparent, var(--secondary-bg));
    pointer-events: none;
    opacity: 0.8;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-image-item {
        width: 300px;
        height: 225px;
    }
    
    .dashboard-images {
        gap: 1.5rem;
    }
    
    .dashboard-scroll-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dashboard-image-item {
        width: 250px;
        height: 188px;
    }
    
    .dashboard-images {
        gap: 1rem;
    }
    
    .dashboard-scroll-container {
        padding: 1rem;
    }
}

