﻿@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary Colors - Emerald Green (Reference Match) */
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #6ee7b7;
    /* Secondary Colors - Deep Navy */
    --secondary: #0f172a;
    --secondary-dark: #020617;
    --secondary-light: #334155;
    /* Accent Colors - Teal */
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --accent-light: #67e8f9;
    /* Success - Green */
    --success: #10b981;
    --success-dark: #059669;
    --success-light: #34d399;
    /* Warning - Orange */
    --warning: #f59e0b;
    --warning-dark: #d97706;
    --warning-light: #fbbf24;
    /* Danger - Red */
    --danger: #ef4444;
    --danger-dark: #dc2626;
    --danger-light: #f87171;
    /* Info - Blue */
    --info: #3b82f6;
    --info-dark: #2563eb;
    --info-light: #60a5fa;
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;
    /* Gradient Backgrounds */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-cool: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    /* Border */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Colored Shadows */
    --shadow-primary: 0 10px 30px -5px rgba(16, 185, 129, 0.4);
    --shadow-secondary: 0 10px 30px -5px rgba(15, 23, 42, 0.3);
    --shadow-success: 0 10px 30px -5px rgba(16, 185, 129, 0.3);
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

    a:hover {
        color: var(--primary-dark);
    }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }

/* Navigation */
.navbar {
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

    .navbar.shadow-sm {
        background: #ffffff;
        box-shadow: var(--shadow-sm);
        padding: 1rem 0;
    }

.brand-logo {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

    .nav-link:hover {
        color: var(--primary);
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: var(--border-radius-pill);
    /* Pill Shape */
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

    .btn::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;
    }

    .btn:hover::before {
        left: 100%;
    }

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    position: relative;
    z-index: 1;
}

    .btn-outline-primary:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 20s ease-in-out infinite;
        z-index: 0;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 15s ease-in-out infinite reverse;
        z-index: 0;
    }

.hero-content {
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.dashboard-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

    .dashboard-preview img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Stats Section */
.stats-section {
    padding: 70px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.stat-item {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.feature-card {
    padding: 2.5rem;
    background: var(--bg-white);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: var(--border-radius);
        padding: 2px;
        background: var(--gradient-primary);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: var(--transition);
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-2xl);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

    .feature-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: rotate 4s linear infinite;
    }

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.feature-icon i {
    font-size: 36px;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
}

.solution-tabs {
    margin-bottom: 3rem;
}

    .solution-tabs .nav-link {
        padding: 1rem 2rem;
        border-radius: 50px;
        border: 2px solid var(--border-color);
        color: var(--text-secondary);
        font-weight: 600;
        margin: 0 0.5rem 0.5rem;
        background: var(--bg-white);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

        .solution-tabs .nav-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--gradient-primary);
            transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .solution-tabs .nav-link:hover::before,
        .solution-tabs .nav-link.active::before {
            width: 120%;
            height: 300%;
            top: 50%;
            left: 50%;
        }

        .solution-tabs .nav-link:hover {
            border-color: transparent;
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-primary);
        }

        .solution-tabs .nav-link.active {
            border-color: transparent;
            color: white;
            box-shadow: var(--shadow-primary);
        }

.solution-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.solution-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.solution-features {
    list-style: none;
    padding: 0;
}

    .solution-features li {
        padding: 0.75rem 0;
        font-size: 1.05rem;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .solution-features li i {
            font-size: 1.25rem;
        }

.solution-mockup {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

    .solution-mockup img {
        width: 100%;
        border-radius: 10px;
        box-shadow: var(--shadow-lg);
    }

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.custom-accordion .accordion-item {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-white);
    border: none;
    box-shadow: none;
}

    .custom-accordion .accordion-button:not(.collapsed) {
        background: var(--bg-light);
        color: var(--primary);
    }

    .custom-accordion .accordion-button:focus {
        box-shadow: none;
        border: none;
    }

.custom-accordion .accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }

    .gallery-item img {
        width: 100%;
        display: block;
    }

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow-md);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
}

    .carousel-indicators button.active {
        background: var(--primary);
    }

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
        animation: slide 20s linear infinite;
    }

@keyframes slide {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-light {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

    .btn-light:hover {
        background: white;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

    .btn-outline-light:hover {
        background: white;
        color: var(--primary);
        transform: translateY(-3px);
    }

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: var(--text-primary);
    color: white;
}

.footer-brand {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

/* --- Attractive UI Updates --- */

/* View Transitions */
.view-section {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table th {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

.table td {
    padding: 1rem 0.5rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.table tr:last-child td {
    border-bottom: none;
}

.table-hover tbody tr:hover {
    background-color: #f8fafc;
}

/* Status Badges */
.badge {
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.5em 1em;
    letter-spacing: 0.3px;
}

.bg-success-subtle {
    background-color: #d1fae5 !important;
}

.text-success {
    color: #059669 !important;
}

.border-success-subtle {
    border-color: #a7f3d0 !important;
}

.bg-warning-subtle {
    background-color: #fef3c7 !important;
}

.text-warning {
    color: #d97706 !important;
}

.border-warning-subtle {
    border-color: #fde68a !important;
}

.bg-danger-subtle {
    background-color: #fee2e2 !important;
}

.text-danger {
    color: #dc2626 !important;
}

.border-danger-subtle {
    border-color: #fecaca !important;
}

.bg-primary-subtle {
    background-color: #e0e7ff !important;
}

.text-primary {
    color: #4f46e5 !important;
}

.border-primary-subtle {
    border-color: #c7d2fe !important;
}

/* Ghost Buttons */
.btn-ghost-secondary {
    color: var(--text-secondary);
    background: transparent;
    border: none;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

    .btn-ghost-secondary:hover {
        background: var(--bg-gray);
        color: var(--text-primary);
    }

.btn-ghost-primary {
    color: var(--primary);
    background: transparent;
    border: none;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

    .btn-ghost-primary:hover {
        background: rgba(99, 102, 241, 0.1);
    }

.btn-ghost-danger {
    color: var(--danger);
    background: transparent;
    border: none;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

    .btn-ghost-danger:hover {
        background: rgba(239, 68, 68, 0.1);
    }

/* Card Updates */
.card.shadow-sm {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02) !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}



.newsletter-form .form-control {
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

    .newsletter-form .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-form .form-control:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: white;
        color: white;
    }

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Dashboard App Styles */
.app-layout {
    display: flex;
    height: 100vh;
    background: var(--bg-light);
}

.app-sidebar {
    width: 260px;
    background: white;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
}

.sidebar-brand {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1rem;
}

    .sidebar-nav .nav-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 1rem;
        color: var(--text-secondary);
        text-decoration: none;
        border-radius: 10px;
        margin-bottom: 0.5rem;
        transition: var(--transition);
        font-weight: 500;
    }

        .sidebar-nav .nav-link:hover {
            background: var(--bg-light);
            color: var(--primary);
        }

        .sidebar-nav .nav-link.active {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.05));
            color: var(--primary);
            font-weight: 600;
            position: relative;
        }

            .sidebar-nav .nav-link.active::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 4px;
                background: var(--gradient-primary);
                border-radius: 0 4px 4px 0;
            }

        .sidebar-nav .nav-link i {
            font-size: 20px;
        }

.nav-divider {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 1rem 1rem 0.5rem;
    letter-spacing: 0.5px;
}

.app-main {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-header {
    background: white;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-search {
    flex: 1;
    max-width: 500px;
    position: relative;
}

    .header-search i {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
    }

    .header-search input {
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 3rem;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        outline: none;
        transition: var(--transition);
    }

        .header-search input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

    .icon-btn:hover {
        background: var(--bg-light);
    }

    .icon-btn .badge {
        position: absolute;
        top: -5px;
        right: -5px;
        padding: 0.25rem 0.5rem;
        border-radius: 10px;
        font-size: 0.7rem;
    }

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.app-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.content-header {
    margin-bottom: 2rem;
}

    .content-header h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .stat-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        transition: var(--transition);
    }

    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }

    .stat-box.stat-success::before {
        background: linear-gradient(180deg, var(--success), var(--success-light));
    }

    .stat-box.stat-primary::before {
        background: linear-gradient(180deg, var(--primary), var(--primary-light));
    }

    .stat-box.stat-warning::before {
        background: linear-gradient(180deg, var(--warning), var(--warning-light));
    }

    .stat-box.stat-info::before {
        background: linear-gradient(180deg, var(--info), var(--info-light));
    }

    .stat-box .stat-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        flex-shrink: 0;
        position: relative;
    }

.stat-success .stat-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: var(--success);
}

.stat-primary .stat-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
    color: var(--primary);
}

.stat-warning .stat-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    color: var(--warning);
}

.stat-info .stat-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    color: var(--info);
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-trend {
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

    .stat-trend.positive {
        color: var(--success);
    }

    .stat-trend.negative {
        color: var(--danger);
    }

/* Charts */
.charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-card,
.table-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

    .chart-card:hover,
    .table-card:hover {
        box-shadow: var(--shadow-xl);
        transform: translateY(-2px);
    }

.card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(236, 72, 153, 0.03));
}

    .card-header h5 {
        margin: 0;
        font-weight: 700;
        font-size: 1.25rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.card-body {
    padding: 2rem;
}

/* Table */
.table-card {
    margin-top: 2rem;
}

.table {
    margin: 0;
}

    .table thead th {
        background: var(--bg-light);
        color: var(--text-secondary);
        font-weight: 600;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid var(--border-color);
        padding: 1rem;
    }

    .table tbody td {
        padding: 1rem;
        color: var(--text-secondary);
        vertical-align: middle;
    }

.table-hover tbody tr:hover {
    background: var(--bg-light);
}

/* Badge */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

.bg-success {
    background: linear-gradient(135deg, var(--success), var(--success-light)) !important;
    color: white !important;
}

.bg-warning {
    background: linear-gradient(135deg, var(--warning), var(--warning-light)) !important;
    color: white !important;
}

.bg-danger {
    background: linear-gradient(135deg, var(--danger), var(--danger-light)) !important;
    color: white !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    color: white !important;
}

.bg-info {
    background: linear-gradient(135deg, var(--info), var(--info-light)) !important;
    color: white !important;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .solution-tabs .nav-link {
        margin: 0.25rem;
    }

    .app-sidebar {
        transform: translateX(-100%);
    }

    .app-main {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

        .hero-actions .btn {
            width: 100%;
        }

    .stat-number {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .charts-row {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* --- Landing Page Enhancements --- */

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-image {
    position: relative;
    z-index: 1;
}

    .about-image::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        border: 2px solid var(--primary);
        border-radius: var(--border-radius-lg);
        z-index: -1;
        opacity: 0.3;
    }

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.pricing-card {
    transition: var(--transition);
}

    .pricing-card:hover {
        transform: translateY(-10px);
    }

.transform-scale {
    transform: scale(1.05);
    z-index: 2;
}

    .transform-scale:hover {
        transform: scale(1.08) translateY(-5px);
    }

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-form .form-control:focus {
    background: #fff;
    box-shadow: none;
    border: 1px solid var(--primary);
}

.contact-form label {
    color: var(--text-secondary);
}

.opacity-50 {
    opacity: 0.5;
}

/* Section Spacing Utility */
section {
    scroll-margin-top: 80px;
}

/* New additions for About, Security, Careers sections */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* About Section */
.about-image-wrapper img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.experience-badge {
    box-shadow: var(--shadow-2xl);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    z-index: 2;
}

/* Security Section */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.security-section .icon-box-lg {
    box-shadow: var(--shadow-lg);
}

/* Careers Section */
.hover-lift {
    transition: var(--transition);
}

    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl) !important;
    }

.careers-section .card {
    border: 1px solid var(--border-color);
}
