* {
            font-family: 'Inter', sans-serif;
        }

        .smooth-scroll {
            scroll-behavior: smooth;
        }

        /* Navigation Styles */
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #1e40af;
            transition: width 0.3s ease;
        }

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

        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            min-width: 220px;
            z-index: 100;
            margin-top: 12px;
            border: 1px solid #f1f5f9;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .dropdown.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }




        
        .page-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 50%);
        }

        
         /* Animated Breadcrumb Style */
        .breadcrumb-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 16px 24px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 4px 12px;
            border-radius: 6px;
        }

        .breadcrumb-item a:hover {
            color: #3b82f6;
            background: rgba(59, 130, 246, 0.1);
            transform: translateX(-2px);
        }

        .breadcrumb-separator {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.75rem;
        }

        .breadcrumb-current {
            color: white;
            font-weight: 600;
            padding: 4px 12px;
            background: rgba(59, 130, 246, 0.2);
            border-radius: 6px;
        }