        :root {
            --primary: #0056b3;
            --primary-light: #3a7fc4;
            --secondary: #003366;
            --accent: #000b55;
            --accent-light: #2a2a72;
            --light: #f8f9fa;
            --lighter: #f0f4f8;
            --dark: #212529;
            --darker: #1a1e21;
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
            --info: #17a2b8;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --gradient-primary: linear-gradient(135deg, #0056b3, #3a7fc4);
            --gradient-secondary: linear-gradient(135deg, #003366, #0056b3);
            --gradient-accent: linear-gradient(135deg, #000b55, #2a2a72);
            --gradient-client: linear-gradient(135deg, #4285f4, #34a853);
            --gradient-partner: linear-gradient(135deg, #ea4335, #fbbc04);
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
            position: relative;
        }

        /* Typography */
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--darker);
        }

        h1 {
            font-size: 3.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 8s ease infinite;
            background-size: 200% 200%;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            animation: underlineGrow 0.5s ease-out forwards;
        }

        p {
            margin-bottom: 1.5rem;
            color: #333;
            font-size: 1.05rem;
        }

        /* Enhanced Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-sm);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        header.scrolled {
            padding: 0.5rem 5%;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-md);
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            letter-spacing: -0.5px;
        }

        .logo i {
            margin-right: 10px;
            color: var(--accent);
            animation: pulse 2s infinite;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            z-index: 1001;
        }

        /* Enhanced Navigation */
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
            transition: var(--transition);
        }

        nav ul li {
            margin-left: 1.8rem;
            position: relative;
        }

        nav ul li a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            padding: 0.5rem 0;
            font-size: 1.05rem;
            position: relative;
            cursor: pointer;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        nav ul li a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .login-btn, .register-btn {
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .login-btn {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-sm);
        }

        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .register-btn {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            margin-left: 0.5rem;
        }

        .register-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* Page System - Hide all pages by default */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .page.active {
            display: block;
        }

        /* Enhanced Hero Section with Professional Effects */
        .hero {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 6rem 5% 4rem;
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(4, 235, 200, 0.9), rgba(1, 19, 139, 0.7)),
                        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="10" r="10" fill="url(%23a)"><animateTransform attributeName="transform" dur="10s" type="translate" values="0 0;80 0;0 0" repeatCount="indefinite"/></circle></svg>') repeat;
            animation: heroFloat 20s ease-in-out infinite;
            pointer-events: none;
        }

        .hero-left {
            flex: 1;
            max-width: 55%;
            padding-right: 2rem;
            z-index: 2;
            position: relative;
        }

        .hero-left h1 {
            color: white;
            background: none;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-left p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        /* About Hero */
        .about-hero {
            background: linear-gradient(135deg, rgba(0, 86, 179, 0.9), rgba(58, 127, 196, 0.8)),
                        url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?auto=format&fit=crop&w=1926&q=80') no-repeat center center/cover;
        }

        /* Services Hero */
        .services-hero {
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(42, 42, 114, 0.8)),
                        url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1926&q=80') no-repeat center center/cover;
        }

        /* Blog Hero */
        .blog-hero {
            background: linear-gradient(135deg, rgba(23, 162, 184, 0.9), rgba(40, 167, 69, 0.8)),
                        
                        url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
        }

        /* Reviews Hero */
        .reviews-hero {
            background: linear-gradient(135deg, rgba(0, 54, 92, 0.911), rgba(164, 7, 255, 0.73)),
                        url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1926&q=80') no-repeat center center/cover;
        }

        /* Contact Hero */
        .contact-hero {
            background: linear-gradient(135deg, rgba(108, 117, 125, 0.9), rgba(52, 58, 64, 0.8)),
                        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1926&q=80') no-repeat center center/cover;
        }

        /* Client Dashboard Hero - Enhanced Colors */
        .client-dashboard-hero {
            background: linear-gradient(135deg, rgba(66, 133, 244, 0.95), rgba(52, 168, 83, 0.85)),
                        url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?auto=format&fit=crop&w=1926&q=80') no-repeat center center/cover;
        }

        .client-dashboard-hero .hero-left h1 {
            background: linear-gradient(135deg, #ffffff, #e3f2fd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .client-dashboard-hero .hero-left p {
            color: #ffffff;
            font-weight: 600;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .client-dashboard-hero .hero-left ul li {
            color: #ffffff;
            font-weight: 500;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .client-dashboard-hero .hero-left h3 {
            color: #ffffff;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Partner Dashboard Hero - Enhanced Colors */
        .partner-dashboard-hero {
            background: linear-gradient(135deg, rgba(0, 54, 92, 0.911), rgba(30, 5, 45, 0.73)),
                        url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?auto=format&fit=crop&w=1200&q=80%27') no-repeat center center/cover;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .partner-dashboard-hero .hero-left h1 {
            background: linear-gradient(135deg, #ffffff, #fff3e0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .partner-dashboard-hero .hero-left p {
            color: #ffffff;
            font-weight: 600;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .partner-dashboard-hero .hero-left ul li {
            color: #ffffff;
            font-weight: 500;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .partner-dashboard-hero .hero-left h3 {
            color: #ffffff;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .partner-dashboard-hero .hero-left ul li strong {
            color: #fff9c4;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        }

        /* COMPACT FORM STYLES - Reduced height and better spacing */
        .hero-form {
            flex: 1;
            max-width: 380px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: var(--shadow-lg);
            color: var(--dark);
            z-index: 2;
            position: relative;
            backdrop-filter: blur(10px);
            animation: slideInRight 1s ease-out 0.6s both;
            max-height: 85vh;
            overflow-y: auto;
        }

        .hero-form h2 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .hero-form p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .hero-form .form-group {
            margin-bottom: 0.8rem;
        }

        .hero-form .form-group label {
            font-size: 0.85rem;
            margin-bottom: 0.3rem;
        }

        .hero-form .form-control {
            padding: 0.6rem;
            font-size: 0.9rem;
        }

        .hero-form .btn {
            padding: 0.7rem 1.5rem;
            font-size: 0.9rem;
        }

        .hero-form .resume-upload {
            margin-top: 0.5rem;
            padding: 0.8rem;
        }

        /* Enhanced Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            gap: 0.5rem;
            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: var(--transition);
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }

        /* Google Sign-In Button Styles */
        .google-signin-btn {
            background: #ffffff;
            color: #757575;
            border: 1px solid #dadce0;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
            margin-bottom: 1rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .google-signin-btn:hover {
            background: #f8f9fa;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .google-signin-btn img {
            width: 18px;
            height: 18px;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 1rem 0;
            color: #666;
            font-size: 0.85rem;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #ddd;
        }

        .divider span {
            padding: 0 1rem;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 5%;
        }

        /* Enhanced Services Section */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }

        .service-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 3rem 2rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            min-height: 400px;
            animation: fadeInUp 0.6s ease-out both;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-lg);
            color: white;
        }

        .service-card:hover::before {
            opacity: 0.9;
        }

        .service-card i {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .service-card:hover i {
            color: white;
            transform: scale(1.2) rotate(10deg);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .service-card:hover h3 {
            color: white;
        }

        .service-card p {
            color: #666;
            transition: var(--transition);
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Enhanced Dashboard Styles with AI Background Effects */
        .dashboard {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            animation: fadeIn 0.5s ease-out;
            position: relative;
            overflow: hidden;
        }

        /* AI BACKGROUND EFFECTS FOR ALL DASHBOARDS */
        .dashboard::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(0, 86, 179, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(42, 42, 114, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(58, 127, 196, 0.03) 0%, transparent 50%);
            animation: aiBackgroundFloat 15s ease-in-out infinite;
            z-index: -2;
            pointer-events: none;
        }

        .dashboard::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="glow"><feGaussianBlur stdDeviation="3" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><circle cx="20" cy="30" r="2" fill="rgba(0,86,179,0.1)" filter="url(%23glow)"><animate attributeName="cy" values="30;70;30" dur="8s" repeatCount="indefinite"/></circle><circle cx="80" cy="70" r="1.5" fill="rgba(42,42,114,0.1)" filter="url(%23glow)"><animate attributeName="cx" values="80;20;80" dur="12s" repeatCount="indefinite"/></circle><circle cx="50" cy="50" r="1" fill="rgba(58,127,196,0.1)" filter="url(%23glow)"><animate attributeName="r" values="1;3;1" dur="6s" repeatCount="indefinite"/></circle></svg>') repeat;
            animation: aiParticles 20s linear infinite;
            z-index: -1;
            pointer-events: none;
            opacity: 0.6;
        }

        .dashboard.active {
            display: block;
        }

        .dashboard-header {
            background: var(--gradient-primary);
            color: white;
            padding: 3rem 2rem;
            border-radius: var(--radius-lg);
            margin-bottom: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .dashboard-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 100%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(15deg);
            transition: var(--transition);
        }

        .dashboard-header:hover::before {
            right: -10%;
        }

        .dashboard-header h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .dashboard-header p {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            margin-bottom: 0;
            font-size: 1.1rem;
        }

        /* ENHANCED DASHBOARD NAVIGATION - REDUCED HEIGHT & COMPACT DESIGN */
        .dashboard-nav {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-lg);
            padding: 1rem;
            box-shadow: var(--shadow-sm);
            margin-bottom: 2rem;
            overflow-x: auto;
            backdrop-filter: blur(10px);
            z-index: 1;
            position: relative;
        }

        .dashboard-nav ul {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 0;
            padding: 0;
        }

        .dashboard-nav ul li {
            flex: 1;
            min-width: 120px;
        }

        .dashboard-nav ul li a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            padding: 0.8rem 1rem;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 0.3rem;
            border: 2px solid transparent;
            background: var(--lighter);
            font-size: 0.85rem;
            text-align: center;
            min-height: 60px;
            position: relative;
            overflow: hidden;
        }

        .dashboard-nav ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.1), transparent);
            transition: var(--transition);
        }

        .dashboard-nav ul li a:hover::before {
            left: 100%;
        }

        .dashboard-nav ul li a:hover {
            background: rgba(0, 86, 179, 0.1);
            color: var(--primary);
            border-color: rgba(0, 86, 179, 0.3);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .dashboard-nav ul li a.active {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--primary);
        }

        .dashboard-nav ul li a i {
            font-size: 1.2rem;
            margin-bottom: 0.1rem;
        }

        /* Enhanced Dashboard Cards with AI Effects */
        .dashboard-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            margin-bottom: 2rem;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            z-index: 1;
        }

        .dashboard-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
        }

        .dashboard-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 86, 179, 0.02) 0%, transparent 70%);
            animation: cardGlow 8s ease-in-out infinite;
            pointer-events: none;
        }

        .dashboard-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            background: rgba(255, 255, 255, 0.98);
        }

        .dashboard-card h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #eee;
            z-index: 1;
            position: relative;
        }

        /* Dashboard Content Sections */
        .dashboard-content, .admin-content-section {
            display: none;
            position: relative;
            z-index: 1;
        }

        .dashboard-content.active, .admin-content-section.active {
            display: block;
            animation: fadeIn 0.3s ease-out;
        }

        /* Enhanced Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: var(--radius-md);
            font-size: 1rem;
            transition: var(--transition);
            background: var(--lighter);
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
            background: white;
            transform: translateY(-2px);
        }

        /* Enhanced Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease-out;
            backdrop-filter: blur(5px);
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: var(--radius-lg);
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 3rem;
            position: relative;
            animation: slideUp 0.4s ease-out;
            box-shadow: var(--shadow-lg);
        }

        .close-modal {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 2rem;
            color: #666;
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--lighter);
        }

        .close-modal:hover {
            color: var(--danger);
            background: rgba(220, 53, 69, 0.1);
            transform: scale(1.1);
        }

        /* Enhanced Order and Job Items */
        .order-item, .job-item {
            background: white;
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            margin-bottom: 1.5rem;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
            position: relative;
            overflow: hidden;
        }

        .order-item::before, .job-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(0,86,179,0.1), transparent);
            transform: translate(30px, -30px);
        }

        .order-item:hover, .job-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-left-color: var(--accent);
        }

        /* Enhanced Status Badges */
        .status-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            gap: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-pending {
            background: linear-gradient(135deg, #fff3cd, #ffeaa7);
            color: #856404;
        }

        .status-inprogress {
            background: linear-gradient(135deg, #cce5ff, #74b9ff);
            color: #004085;
        }

        .status-completed {
            background: linear-gradient(135deg, #d4edda, #55a3ff);
            color: #155724;
        }

        /* PROFESSIONAL AVATAR CHATBOT STYLES */
        .chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 3000;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .chatbot-toggle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient-primary);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .chatbot-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
        }

        .chatbot-toggle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
            animation: pulse 2s infinite;
        }

        .chatbot-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><linearGradient id="skin" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23f4c2a1"/><stop offset="100%" style="stop-color:%23e8a682"/></linearGradient></defs><circle cx="50" cy="35" r="15" fill="url(%23skin)"/><path d="M35 45 Q50 35 65 45 L65 65 Q50 75 35 65 Z" fill="url(%23skin)"/><circle cx="45" cy="32" r="2" fill="%23333"/><circle cx="55" cy="32" r="2" fill="%23333"/><path d="M47 38 Q50 40 53 38" stroke="%23333" stroke-width="1.5" fill="none"/><rect x="40" y="50" width="20" height="8" rx="2" fill="%230056b3"/><text x="50" y="90" text-anchor="middle" fill="%230056b3" font-size="8" font-weight="bold">AI</text></svg>');
            background-size: cover;
            border: 3px solid white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .chatbot-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 380px;
            height: 550px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            display: none;
            flex-direction: column;
            overflow: hidden;
            animation: slideUp 0.3s ease-out;
        }

        .chatbot-window.active {
            display: flex;
        }

        .chatbot-header {
            background: var(--gradient-primary);
            color: white;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .chatbot-header .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><linearGradient id="skin" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23f4c2a1"/><stop offset="100%" style="stop-color:%23e8a682"/></linearGradient></defs><circle cx="50" cy="35" r="15" fill="url(%23skin)"/><path d="M35 45 Q50 35 65 45 L65 65 Q50 75 35 65 Z" fill="url(%23skin)"/><circle cx="45" cy="32" r="2" fill="%23333"/><circle cx="55" cy="32" r="2" fill="%23333"/><path d="M47 38 Q50 40 53 38" stroke="%23333" stroke-width="1.5" fill="none"/><rect x="40" y="50" width="20" height="8" rx="2" fill="%230056b3"/></svg>');
            background-size: cover;
            border: 2px solid white;
        }

        .chatbot-header .info h4 {
            margin: 0;
            font-size: 1.1rem;
        }

        .chatbot-header .info p {
            margin: 0;
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .chatbot-messages {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            background-attachment: fixed;
        }

        .chatbot-message {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            animation: messageSlideIn 0.3s ease-out;
        }

        .chatbot-message.user {
            flex-direction: row-reverse;
        }

        .chatbot-message .avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--primary);
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><linearGradient id="skin" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23f4c2a1"/><stop offset="100%" style="stop-color:%23e8a682"/></linearGradient></defs><circle cx="50" cy="35" r="15" fill="url(%23skin)"/><path d="M35 45 Q50 35 65 45 L65 65 Q50 75 35 65 Z" fill="url(%23skin)"/><circle cx="45" cy="32" r="2" fill="%23333"/><circle cx="55" cy="32" r="2" fill="%23333"/><path d="M47 38 Q50 40 53 38" stroke="%23333" stroke-width="1.5" fill="none"/></svg>');
            background-size: cover;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            flex-shrink: 0;
            border: 2px solid white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .chatbot-message.user .avatar {
            background: var(--success);
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%2328a745"/><text x="50" y="60" text-anchor="middle" fill="white" font-size="30" font-weight="bold">U</text></svg>');
        }

        .chatbot-message .content {
            background: white;
            padding: 1rem;
            border-radius: 15px;
            max-width: 80%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            font-size: 0.9rem;
            line-height: 1.5;
            position: relative;
        }

        .chatbot-message.user .content {
            background: var(--primary);
            color: white;
        }

        .chatbot-input {
            padding: 1rem;
            border-top: 1px solid #eee;
            display: flex;
            gap: 0.5rem;
            background: white;
        }

        .chatbot-input input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 20px;
            outline: none;
            font-size: 0.9rem;
        }

        .chatbot-input input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
        }

        .voice-controls {
            display: flex;
            gap: 0.5rem;
        }

        .voice-btn, .chatbot-send {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .voice-btn:hover, .chatbot-send:hover {
            background: var(--accent);
            transform: scale(1.1);
        }

        .voice-btn.listening {
            background: var(--danger);
            animation: pulse 1s infinite;
        }

        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 1rem;
            background: white;
            border-radius: 15px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            animation: typing 1.4s infinite ease-in-out;
        }

        .typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        /* Mobile Responsive Enhancements */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                box-shadow: var(--shadow-lg);
                transition: var(--transition);
                z-index: 999;
            }

            nav ul.active {
                left: 0;
            }

            nav ul li {
                margin: 0.5rem 0;
                width: 100%;
            }

            nav ul li a {
                display: block;
                padding: 1rem;
                border-radius: var(--radius-md);
                background: var(--lighter);
                text-align: center;
            }

            .hero {
                flex-direction: column;
                padding: 6rem 2rem 4rem;
                text-align: center;
            }

            .hero-left,
            .hero-form {
                max-width: 100%;
                padding: 0;
                margin-bottom: 2rem;
            }

            .hero-form {
                max-width: 400px;
                margin: 0 auto;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .dashboard-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }

            .dashboard-nav ul li {
                flex: none;
                min-width: auto;
            }

            .dashboard-nav ul li a {
                flex-direction: row;
                text-align: left;
                min-height: 50px;
            }

            .container {
                padding: 3rem 1rem;
            }

            .services {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .chatbot-window {
                width: calc(100vw - 40px);
                height: 400px;
                right: -10px;
            }
        }

        /* Enhanced Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes heroFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes underlineGrow {
            from { width: 0; }
            to { width: 60px; }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes typing {
            0%, 60%, 100% {
                transform: translateY(0);
                opacity: 0.5;
            }
            30% {
                transform: translateY(-10px);
                opacity: 1;
            }
        }

        @keyframes messageSlideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes aiBackgroundFloat {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
                filter: hue-rotate(0deg);
            }
            50% { 
                transform: translateY(-10px) rotate(5deg); 
                filter: hue-rotate(10deg);
            }
        }

        @keyframes aiParticles {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-100px); }
        }

        @keyframes cardGlow {
            0%, 100% { 
                opacity: 0.02; 
                transform: rotate(0deg) scale(1);
            }
            50% { 
                opacity: 0.05; 
                transform: rotate(180deg) scale(1.1);
            }
        }

        /* Map Integration Styles */
        .map-container {
            height: 300px;
            background: #f8f9fa;
            border-radius: var(--radius-md);
            margin: 1rem 0;
            position: relative;
            overflow: hidden;
            border: 2px solid #e0e0e0;
        }

        .map-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
            color: var(--dark);
            font-weight: 600;
            flex-direction: column;
            gap: 1rem;
        }

        .map-placeholder i {
            font-size: 3rem;
            color: var(--primary);
        }

        .view-map-btn {
            background: var(--gradient-primary);
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: var(--transition);
            margin-top: 0.5rem;
        }

        .view-map-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        /* Resume Upload Styles - INCREASED TO 200KB */
        .resume-upload {
            margin-top: 1rem;
            padding: 1rem;
            border: 2px dashed var(--primary);
            border-radius: var(--radius-md);
            text-align: center;
            background: rgba(0, 86, 179, 0.05);
        }

        .resume-upload input[type="file"] {
            margin: 1rem 0;
            padding: 0.5rem;
            border: 1px solid #ddd;
            border-radius: var(--radius-sm);
            width: 100%;
        }

        /* Enhanced Footer */
        footer {
            background: var(--gradient-secondary);
            color: white;
            padding: 4rem 5% 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-light);
            border-radius: 2px;
        }

        .footer-column p, .footer-column ul li a {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--accent-light);
            transform: translateY(-3px) scale(1.1);
        }

        /* UPDATED COPYRIGHT STYLES - WHITE COLOR */
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: white !important;
            font-size: 0.95rem;
        }

        .copyright p {
            color: white !important;
            margin: 0;
        }

        /* FIXED Enhanced Reviews Section - PERFECTLY CENTERED */
        #reviews {
            background: linear-gradient(120deg, #e0f7fa 0%, #f8fafc 100%);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            margin: 4rem 0;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
            text-align: center;
            width: 100%;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        #reviews::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 8rem;
            color: rgba(0, 86, 179, 0.1);
            font-family: serif;
            pointer-events: none;
        }

        #reviews h2 {
            text-align: center;
            margin-bottom: 3rem;
            width: 100%;
        }

        #reviews h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem auto 0;
            justify-items: center;
            max-width: 1200px;
            width: 100%;
        }

        .review-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            cursor: pointer;
            max-width: 350px;
            width: 100%;
            margin: 0 auto;
        }

        .review-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .review-photo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary);
            margin: 0 auto 1rem;
            transition: var(--transition);
            display: block;
        }

        .review-card:hover .review-photo {
            transform: scale(1.1);
            border-color: var(--accent);
        }

        .reviewer-name {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .reviewer-role {
            color: #666;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .review-text {
            color: var(--dark);
            font-style: italic;
            line-height: 1.6;
        }

        /* Enhanced About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 3rem 0;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            text-align: center;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .stat-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-weight: 600;
        }

        /* Invoice Management */
        .invoice-preview {
            background: white;
            padding: 2rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            margin-bottom: 2rem;
        }

        .invoice-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #eee;
        }

        .invoice-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }

        .invoice-table th,
        .invoice-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .invoice-table th {
            background: var(--lighter);
            font-weight: 600;
            color: var(--primary);
        }

        /* Success Messages */
        .success-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            z-index: 3000;
            text-align: center;
            min-width: 350px;
            animation: popupSlideIn 0.4s ease-out;
        }

        .success-popup .success-icon {
            font-size: 4rem;
            color: var(--success);
            margin-bottom: 1rem;
            animation: pulse 1s infinite;
        }

        /* Enhanced Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            #reviews {
                padding: 3rem 1.5rem;
                margin: 3rem 0;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 4rem 1rem 3rem;
            }
            
            .container {
                padding: 2rem 1rem;
            }
            
            .modal-content {
                padding: 1.5rem;
                margin: 1rem;
            }
            
            .dashboard-header {
                padding: 2rem 1rem;
                text-align: center;
            }
            
            .dashboard-nav ul {
                flex-direction: column;
            }

            .chatbot-window {
                width: calc(100vw - 40px);
                height: 400px;
                right: -10px;
            }

            #reviews {
                padding: 2rem 1rem;
                margin: 2rem 0;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                max-width: 100%;
                gap: 1.5rem;
            }
        }

        /* Additional Professional Touches */
        .loading-spinner {
            border: 3px solid #f3f3f3;
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            display: inline-block;
            margin-right: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes popupSlideIn {
            from {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        /* Calendar Styles */
        .calendar-container {
            background: white;
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .calendar-nav {
            background: var(--gradient-primary);
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .calendar-nav:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background: #ddd;
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .calendar-day {
            background: white;
            padding: 1rem;
            min-height: 100px;
            transition: var(--transition);
        }

        .calendar-day:hover {
            background: var(--lighter);
        }

        .calendar-day-header {
            background: var(--primary);
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
        }

        .calendar-event {
            background: var(--accent);
            color: white;
            padding: 0.3rem;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-bottom: 0.3rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .calendar-event:hover {
            background: var(--primary);
            transform: scale(1.05);
        }

        /* Role-specific form styles */
        .role-form-container {
            transition: var(--transition);
        }

        .partner-application-form {
            display: none;
        }

        .partner-application-form.active {
            display: block;
            animation: fadeIn 0.3s ease-out;
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .blog-card {
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-date {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .blog-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .blog-excerpt {
            color: #555;
            margin-bottom: 1rem;
        }

        /* Contact Section Styles */
        .contact-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: var(--radius-lg);
            padding: 4rem 2rem;
            margin: 3rem 0;
            box-shadow: var(--shadow-md);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
        }

        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: var(--lighter);
            border-radius: var(--radius-md);
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-sm);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary);
            width: 30px;
            text-align: center;
        }

        .contact-item div h4 {
            margin: 0 0 0.5rem 0;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .contact-item div p {
            margin: 0;
            color: #666;
            font-size: 0.95rem;
        }

        .ai-graph-container {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }

        .ai-graph-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .ai-graph-container h3 {
            color: var(--primary);
            margin-bottom: 2rem;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .ai-graph {
            height: 300px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: var(--radius-md);
            position: relative;
            overflow: hidden;
            border: 2px solid #e0e0e0;
        }

        .graph-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1rem;
        }

        .graph-bars {
            display: flex;
            align-items: end;
            gap: 1rem;
            height: 150px;
        }

        .graph-bar {
            width: 30px;
            background: var(--gradient-primary);
            border-radius: 4px 4px 0 0;
            animation: growBar 2s ease-out;
            position: relative;
        }

        .graph-bar:nth-child(1) { height: 60%; animation-delay: 0.2s; }
        .graph-bar:nth-child(2) { height: 80%; animation-delay: 0.4s; }
        .graph-bar:nth-child(3) { height: 100%; animation-delay: 0.6s; }
        .graph-bar:nth-child(4) { height: 70%; animation-delay: 0.8s; }
        .graph-bar:nth-child(5) { height: 90%; animation-delay: 1s; }

        @keyframes growBar {
            from { height: 0; }
            to { height: inherit; }
        }

        .graph-label {
            color: var(--primary);
            font-weight: 600;
            margin-top: 1rem;
            text-align: center;
        }

        .ai-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            animation: float 3s ease-in-out infinite;
        }

        .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
        .particle:nth-child(3) { top: 40%; left: 30%; animation-delay: 2s; }
        .particle:nth-child(4) { top: 80%; left: 60%; animation-delay: 0.5s; }
        .particle:nth-child(5) { top: 10%; left: 70%; animation-delay: 1.5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
            50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
        }

        /* Blog Modal Styles */
        .blog-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease-out;
            backdrop-filter: blur(5px);
        }

        .blog-modal.active {
            display: flex;
        }

        .blog-modal-content {
            background: white;
            border-radius: var(--radius-lg);
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 3rem;
            position: relative;
            animation: slideUp 0.4s ease-out;
            box-shadow: var(--shadow-lg);
        }

        .blog-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #eee;
        }

        .blog-modal-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: var(--radius-md);
            margin-bottom: 2rem;
        }

        .blog-modal-content h2 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .blog-modal-meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            color: #666;
            font-size: 0.9rem;
        }

        .blog-modal-text {
            line-height: 1.8;
            color: var(--dark);
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .contact-info, .ai-graph-container {
                padding: 1.5rem;
            }
        }
        